@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

/*
 * Global styles: variables, header, hero, and shared utilities.
 * Section-specific UI lives in dedicated CSS files (e.g. trusted-section.css).
 */
/* ===== CSS Variables ===== */
:root {
  --bg: #171717;
  --bg-grid: rgba(122, 122, 122, 0.38);
  --text: #ffffff;
  --text-muted: #999999;
  --bg-text-opacity: 0.08;
  /* Site-wide type — system UI stack (no webfont requests) */
  --font-system: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  /* Condensed display — loaded via @import above (header logo, stats, marquee, etc.) */
  --font-oswald: 'Oswald', var(--font-system);
  --font-sans: var(--font-system);
  --font-display: var(--font-system);
  --font-brand: var(--font-system);
  --font-hero-watermark: var(--font-oswald);
  --font-utility: var(--font-system);
  --font: var(--font-sans);
  /* Light section */
  --bg-light: #F9F9F9;
  --text-dark: #000000;
  --text-dark-muted: #555555;
  --card-bg: #ffffff;
  --star-color: #ff8a71;
  --accent-green: rgb(91, 240, 158);
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.06);

  /* Ultra-smooth motion (scroll reveals, fades, slides) */
  --ease-smooth-opacity: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-smooth-transform: cubic-bezier(0.22, 1, 0.42, 1);

  /* Scroll animation vars */
  --hero-scale: 1;
  --hero-blur: 0px;
  --hero-dim: 1;
  --hero-lift: 0px;
  --trusted-offset: 140px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Anchor / in-page jumps — smooth, respectful of reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Header ===== */
.header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: none;
  border-bottom: 1px solid var(--bg-grid);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease;
}

/* Sticky bar once user scrolls — solid white + dark labels */
.header.header--scrolled {
  background: #ffffff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.header.header--scrolled .logo,
.header.header--scrolled .nav a {
  color: #050505 !important;
}

.header.header--scrolled .nav a:hover {
  color: rgba(5, 5, 5, 0.55) !important;
}

.header.header--scrolled .header-menu-btn {
  color: #050505 !important;
}

/* Homepage: same solid white sticky bar */
body.page-home .header.header--scrolled {
  background: #ffffff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-oswald);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex: 1;
  margin-left: min(45rem, 35vw);
  min-width: 0;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nav a.nav-emphasis {
  font-weight: 700;
}

.nav a:hover {
  color: var(--text-muted);
}

/* Superscript count next to "Projects" (injected by js/core/nav-project-count.js)
   Default matches dark hero / global --text (white nav). Light-header pages override below. */
.nav a .nav-projects-count {
  display: inline-block;
  font-size: 0.78em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  vertical-align: super;
  line-height: 0;
  margin-left: 0.06em;
  letter-spacing: 0.02em;
  text-transform: none;
}

.header.header--scrolled .nav a .nav-projects-count {
  color: rgba(0, 0, 0, 0.68) !important;
}

/* Light chrome: dark nav labels — use a readable muted count on black */
body.studio-page .nav a .nav-projects-count,
body.projects-page .nav a .nav-projects-count,
body.news-page .nav a .nav-projects-count,
body.news-article-page .nav a .nav-projects-count,
body.reels-page .nav a .nav-projects-count,
body.services-page .nav a .nav-projects-count {
  color: rgba(0, 0, 0, 0.68);
}

/* Light chrome: hamburger uses currentColor — must match dark logo (not body’s white) */
body.studio-page .header-menu-btn,
body.projects-page .header-menu-btn,
body.news-page .header-menu-btn,
body.news-article-page .header-menu-btn,
body.reels-page .header-menu-btn,
body.services-page .header-menu-btn,
body.service-work-page .header-menu-btn {
  color: #050505;
}

body.studio-page .header-menu-btn:focus-visible,
body.projects-page .header-menu-btn:focus-visible,
body.news-page .header-menu-btn:focus-visible,
body.news-article-page .header-menu-btn:focus-visible,
body.reels-page .header-menu-btn:focus-visible,
body.services-page .header-menu-btn:focus-visible,
body.service-work-page .header-menu-btn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 3px;
}

/* Longer label — keep bar balanced */
.nav a.nav-reels {
  letter-spacing: 0.02em;
  font-size: 0.72rem;
}

/* Mobile menu control — shown via responsive-global.css ≤1024px */
.header-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.header-menu-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.header-menu-btn-bars {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  transition:
    background 0.2s ease,
    transform 0.25s ease;
}

.header-menu-btn-bars::before,
.header-menu-btn-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-menu-btn-bars::before {
  top: -7px;
}

.header-menu-btn-bars::after {
  top: 7px;
}

.header--nav-open .header-menu-btn-bars {
  background: transparent;
}

.header--nav-open .header-menu-btn-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.header--nav-open .header-menu-btn-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===== Hero ===== */
/* ===== Hero (Framer imTheo) — see css/sections/hero-section.css ===== */

/* ===== Trusted / Studio Section ===== */
.trusted-section {
  background: var(--bg-light);
  padding: 5rem 2.5rem 5rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.trusted-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.avatar-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: var(--card-bg) !important;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--star-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-testimonial {
  position: relative;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.card-stat .card-body {
  text-align: center;
  margin-bottom: 0;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* ===== Trusted / Studio Section ===== */
.trusted-section {
  background: var(--bg-light);
  padding: 5rem 2.5rem 5rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  cursor: default;
}

.client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.trusted-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.avatar-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: var(--card-bg) !important;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--star-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-testimonial {
  position: relative;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.card-stat .card-body {
  text-align: center;
  margin-bottom: 0;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* ===== Trusted / Studio Section ===== */
.trusted-section {
  background: var(--bg-light);
  padding: 5rem 2.5rem 5rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  cursor: default;
}

.client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.trusted-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.avatar-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: var(--card-bg) !important;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--star-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-testimonial {
  position: relative;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.card-stat .card-body {
  text-align: center;
  margin-bottom: 0;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* ===== Trusted / Studio Section ===== */
.trusted-section {
  background: var(--bg-light);
  padding: 5rem 2.5rem 5rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  cursor: default;
}

.client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.trusted-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.avatar-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: var(--card-bg) !important;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--star-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-testimonial {
  position: relative;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.card-stat .card-body {
  text-align: center;
  margin-bottom: 0;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* ===== Trusted / Studio Section ===== */
.trusted-section {
  background: var(--bg-light);
  padding: 5rem 2.5rem 5rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  cursor: default;
}

.client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.trusted-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.avatar-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: var(--card-bg) !important;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--star-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-testimonial {
  position: relative;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.card-stat .card-body {
  text-align: center;
  margin-bottom: 0;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* ===== Trusted / Studio Section ===== */
.trusted-section {
  background: var(--bg-light);
  padding: 5rem 2.5rem 5rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  cursor: default;
}

.client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.trusted-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.avatar-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: var(--card-bg) !important;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--star-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-testimonial {
  position: relative;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.card-stat .card-body {
  text-align: center;
  margin-bottom: 0;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* ===== Trusted / Studio Section ===== */
.trusted-section {
  background: var(--bg-light);
  padding: 5rem 2.5rem 5rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  cursor: default;
}

.client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

.trusted-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.avatar-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: var(--card-bg) !important;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--star-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-testimonial {
  position: relative;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.card-stat .card-body {
  text-align: center;
  margin-bottom: 0;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* ===== Trusted Section (Light) ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2.5rem 6rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding-bottom: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos .client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.trusted-content h2.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.avatar-row {
  display: flex;
  margin-left: -8px;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  margin-left: -8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: #e5e5e5;
}

.avatar:first-child {
  margin-left: 0;
}

.trusted-by {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.25rem;
}

.stars {
  font-size: 0.9rem;
  color: var(--star-color);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}

.card-testimonial {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-dark-muted);
  flex: 1;
}

.card-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d0d0d0;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-case-study {
  padding: 0;
  overflow: hidden;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.case-study-overlay {
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  margin-top: -80px;
  position: relative;
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .trusted-main {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card-case-study {
    order: -1;
  }
}

/* ===== Trusted Section (Light) ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2.5rem 6rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos .client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.trusted-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.avatar-row {
  display: flex;
  gap: -8px;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #e8e8e8;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.25rem;
}

.stars {
  font-size: 0.9rem;
  color: var(--star-color);
  margin-bottom: 1rem;
}

.trusted-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 480px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card-testimonial .card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.card-case-study {
  padding: 0;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.case-study-overlay {
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 40%);
  margin-top: -120px;
  position: relative;
  padding-top: 80px;
}

.card-case-study .case-study-image {
  display: block;
}

.card-case-study {
  display: flex;
  flex-direction: column;
}

.case-study-overlay {
  margin-top: auto;
  background: #1a1a1a;
  padding: 2rem;
  padding-top: 2rem;
}

.case-study-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
  color: var(--accent-green);
  text-decoration: none;
  font-size: 0.9rem;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }

  .client-logos {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* ===== Trusted Section (Light) ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2.5rem 6rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  opacity: 0.7;
}

.client-active {
  color: var(--text-dark) !important;
  opacity: 1 !important;
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.trusted-content {
  max-width: 520px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.brand-name sup {
  font-size: 0.5em;
  font-weight: 400;
  opacity: 0.7;
}

.avatar-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  margin-left: -8px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--text-dark) !important;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
}

.trusted-by {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--star-color);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card-testimonial {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0, #b0b0b0);
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  min-height: 280px;
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 2rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card-case-study {
  padding: 0;
  min-height: 280px;
}

.case-study-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-height: 280px;
}

.card-case-study {
  position: relative;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: white;
}

.case-study-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
  color: var(--accent-green);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.case-study-link:hover {
  text-decoration: underline;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .trusted-main {
    grid-template-columns: 1fr;
  }

  .section-number {
    font-size: 4rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card-case-study .case-study-overlay {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .trusted-section {
    padding: 3rem 1.5rem 4rem;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
}

/* ===== Trusted Section (Studio) ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2.5rem 5rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.client-logos span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-dark-muted);
}

.client-logos .client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.trusted-content h2,
.trusted-content p,
.trusted-content .stars {
  margin: 0;
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.brand-name .tm {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 400;
  color: var(--text-dark-muted);
}

.avatar-row {
  display: flex;
  gap: -8px;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid var(--bg-light);
}

.avatar:first-child { margin-left: 0; }

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #e8e8e8;
}

.trusted-by {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.25rem;
}

.stars {
  font-size: 1.05rem;
  color: var(--star-color);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}

.card-testimonial {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.card-quote {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  flex-grow: 1;
  margin-bottom: 1rem;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: auto;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9c9c9, #b0b0b0);
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-height: 280px;
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card-case-study {
  padding: 0;
  overflow: hidden;
  min-height: 280px;
}

.case-study-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link svg {
  color: var(--accent-green);
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }

  .client-logos {
    justify-content: flex-start;
  }
}

/* ===== Trusted Section (Studio) ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2.5rem 6rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  gap: 2.5rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  cursor: default;
}

.client-active {
  color: var(--text-dark);
  font-weight: 600;
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-dark);
}

.trusted-content h2,
.trusted-content .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.avatar-row {
  display: flex;
  margin-bottom: 0.75rem;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid var(--bg-light);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  background: var(--text-dark);
  color: var(--card-bg);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.trusted-by {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--star-color);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}

.card-testimonial .card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card-stat .card-body {
  margin-bottom: 0;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
}

.case-study-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  margin-top: -120px;
  position: relative;
}

.case-study-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== Trusted Section (Light) ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2.5rem 6rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  cursor: default;
}

.client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.trusted-content {
  max-width: 580px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.avatar-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  background: var(--text-dark);
  color: var(--bg-light);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.trusted-by {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.25rem;
}

.stars {
  color: var(--star-color);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.card-testimonial {
  overflow: hidden;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0, #c4c4c4);
  flex-shrink: 0;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card-stat .card-body {
  margin-bottom: 0;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
}

.case-study-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  padding: 1.5rem;
  background: var(--card-bg);
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
}

.case-study-link:hover {
  text-decoration: underline;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }

  .client-logos {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* ===== Trusted / Studio Section ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2.5rem 6rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span:hover,
.client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.trusted-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.avatar-row {
  display: flex;
  gap: -8px;
  margin: 0.25rem 0;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  background: var(--text-dark);
  color: var(--bg-light);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stars {
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: var(--star-color);
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}

.card-testimonial {
  overflow: hidden;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 1.25rem;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e5e5;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-stat .card-body {
  margin-bottom: 0;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
}

.case-study-image {
  width: 100%;
  height: 240px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 40%);
  margin-top: -100px;
  position: relative;
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .trusted-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .trusted-section {
    padding: 3rem 1.5rem 4rem;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* ===== Trusted Section (Studio) ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2.5rem 6rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  cursor: default;
}

.client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.trusted-content {
  max-width: 480px;
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.brand-name sup {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--text-dark-muted);
}

.avatar-row {
  display: flex;
  margin-bottom: 0.75rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: var(--bg-light);
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--star-color);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.trusted-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card-testimonial {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
  min-height: 320px;
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 2rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(4rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card-case-study {
  padding: 0;
  min-height: 320px;
}

.case-study-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-height: 320px;
}

.card-case-study .card-body {
  margin-bottom: 0;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.case-study-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
}

.case-study-link:hover {
  text-decoration: underline;
}

.case-study-link svg {
  flex-shrink: 0;
}

.card-case-study {
  position: relative;
}

/* Trusted section responsive */
@media (max-width: 1024px) {
  .trusted-main {
    grid-template-columns: 1fr;
  }

  .section-number {
    font-size: 4rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .trusted-section {
    padding: 4rem 1.5rem 4rem;
  }
}

/* ===== Trusted Section (Studio) ===== */
.trusted-section {
  background: var(--bg-light);
  padding: 5rem 2.5rem 6rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-dark-muted);
}

.client-logos .client-active {
  color: var(--text-dark);
  font-weight: 500;
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.trusted-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.avatar-row {
  display: flex;
  align-items: flex-end;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  background: var(--text-dark) !important;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stars {
  font-size: 1.05rem;
  color: var(--star-color);
  letter-spacing: 0.1em;
}

.trusted-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 580px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.card-testimonial {
  overflow: hidden;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat {
  display: flex;
  flex-direction: column;
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.card-stat .card-body {
  margin-bottom: 0;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
}

.case-study-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
}

.case-study-overlay {
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 40%);
  margin-top: -120px;
  position: relative;
}

.case-study-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--accent-green);
  text-decoration: none;
}

.case-study-link:hover {
  text-decoration: underline;
}

/* Header over light sections: fixed header sits above content — use .header--scrolled on home (JS) for contrast */

@media (max-width: 1024px) {
  .trusted-main {
    grid-template-columns: 1fr;
  }

  .section-number {
    font-size: 4rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .trusted-section {
    padding: 3rem 1.5rem 4rem;
  }
}

/* ===== Trusted Section (Light) ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 4rem 2.5rem 5rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  cursor: default;
}

.client-active {
  color: var(--text-dark) !important;
  font-weight: 600;
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-dark);
}

.trusted-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.avatar-row {
  display: flex;
  gap: -8px;
  margin: 0.25rem 0;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: #e8e8e8 !important;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stars {
  color: var(--star-color);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 480px;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}

.card-testimonial {
  overflow: hidden;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 1.25rem;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d4d4d4;
  flex-shrink: 0;
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card-stat .card-body {
  margin-bottom: 0;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 40%);
  margin-top: -120px;
  position: relative;
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
}

.case-study-link:hover {
  text-decoration: underline;
}

.case-study-link svg {
  flex-shrink: 0;
}

/* Trusted section responsive */
@media (max-width: 1024px) {
  .trusted-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-number {
    font-size: 4rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .trusted-section {
    padding: 3rem 1.5rem 4rem;
  }

  .client-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .case-study-overlay {
    margin-top: -80px;
  }
}

/* ===== Trusted Section (Studio) ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2.5rem 6rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos .client-active {
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.trusted-content {
  max-width: 520px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.avatar-row {
  display: flex;
  gap: -8px;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  margin-left: -8px;
  flex-shrink: 0;
}

.avatar:first-child { margin-left: 0; }

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  background: #e8e8e8;
}

.trusted-by {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  font-size: 1.05rem;
  color: var(--star-color);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.trusted-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.card-testimonial {
  overflow: hidden;
}

.card-quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
}

.card-author strong {
  display: block;
  font-size: 1.05rem;
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.card-case-study {
  padding: 0;
  overflow: hidden;
}

.case-study-image {
  width: 100%;
  height: 240px;
  object-fit: contain;
}

.case-study-overlay {
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  margin-top: -80px;
  position: relative;
}

.case-study-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
}

.case-study-link:hover {
  text-decoration: underline;
}

.case-study-link svg {
  flex-shrink: 0;
}

/* Trusted section responsive */
@media (max-width: 1024px) {
  .trusted-main {
    grid-template-columns: 1fr;
  }

  .section-number {
    font-size: 4rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .trusted-section {
    padding: 3rem 1.5rem 4rem;
  }

  .client-logos {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

/* ===== Trusted Section (Studio) ===== */
.trusted-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5rem 2.5rem 4rem;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark-muted);
}

.client-logos span {
  opacity: 0.7;
}

.client-logos .client-active {
  opacity: 1;
  color: var(--text-dark);
}

.trusted-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.section-number {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-dark);
}

.trusted-content {
  max-width: 480px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.brand-name .tm {
  font-size: 0.65em;
  vertical-align: super;
  font-weight: 400;
  color: var(--text-dark-muted);
}

.avatar-row {
  display: flex;
  margin-bottom: 0.5rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-light);
  margin-left: -8px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.trusted-by {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.stars {
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: var(--star-color);
  margin-bottom: 1rem;
}

.trusted-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card-quote {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.card-body {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-dark-muted);
  margin-bottom: 1.25rem;
}

.card-stat .card-body {
  margin-bottom: 0;
}

.card-author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0, #b0b0b0);
}

.card-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.card-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.stat-arrow {
  color: var(--text-dark-muted);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-case-study {
  padding: 0;
}

.case-study-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.case-study-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.case-study-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
}

.case-study-link:hover {
  text-decoration: underline;
}

.case-study-link svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .trusted-main {
    grid-template-columns: 1fr;
  }
}
