@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;
}

/* Homepage: solid black bar once user scrolls (see scroll-animations.js) */
.header.header--scrolled {
  /* #545454 at lower opacity — lets scroll content read through */
  background: rgba(84, 84, 84, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header.header--scrolled .logo,
.header.header--scrolled .nav a {
  color: #ffffff;
}

.header.header--scrolled .nav a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Homepage: avoid backdrop-filter while scrolling (large compositing cost over long pages + many images) */
body.page-home .header.header--scrolled {
  background: rgba(23, 23, 23, 0.94);
  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/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(255, 255, 255, 0.9);
}

/* 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 {
  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 {
  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 {
  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 ≤768px */
.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 {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: sticky;
  top: 0;
  padding: 6rem 2.5rem 0;
  background-color: #171717;
  z-index: 1;
}

/* Grain texture overlay - subtle animated film grain */
@keyframes grain-drift {
  0%, 100% { background-position: 0 0; }
  25% { background-position: 100px -50px; }
  50% { background-position: -50px 100px; }
  75% { background-position: 100px 50px; }
}

@keyframes grain-opacity {
  0%, 100% { opacity: 0.11; }
  50% { opacity: 0.125; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 100px 100px;
  animation: grain-drift 100s linear infinite, grain-opacity 36s ease-in-out infinite;
}

/* imTHEO — split fade + rise so each can use a silkier curve (single keyframe = linear opacity+move feel) */
@keyframes imtheo-watermark-rise {
  from {
    transform: translate3d(0, var(--imtheo-rise-from, 1rem), 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes imtheo-watermark-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.78;
  }
}

.hero-bg-text {
  --imtheo-rise-from: 1rem;

  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  z-index: 0;
  font-family: var(--font-hero-watermark);
  /* Massive watermark, but cap by viewport width so “imTHEO” isn’t clipped (html/body overflow-x: clip) */
  font-size: min(
    clamp(43rem, 98vw, 98vmin),
    calc((100vw - 6rem) / 2.68)
  );
  font-weight: 400;
  color: #3a3c3d;
  letter-spacing: -0.01em;
  line-height: 1.1;
  /* Rise: long deceleration; fade: slightly slower so type doesn’t “pop” before it settles */
  animation:
    imtheo-watermark-rise 2.35s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    imtheo-watermark-fade 2.65s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  transform: translate3d(0, var(--imtheo-rise-from), 0);
  opacity: 0;
  backface-visibility: hidden;
  padding: 0 4%;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-text {
    animation: none !important;
    opacity: 0.78;
    transform: none;
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to bottom, transparent calc(33.33% - 0.5px), var(--bg-grid) calc(33.33% - 0.5px), var(--bg-grid) calc(33.33% + 0.5px), transparent calc(33.33% + 0.5px)),
    linear-gradient(to bottom, transparent calc(66.66% - 0.5px), var(--bg-grid) calc(66.66% - 0.5px), var(--bg-grid) calc(66.66% + 0.5px), transparent calc(66.66% + 0.5px)),
    linear-gradient(to right, transparent calc(50% - 0.5px), var(--bg-grid) calc(50% - 0.5px), var(--bg-grid) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

@keyframes noise-drift {
  0%, 100% { background-position: 0 0; }
  33% { background-position: 128px -64px; }
  66% { background-position: -64px 128px; }
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image: url("https://framerusercontent.com/images/6mcf62RlDfRfU61Yg5vb2pefpi4.png?width=256&height=256");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: noise-drift 120s linear infinite;
}

/* ===== Hero Content: Image + Text Overlay ===== */
.hero-content {
  position: relative;
  width: 100%;
  max-width: 3000px;
  margin: 0 auto;
  min-height: 92vh;
  height: min(98vh, 1800px);
  z-index: 1;
  flex-shrink: 0;
  transform: translate3d(0, var(--hero-lift), 0) scale(var(--hero-scale));
  transform-origin: center top;
  /* Blur removed from scroll path (see scroll-animations.js) — was very expensive during scroll */
  opacity: var(--hero-dim);
  /* Keep hero on its own compositor layer for smoother scroll-linked updates */
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Section takeover: Studio rises above hero */
#studio.trusted-section {
  position: relative;
  z-index: 2;
  transform: translateY(var(--trusted-offset));
  will-change: transform;
}


.hero-portrait-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 12px;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 80%;
  display: block;
  transform: scale(1.1);
  transform-origin: center bottom;
}

/* Services list - above the heading, close to image */
.hero-services-list {
  position: absolute;
  left: 24%;
  bottom: calc(12% + 13rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

@keyframes service-item-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-services-list li {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: service-item-enter 1.05s var(--ease-smooth-transform, cubic-bezier(0.22, 1, 0.42, 1)) forwards;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

.hero-services-list li:nth-child(1) { animation-delay: 0.12s; }
.hero-services-list li:nth-child(2) { animation-delay: 0.26s; }
.hero-services-list li:nth-child(3) { animation-delay: 0.4s; }
.hero-services-list li:nth-child(4) { animation-delay: 0.54s; }

/* Heading - close to image, overlaps bust chest area */
@keyframes heading-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-heading {
  position: absolute;
  left: 24%;
  bottom: 12%;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-align: left;
  color: #ffffff;
  animation: heading-enter 1.2s var(--ease-smooth-opacity, cubic-bezier(0.33, 1, 0.68, 1)) 0.58s forwards;
  opacity: 0;
  backface-visibility: hidden;
}

.heading-line {
  display: block;
  font-size: 1.08em;
  animation: heading-enter 1.15s var(--ease-smooth-opacity, cubic-bezier(0.33, 1, 0.68, 1)) 0.78s forwards;
  opacity: 0;
  backface-visibility: hidden;
}

/* Description - moved left, next to image - same font as services */
.hero-description {
  position: absolute;
  right: 24%;
  bottom: 12%;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  color: #ffffff;
  max-width: 560px;
  text-align: left;
  animation: heading-enter 1.2s var(--ease-smooth-opacity, cubic-bezier(0.33, 1, 0.68, 1)) 0.95s forwards;
  opacity: 0;
  backface-visibility: hidden;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-content {
    height: min(90vh, 700px);
  }

  .hero-services-list {
    left: 5%;
    top: 24%;
  }

  .hero-heading {
    left: 5%;
    top: 42%;
    bottom: auto;
  }

  .hero-description {
    right: 5%;
    left: 5%;
    max-width: none;
    top: 72%;
    bottom: auto;
    transform: none;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .header-toggle {
    display: none;
  }

  .nav {
    gap: 1rem;
  }

  .nav a {
    font-size: 0.7rem;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
    overflow-x: visible;
  }

  .hero-bg-text {
    color: #45484a;
    padding: 0 2%;
  }

  .bust-wrapper {
    max-width: 280px;
  }
}

/* ===== 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;
  }
}
