/* ============================================
   TECH.UNIT - Design Tokens & Global Styles
   ============================================ */

:root {
  --black: #111212;
  --grey-800: #181919;
  --grey-600: #292929;
  --grey-400: #3E3F3F;
  --grey-200: #9f9f9e;
  --white: #efeeec;
  --blue: #0b66ff;
  --green: #b4ed00;
  --font-primary: 'Satoshi', sans-serif;
  --font-secondary: 'General Sans', sans-serif;
  --font-inter: 'Inter', sans-serif;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

img[src$=".svg"] {
  height: auto;
}

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  outline: none;
}

/* ============================================
   Typography Utilities
   ============================================ */

.section-label {
  max-width: 872px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  text-transform: uppercase;
  color: var(--grey-200);
  text-align: left;
}

.section-title {
  max-width: 872px;
  font-weight: 500;
  font-size: 72px;
  line-height: 76px;
  letter-spacing: -1.44px;
  text-align: left;
  background: linear-gradient(90deg, var(--grey-200) 0%, var(--white) 50%, var(--grey-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Container
   ============================================ */

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 28px;
  width: auto;
  min-width: 100px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 128px;
  padding: 12px 24px;
}

.nav-link {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  color: var(--white);
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-link .count {
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: -0.2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-contact {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 128px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  color: var(--white);
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-contact:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  height: 750px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

/* Base video layer */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Second video layer: plus-lighter blend + blur */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  mix-blend-mode: plus-lighter;
  opacity: 0.32;
  filter: blur(6px);
}

.hero-video-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Frosted vertical stripes overlay ---- */
.hero-stripes {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.64;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: repeating-linear-gradient(90deg,
    rgba(17, 18, 18, 0.64) 0px,
    rgba(17, 18, 18, 0.16) 72px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Gradient fade at bottom of hero — transparent top to #111212 bottom */
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 298px;
  z-index: 2;
  background: linear-gradient(0deg, #111212 0%, rgba(17, 18, 18, 0) 87.8%);
  pointer-events: none;
}

.hero-title {
  font-weight: 500;
  font-size: 96px;
  line-height: 106px;
  letter-spacing: -2.88px;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 0.1em;
  background: linear-gradient(90deg, #9F9F9E 15.69%, #EFEEEC 50.27%, #9F9F9E 84.85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--White, #EFEEEC);
  text-align: center;
  font-family: Satoshi;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 133.333% */
  letter-spacing: -0.18px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  border-radius: 128px;
  padding: 8px 16px 8px 24px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  height: 56px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-cta .arrow {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transform: rotate(180deg) scaleY(-1);
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 60px;
  margin-top: -80px;
  position: relative;
  z-index: 3;
}

.stat-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.44px;
  color: var(--white);
}

.stat-number .accent {
  font-size: 24px;
  color: var(--green);
}

.stat-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.16px;
  color: var(--white);
  text-transform: lowercase;
}

/* ============================================
   Logo Marquee
   ============================================ */

.logo-marquee {
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track img {
  height: 20px;
  width: auto;
  min-width: 80px;
  opacity: 1;
  flex-shrink: 0;
  object-fit: contain;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Description Section
   ============================================ */

.description {
  position: relative;
  padding: 100px 60px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.description-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--grey-400) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.3;
  pointer-events: none;
}

.description-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.description-label {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  text-transform: uppercase;
  color: var(--grey-200);
  flex-shrink: 0;
  width: 200px;
  padding-top: 8px;
}

.description-main {
  flex: 1;
  max-width: 536px;
}

.description-heading {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -0.88px;
  color: var(--white);
  margin-bottom: 24px;
}

.description-heading .highlight-blue {
  color: var(--blue);
}

.description-subtitle {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: var(--white);
  margin-bottom: 40px;
}

.description-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 24px 20px 32px;
  background: var(--black);
  border: 1px solid var(--grey-400);
  border-radius: 128px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}

.description-cta:hover {
  background: var(--grey-800);
  border-color: var(--grey-200);
}

.description-cta .arrow {
  width: 24px;
  height: 24px;
  transform: scaleX(-1);
}

.description-arrow {
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
}

.description-arrow img {
  width: 88px;
  height: 88px;
}

/* ============================================
   Results That Compound
   ============================================ */

.results {
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.results-header {
  text-align: center;
  margin-bottom: 48px;
}

.results-grid {
  display: grid;
  grid-template-columns: 424px 1fr auto;
  gap: 24px;
  align-items: start;
}

.results-info {
  background: var(--grey-800);
  height: 476px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.results-info h3 {
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -0.88px;
  margin-bottom: auto;
}

.results-info-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  color: var(--white);
  margin-top: auto;
}

.results-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tag-blue {
  backdrop-filter: blur(12px);
  background: var(--blue);
  border-radius: 32px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--white);
  white-space: nowrap;
}

.results-card-main {
  border: 1px solid var(--grey-400);
  overflow: hidden;
}

.results-card-image {
  height: 352px;
  overflow: hidden;
  position: relative;
}

.results-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-card-image .color-overlay {
  position: absolute;
  inset: 0;
  background: var(--green);
  mix-blend-mode: color;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.results-card-image .dark-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 256px;
  height: 256px;
  background: rgba(17, 18, 18, 0.16);
  backdrop-filter: blur(10px);
}

.results-card-image .card-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: auto;
}

.results-card-stats {
  background: var(--grey-800);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.results-stat .number {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -0.88px;
  color: var(--white);
}

.results-stat .number .unit {
  font-size: 24px;
  color: var(--green);
}

.results-stat .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: var(--grey-200);
  margin-top: 4px;
}

.results-card-preview {
  width: 440px;
  opacity: 0.4;
}

.results-card-preview .results-card-image {
  height: 289px;
}

.results-card-preview .results-card-image .color-overlay {
  background: var(--blue);
}

.results-card-preview .results-card-stats {
  padding: 20px;
}

.results-card-preview .results-stat .number {
  font-size: 36px;
  line-height: 39px;
}

.results-card-preview .results-stat .label {
  font-size: 13px;
  line-height: 20px;
}

.results-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  background: linear-gradient(180deg, rgba(17, 18, 18, 0.00) 0%, #111212 87.8%);
  margin-left: -60px;
  margin-right: -60px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 40px;
}

.results-nav-line {
  flex: 1;
  height: 1px;
  background: var(--grey-400);
}

.results-nav-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.results-nav-btn:hover {
  opacity: 0.7;
}

.results-nav-btn svg circle {
  transition: stroke 0.2s ease;
}

.results-nav-btn:hover svg circle {
  stroke: var(--grey-200);
}


/* ============================================
   Where We Step In
   ============================================ */

.services {
  padding: 32px 24px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  background: var(--grey-800);
}

.services--tech-section {
  max-width: 1440px;
  margin-top: 16px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background: var(--grey-800); 
}

.services .section-title {
  text-align: left;
  background: linear-gradient(90deg, var(--white) 0%, var(--grey-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-header {
  margin-bottom: 48px;
}

.services-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-400);
}

.services-tab {
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  height: 40px;
  transition: background 0.2s;
  white-space: nowrap;
}

.services-tab.active {
  background: var(--blue);
}

.services-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
}

.services-body {
  display: grid;
  grid-template-columns: 396px 1fr;
  gap: 24px;
}

.services-testimonial {
  background: var(--blue);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 387px;
}

.services-testimonial blockquote {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: var(--white);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info .name {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.24px;
}

.testimonial-info .role {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 40px 140px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-400);
}

.service-item:first-child {
  border-top: none;
}

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

.service-number {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--green);
  text-align: right;
}

.service-name {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.64px;
}

.service-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: var(--white);
}

.services-tech-bar {
  background: var(--grey-800);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.services-tech-bar .label {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--grey-200);
  white-space: nowrap;
}

.services-tech-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.services-tech-logos img {
  height: 16px;
  width: auto;
  min-width: 60px;
  opacity: 0.6;
  object-fit: contain;
}

/* ============================================
   How Growth Actually Happens
   ============================================ */

.growth-process {
  padding: 80px 60px;
  margin: 0 auto;
  position: relative;
}

.growth-process-header {
  margin-bottom: 48px;
  position: relative;
  background-image: radial-gradient(circle, rgba(62, 63, 63, 0.5) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 100px 60px 80px;
  margin-left: -60px;
  margin-right: -60px;
  margin-top: -80px;
}

.growth-process-header-text {
  text-align: left;
  margin-left: 33%;
}

.growth-process-header-text .section-label {
  text-align: left;
}

.growth-process-header-text .section-title {
  text-align: left;
  background: linear-gradient(90deg, var(--white) 0%, var(--grey-200) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.process-grid-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.process-grid {
  display: flex;
  gap: 20px;
  width: max-content;
}

.process-card {
  background: var(--grey-800);
  padding: 32px 24px;
  flex: 0 0 421px;
  width: 421px;
  height: 421px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.process-card:nth-child(3) {
  background: var(--green);
  color: var(--black);
}

.process-card h3 {
  font-weight: 500;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.8px;
  margin-bottom: auto;
}

.process-card .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  background: var(--green);
  border-radius: 32px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--black);
  height: 40px;
  align-self: flex-start;
  margin-bottom: 16px;
}

.process-card:nth-child(3) .tag {
  background: var(--black);
  color: var(--white);
}

.process-card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.process-card .card-image {
  position: absolute;
  top: 104px;
  right: 24px;
  width: 188px;
  height: 188px;
  overflow: hidden;
}

.process-card .card-image img {
  width: 188px;
  height: 188px;
  object-fit: cover;
}

/* ============================================
   AI Section
   ============================================ */

.ai-section {
  padding: 80px calc((100% - 1440px) / 2);
  position: relative;
  height: 750px;
  overflow: hidden;
  background: var(--grey-800);
}

.ai-grid-lines {
  position: absolute;
  inset: 0;
}

.ai-grid-lines .v-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--grey-400);
}

.ai-grid-lines .h-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grey-400);
}

.grid-cross {
  position: absolute;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.grid-cross::before,
.grid-cross::after {
  content: '';
  position: absolute;
  background: var(--grey-400);
}

.grid-cross::before {
  left: 3px;
  right: 3px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.grid-cross::after {
  top: 3px;
  bottom: 3px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.ai-content {
  position: relative;
  z-index: 2;
  padding: 56px 60px;
}

.ai-title {
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -0.88px;
  max-width: 600px;
}

.ai-title .blue {
  color: var(--blue);
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  position: absolute;
  left: 42.5%;
  top: 40.93%;
  z-index: 2;
}

.ai-badge::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 100%;
  width: 24px;
  height: 24px;
  background: var(--blue);
}

.ai-subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.48px;
  margin-top: 372px;
}

.ai-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.18px;
  max-width: 470px;
  margin-top: 24px;
}

.ai-image {
  position: absolute;
  right: 0;
  top: 84px;
  width: 602px;
  height: 666px;
  z-index: 1;
  overflow: hidden;
}

.ai-image img {
  position: absolute;
  width: 191%;
  height: 215.83%;
  left: -14.16%;
  top: -33.12%;
  max-width: none;
  object-fit: none;
}

.ai-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--black) 0%, transparent 88%);
  z-index: 3;
}

.ai-fade-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 761px;
  height: 334px;
  background: linear-gradient(0deg, var(--grey-800) 0%, transparent 88%);
  z-index: 3;
}

/* ============================================
   How We Think and Work
   ============================================ */

.think-work {
  padding: 80px max(60px, calc((100% - 1440px) / 2 + 60px));
  background: var(--grey-800);
}

.think-work-header {
  text-align: center;
  margin-bottom: 48px;
}

.think-work-grid {
  display: grid;
  grid-template-columns: 1fr 1.26fr 0.74fr;
  grid-template-rows: auto 1fr;
  gap: 24px;
}

.tw-principle {
  grid-row: 1;
  grid-column: 1;
}

.tw-principle-visual {
  height: 240px;
  overflow: hidden;
}

.tw-principle-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--grey-600);
}

.tw-mindset {
  grid-row: 2;
  grid-column: 1;
  background: var(--grey-600);
  padding: 24px;
}

.tw-mindset .label {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tw-mindset-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-green {
  backdrop-filter: blur(12px);
  background: var(--green);
  border-radius: 32px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--black);
  height: 40px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.tw-approach {
  grid-row: 1 / 3;
  grid-column: 2;
  background: var(--grey-600);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.tw-approach .label {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tw-approach h3 {
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

.tw-approach .desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.18px;
  max-width: 397px;
  margin-bottom: 24px;
}

.tw-approach .bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tw-approach .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tw-approach > * {
  position: relative;
  z-index: 1;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  border-radius: 128px;
  padding: 8px 16px 8px 24px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  height: 56px;
  transition: transform 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
}

.btn-white .arrow {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tw-right-col {
  grid-row: 1 / 3;
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tw-founder {
  background: var(--green);
  overflow: hidden;
  position: relative;
  padding: 12px 12px 0;
  height: 182px;
  flex-shrink: 0;
}

.tw-founder .name {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: var(--black);
  text-align: right;
}

.tw-founder .role {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.16px;
  color: var(--black);
  text-align: right;
}

.tw-founder .photo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 142px;
  height: auto;
}

.tw-certs {
  background: var(--grey-600);
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tw-certs .label {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}

.tw-certs-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.tw-cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.tw-cert-item:first-child img {
  width: 166px;
  height: auto;
  object-fit: contain;
}

.tw-cert-item:last-child img {
  width: 164px;
  height: auto;
  object-fit: contain;
}

.tw-cert-divider {
  width: 100%;
  height: 1px;
  background: var(--grey-400);
  margin: 10px 0px 24px 0;
}

.tw-principle-content {
  background: var(--blue);
  padding: 24px;
}

.tw-principle-content .label {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tw-principle-content h3 {
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.tw-principle-content .desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.18px;
}

/* ============================================
   Trusted by Teams
   ============================================ */

.trusted {
  background: var(--grey-800);
  position: relative;
  overflow: hidden;
}

.trusted-dots {
  position: absolute;
  top: 0;
  left: -200px;
  right: 0;
  height: 520px;
  background-image: radial-gradient(circle, var(--grey-400) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.3;
  pointer-events: none;
}

.trusted-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px 323px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 0 40px;
  padding: 0 70px 0;
  max-width: 1440px;
  margin: 0 auto;
}

/* Left column */
.trusted-left {
  height: 406px;
  grid-column: 1;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.trusted-title-container {
  padding: 80px 60px 0;
  max-width: 1440px;
  margin: 0 auto;
}

.trusted-title {
  max-width: 562px;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 72px;
  line-height: 76px;
  letter-spacing: -1.44px;
  background: linear-gradient(90deg, #EFEEEC 0%, #9F9F9E 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
  margin-bottom: 32px;
}

.trusted-desc {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: var(--white);
  max-width: 380px;
  margin-bottom: auto;
}

/* Clutch rating */
.trusted-clutch {
  margin-top: auto;
  padding-bottom: 60px;
}

.trusted-clutch-logo {
  display: block;
  margin-bottom: 8px;
}

.trusted-clutch-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trusted-clutch-rating span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: var(--green);
}

.trusted-clutch-rating svg {
  flex-shrink: 0;
}

/* Photo (center column) */
.trusted-photo {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  width: 323px;
  height: 406px;
  overflow: hidden;
  align-self: start;
  background: var(--grey-600);
}

.trusted-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trusted-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  background: rgba(17, 18, 18, 0.16);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.trusted-play-btn:hover {
  background: rgba(17, 18, 18, 0.4);
}

.trusted-play-btn svg {
  margin-left: 3px;
}

/* Testimonial card (right column) */
.trusted-card {
  height: 406px;
  grid-column: 3;
  grid-row: 1 / 3;
  background: var(--grey-600);
  border-radius: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-self: start;
  min-height: 406px;
}

.trusted-card-top {
  margin-bottom: auto;
}

.trusted-card-name {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: var(--white);
}

.trusted-card-role {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.16px;
  color: var(--white);
  margin-top: 4px;
}

.trusted-card-quote-icon {
  margin-bottom: 16px;
}

.trusted-card-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  color: var(--white);
  margin: 0;
}

/* Nav arrows */
.trusted-nav {
  background: linear-gradient(180deg, rgba(17, 18, 18, 0.00) 0%, #111212 87.8%);
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  gap: 12px;
  margin-top: 32px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50% + 70px);
  padding-right: calc(50vw - 50% + 70px);
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 40px;
}

.trusted-nav-line {
  flex: 1;
  height: 1px;
  background: var(--grey-400);
}

.trusted-nav-btn {
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.trusted-nav-btn:hover {
  opacity: 0.7;
}

/* Bottom bar */
.trusted-bottom-bar {
  width: 100%;
  height: 129px;
  background: var(--grey-800);
  border-radius: 0;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.cta-content {
  display: flex;
  align-items: flex-start;
  gap: 136px;
  position: relative;
}

.cta-left {
  flex-shrink: 0;
  width: 312px;
}

.cta-tagline {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  color: var(--grey-200);
  text-transform: uppercase;
}

.cta-right {
  max-width: 536px;
}

.cta-right .section-title {
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -0.88px;
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
  margin-bottom: 24px;
}

.text-blue {
  -webkit-text-fill-color: var(--blue);
  color: var(--blue);
}

.cta-description {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: var(--white);
  margin-bottom: 44px;
}

.cta-asterisk {
  position: absolute;
  right: 0;
  top: 76px;
  width: 88px;
  height: 88px;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  border-radius: 128px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
  color: var(--white);
}

.cta-badge img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.cta-logos {
  position: relative;
  margin-top: 120px;
  overflow: hidden;
}

.cta-logos::before,
.cta-logos::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.cta-logos::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), transparent);
}

.cta-logos::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), transparent);
}

.cta-logos-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.cta-logo {
  width: 160px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-logo img {
  max-width: 154px;
  height: auto;
  max-height: 41px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ============================================
   What's New (Blog)
   ============================================ */

.blog {
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 48px;
}

.blog-header .section-title {
  text-align: left;
  background: linear-gradient(90deg, var(--white) 0%, var(--grey-200) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--grey-800);
  overflow: hidden;
  transition: transform 0.3s;
  aspect-ratio: 1 / 1;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
}

.blog-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 0;
}

.blog-card-date {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.5px;
  color: #737373;
}

.blog-card-read {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.5px;
  color: #737373;
}

.blog-card-image {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.blog-card-image .color-overlay {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  mix-blend-mode: color;
}

.blog-card-image .color-overlay.blue {
  background: var(--blue);
}

.blog-card-image .color-overlay.green {
  background: var(--green);
}

.blog-card h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.64px;
  padding: 0 32px 32px;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.faq-tab {
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  height: 40px;
  transition: background 0.2s;
  white-space: nowrap;
}

.faq-tab.active {
  background: var(--blue);
}

.faq-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
}

.faq-list {
  max-width: 872px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--grey-800);
  padding: 32px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-question h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.64px;
}

.faq-question .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

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

.faq-answer p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  padding-top: 16px;
}

.faq-item.active .faq-question h3 {
  color: var(--green);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  position: relative;
  height: 750px;
  overflow: hidden;
  background: var(--black);
}

/* Base video layer */
.footer-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Second video layer: plus-lighter blend + blur */
.footer-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  mix-blend-mode: plus-lighter;
  opacity: 0.32;
  filter: blur(6px);
}

.footer-video-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Frosted vertical stripes overlay */
.footer-stripes {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.64;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: repeating-linear-gradient(90deg,
    rgba(17, 18, 18, 0.64) 0px,
    rgba(17, 18, 18, 0.16) 72px
  );
}

.footer-content {
  position: relative;
  z-index: 2;
  background: var(--white);
  margin: 32px;
  padding: 28px 26px;
  color: var(--black);
  display: flex;
  flex-direction: column;
  height: 349px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.64px;
  color: var(--black);
  transition: opacity 0.2s;
}

.footer-contact a:hover {
  opacity: 0.7;
}

.footer-contact a .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-col a {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.18px;
  color: var(--black);
  transition: opacity 0.2s;
}

.footer-nav-col a:hover {
  opacity: 0.7;
}

.footer-address {
  margin-top: auto;
}

.footer-address .label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: var(--grey-400);
}

.footer-address p {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
  color: var(--black);
}

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-left: auto;
}

.footer-socials a {
  display: block;
  width: 24px;
  height: 24px;
  transition: opacity 0.2s;
}

.footer-socials a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-socials a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(17, 18, 18, 0.12);
  padding-top: 16px;
  margin-top: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--grey-400);
  text-transform: lowercase;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--black);
}

.footer-copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--grey-400);
  text-transform: lowercase;
}

.footer-large-logo {
  position: relative;
  z-index: 2;
  margin: 0 32px;
}

.footer-large-logo img {
  width: 100%;
  height: auto;
  max-height: 184px;
  object-fit: contain;
}

/* ============================================
   Dot Grid Decoration
   ============================================ */

.dot-grid-section {
  padding: 0 60px;
  position: relative;
  overflow: hidden;
  height: 516px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1200px) {
  .trusted-inner {
    grid-template-columns: 300px 260px 1fr;
    gap: 0 24px;
  }

  .trusted-title {
    font-size: 56px;
    line-height: 60px;
  }

  .trusted-desc {
    font-size: 20px;
    line-height: 28px;
  }

  .trusted-photo {
    width: 260px;
    height: 380px;
  }

  .trusted-card {
    min-height: 380px;
  }

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

  .results-card-preview {
    display: none;
  }

  .think-work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tw-approach {
    grid-column: 1;
    grid-row: auto;
  }

  .tw-right-col {
    grid-column: 1 / -1;
    grid-row: auto;
    flex-direction: row;
  }

  .tw-founder {
    height: 173px;
    flex: 1;
  }

  .tw-certs {
    flex: 1;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 64px;
    line-height: 72px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .section-title {
    font-size: 48px;
    line-height: 52px;
  }

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

  .services-body {
    grid-template-columns: 1fr;
  }

  .services-testimonial {
    display: none;
  }

  .service-item {
    grid-template-columns: 40px 1fr;
  }

  .service-desc {
    grid-column: 1 / -1;
  }

  .growth-process-header {
    margin-left: -60px;
    margin-right: -60px;
  }

  .process-grid-wrapper {
    overflow: visible;
  }

  .process-grid {
    flex-wrap: wrap;
    width: auto;
    gap: 16px;
  }

  .process-card {
    flex: 1 0 calc(50% - 8px);
    aspect-ratio: 1 / 1;
  }

  .think-work-grid {
    grid-template-columns: 1fr;
  }

  .tw-approach {
    grid-column: 1;
    grid-row: auto;
    min-height: 400px;
  }

  .tw-right-col {
    grid-column: 1;
    grid-row: auto;
    flex-direction: column;
  }

  .trusted-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px 0;
    padding: 60px 40px 0;
  }

  .trusted-left {
    grid-column: 1;
    grid-row: 1;
  }

  .trusted-title {
    font-size: 40px;
    line-height: 44px;
  }

  .trusted-desc {
    font-size: 18px;
    line-height: 28px;
    max-width: 100%;
    margin-bottom: 60px;
  }

  .trusted-left {
    height: auto;
  }

  .trusted-clutch {
    padding-bottom: 0;
  }

  .trusted-clutch {
    padding-bottom: 0;
  }

  .trusted-photo {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 400px;
    height: 360px;
    margin-top: 0;
    justify-self: center;
  }

  .trusted-card {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
    min-height: auto;
  }

  .trusted-nav {
    grid-column: 1;
    grid-row: 4;
    justify-content: center;
    padding-bottom: 32px;
  }

  .trusted-nav-line {
    display: none;
  }

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

  .description-inner {
    flex-wrap: wrap;
  }

  .description-label {
    width: 100%;
    margin-bottom: -20px;
  }

  .description-heading {
    font-size: 36px;
    line-height: 40px;
  }

  .description-arrow img {
    width: 64px;
    height: 64px;
  }
}

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

  .nav-links {
    display: none;
  }

  .container,
  .stats-bar,
  .description,
  .results,
  .services,
  .growth-process,
  .think-work,
  .trusted,
  .cta-section,
  .blog,
  .faq {
    padding-left: 20px;
    padding-right: 20px;
  }

  .description {
    padding: 60px 20px;
  }

  .description-inner {
    flex-direction: column;
    gap: 24px;
  }

  .description-label {
    width: auto;
    margin-bottom: 0;
  }

  .description-heading {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.56px;
  }

  .description-subtitle {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 32px;
  }

  .description-arrow {
    margin-left: 0;
    align-self: flex-end;
  }

  .description-arrow img {
    width: 56px;
    height: 56px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 18px;
  }

  .hero-subtitle br {
    display: none;
  }

  .section-title {
    font-size: 36px;
    line-height: 40px;
  }

  .cta-logo img {
    max-width: auto;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: -30px;
  }

  .stat-number {
    font-size: 36px;
  }

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

  .growth-process-header {
    margin-left: -20px;
    margin-right: -20px;
    padding: 60px 20px;
  }

  .growth-process-header-text {
    margin-left: 0;
  }

  .process-grid-wrapper {
    overflow: visible;
  }

  .process-grid {
    flex-direction: column;
    width: auto;
    gap: 12px;
  }

  .process-card {
    flex: 1 0 100%;
    width: auto;
    aspect-ratio: auto;
    min-height: auto;
    padding-bottom: 24px;
  }

  .process-card h3 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 16px;
    max-width: 60%;
  }

  .process-card .card-image {
    position: absolute;
    top: 24px;
    right: 16px;
    width: 120px;
    height: 120px;
  }

  .process-card .card-image img {
    width: 120px;
    height: 120px;
  }

  .process-card .tag {
    position: relative;
    z-index: 1;
  }

  .process-card p {
    position: relative;
    z-index: 1;
  }

  .think-work {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .think-work-header {
    margin-bottom: 32px;
  }

  .think-work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tw-approach {
    grid-column: 1;
    grid-row: auto;
    min-height: 360px;
  }

  .tw-approach .desc {
    max-width: 100%;
  }

  .tw-right-col {
    grid-column: 1;
    grid-row: auto;
    flex-direction: column;
  }

  .tw-founder {
    height: auto;
    min-height: 140px;
    padding: 12px;
  }

  .tw-founder .photo {
    width: 120px;
  }

  .tw-certs-logos {
    gap: 12px;
  }

  .tw-cert-item:first-child img {
    width: 140px;
  }

  .tw-cert-item:last-child img {
    width: 140px;
  }

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

  .blog-card {
    aspect-ratio: auto;
  }

  .faq-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .faq-tabs::-webkit-scrollbar {
    display: none;
  }

  .faq-tab {
    flex-shrink: 0;
    font-size: 13px;
    padding: 6px 14px;
    height: 36px;
  }

  .faq-question h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .footer-content {
    margin: 16px;
    padding: 20px;
    height: auto;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer-contact a {
    font-size: 24px;
  }

  .ai-section {
    height: auto;
    padding: 60px 20px;
  }

  .ai-content {
    padding: 0;
  }

  .ai-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 40px;
    right: auto;
    top: auto;
  }

  .ai-image img {
    object-fit: scale-down;
  }

  .ai-title {
    font-size: 32px;
    line-height: 36px;
  }

  .ai-grid-lines,
  .ai-badge {
    display: none;
  }

  .ai-subtitle {
    margin-top: 40px;
  }

  .services-tech-bar {
    margin: 24px -20px 0px -20px;
  }

  .cta-content {
    flex-direction: column;
    gap: 32px;
  }

  .cta-left {
    width: auto;
  }

  .cta-right {
    max-width: 100%;
  }

  .cta-asterisk {
    display: none;
  }

  .cta-logos {
    margin-top: 60px;
  }

  .cta-logo {
    width: 140px;
  }

  .cta-logos-track {
    gap: 0px;
  }

  .trusted {
    padding: 0;
  }

  .trusted-title-container {
    padding: 60px 20px 0;
  }

  .trusted-inner {
    padding: 32px 20px 0;
    gap: 24px 0;
  }

  .ai-fade-top {
    z-index: 2;
  }

  .trusted-card {
    height: auto;
  }

  /* Footer mobile */
  .footer {
    height: auto;
  }

  .footer-content {
    margin: 16px;
    padding: 24px 20px;
    height: auto;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-contact a {
    font-size: 20px;
    line-height: 28px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }

  .footer-nav-col {
    gap: 12px;
  }

  .footer-nav-col a {
    font-size: 16px;
    line-height: 22px;
  }

  .footer-address {
    margin-top: 24px;
  }

  .footer-address p {
    font-size: 16px;
  }

  .footer-socials {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 20px;
    margin-left: 0;
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-large-logo {
    margin: 0 16px;
    padding-bottom: 16px;
  }
}
