@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bowlby+One&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary-orange: #e8530e;
  --primary-orange-hover: #d14a0b;
  --primary-blue: #2150dd;
  --primary-blue-light: #1e3d73;
  --dark: #0d0d0d;
  --light: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --bg: #ffffff;
  --text: #111317;
  --text-soft: #565c67;
  --text-on-dark: #f8f8f8;
  --blue: #2150dd;
  --orange: #ff6f32;
  --shadow-lg: 0 24px 80px rgba(18, 25, 46, 0.12);
  --container: min(1600px, calc(100vw - 12rem));
  --font-heading: "Outfit", sans-serif;
  --font-hero: "Bowlby One", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-copy: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --header-height: 80px;
  --header-h: 80px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease: 240ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 32px;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.header-logo {
  position: relative;
  z-index: 10;
}

.header-logo a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark);
}

.logo-dot {
  color: var(--primary-orange);
}

.hamburger {
  position: relative;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.hamburger-box {
  position: relative;
  width: 32px;
  height: 20px;
}

.hamburger-line {
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--dark);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.hamburger-line:nth-child(1) {
  top: 0;
  width: 100%;
}

.hamburger-line:nth-child(2) {
  top: 9px;
  left: auto;
  right: 0;
  width: 60%;
}

.hamburger-line:nth-child(3) {
  top: 18px;
  width: 80%;
}

.hamburger:hover .hamburger-line:nth-child(2),
.hamburger:hover .hamburger-line:nth-child(3) {
  width: 100%;
}

.hamburger.active .hamburger-line:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  top: 9px;
  width: 100%;
  transform: rotate(-45deg);
}

.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  visibility: hidden;
  pointer-events: none;
}

.fullscreen-menu.open {
  visibility: visible;
  pointer-events: auto;
}

.menu-bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.menu-bg-panel {
  flex: 1;
  background: var(--primary-blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease-out-expo);
}

.menu-bg-panel:nth-child(2) {
  transition-delay: 0.05s;
}

.menu-bg-panel:nth-child(3) {
  transition-delay: 0.1s;
}

.menu-bg-panel:nth-child(4) {
  transition-delay: 0.15s;
}

.fullscreen-menu.open .menu-bg-panel {
  transform: scaleY(1);
}

.menu-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 60px;
}

.menu-inner {
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.menu-nav-list {
  display: grid;
  gap: 14px;
}

.menu-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--light);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.94;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.menu-nav-link:hover,
.menu-submenu-link:hover {
  color: #ffb08a;
}

.link-number {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

.fullscreen-menu.open .menu-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-menu.open .menu-nav-item:nth-child(1) .menu-nav-link {
  transition-delay: 0.28s;
}

.fullscreen-menu.open .menu-nav-item:nth-child(2) .menu-nav-link {
  transition-delay: 0.34s;
}

.fullscreen-menu.open .menu-nav-item:nth-child(3) .menu-nav-link {
  transition-delay: 0.4s;
}

.fullscreen-menu.open .menu-nav-item:nth-child(4) .menu-nav-link {
  transition-delay: 0.46s;
}

.menu-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.menu-submenu.expanded {
  max-height: 240px;
}

.menu-submenu-list {
  display: grid;
  gap: 10px;
  padding: 10px 0 0 40px;
}

.menu-submenu-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.submenu-arrow {
  font-size: 1.1rem;
  opacity: 0.7;
}

.menu-sidebar {
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease 0.45s, transform 0.35s ease 0.45s;
}

.fullscreen-menu.open .menu-sidebar {
  opacity: 1;
  transform: translateY(0);
}

.menu-sidebar-block+.menu-sidebar-block {
  margin-top: 28px;
}

.menu-sidebar-block h4 {
  margin: 0 0 10px;
  color: #ffb08a;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.menu-sidebar-block p {
  margin: 0 0 8px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 112px 32px 56px;
}

.hero-inner {
  width: min(1280px, 100%);
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-line {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  line-height: 1.15;
}

.hero-word-static,
.hero-word-rotating {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: var(--font-hero);
  letter-spacing: -0.015em;
}

.hero-line-1 .hero-word-static,
.hero-line-2 .hero-word-static {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
}

.hero-word-rotating {
  min-width: 1ch;
  padding-bottom: 0.25em;
  margin-bottom: -0.25em;
}

.hero-word-rotating .word-inner {
  display: inline-block;
  transition: transform 0.45s ease, opacity 0.45s ease;
  line-height: 1.2;
}

.hero-word-orange .word-inner,
.hero-word-blue .word-inner {
  font-size: clamp(3rem, 7.5vw, 6.2rem);
}

.hero-word-mid .word-inner {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  color: var(--text);
}

.hero-word-rotating .word-inner.slide-out-up {
  opacity: 0;
  transform: translateY(-100%);
}

.hero-word-rotating .word-inner.slide-in-up {
  opacity: 1;
  transform: translateY(0);
}

.hero-dot {
  font-family: var(--font-hero);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.7;
}

.hero-bottom {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-copy);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.6;
  color: var(--gray-700);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--primary-orange);
  color: var(--light);
  font-family: var(--font-heading);
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: var(--primary-orange-hover);
}

.hero-scroll-indicator {
  position: absolute;
  left: 32px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.scroll-line {
  width: 52px;
  height: 1px;
  background: rgba(17, 19, 23, 0.35);
}

.scroll-text {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 19, 23, 0.65);
}

.hero-light {
  background:
    radial-gradient(circle at top left, rgba(232, 83, 14, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(10, 36, 99, 0.07), transparent 30%),
    #fffdf9;
}

.hero-light .hero-word-static {
  color: var(--dark);
}

.hero-light .hero-word-orange .word-inner {
  color: var(--primary-orange);
}

.hero-light .hero-word-blue .word-inner,
.hero-light .hero-dot-blue {
  color: var(--primary-blue);
}

.section {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 5.7vw, 5.85rem) 0;
}

.section--blue {
  width: 100%;
  max-width: none;
  padding-inline: max(calc((100vw - var(--container)) / 2), 1.5rem);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, var(--blue) 0%, #173cb9 100%);
  color: var(--text-on-dark);
}

.section--dark {
  width: 100%;
  max-width: none;
  padding-inline: max(calc((100vw - var(--container)) / 2), 1.5rem);
  background: #050505;
  color: var(--text-on-dark);
}

.eyebrow {
  margin: 0 0 0.9rem;
  opacity: 0.7;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-heading {
  margin-bottom: clamp(1.3rem, 3.1vw, 2.35rem);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.375rem);
  line-height: 1.15;
}

.section-heading h2.heading-nowrap {
  max-width: none;
  white-space: nowrap;
}

.section-heading--light .eyebrow,
.section-heading--light h2 {
  color: var(--text-on-dark);
}

.bridge {
  height: 172vh;
}

.bridge__sticky {
  position: sticky;
  top: 1rem;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(1.5rem, 3.8vw, 3rem);
  min-height: calc(100vh - 1rem);
  padding-top: clamp(0.75rem, 2.2vw, 1.5rem);
}

.bridge__media {
  width: min(64rem, 82vw);
  aspect-ratio: 16 / 9;
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(232, 83, 14, 0.26), rgba(10, 36, 99, 0.38)),
    linear-gradient(180deg, #efefef, #cfcfcf);
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: var(--shadow-lg);
  transform-origin: center center;
  will-change: transform;
  z-index: 2;
}

.bridge__copy {
  width: 100%;
}

.bridge__title {
  margin: 0;
  display: grid;
  gap: 0.04em;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  justify-items: center;
}

.bridge__title-line {
  display: block;
  white-space: nowrap;
  text-align: center;
}

.bridge__title-line--top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.3rem);
}

.bridge__target {
  display: inline-block;
  flex: none;
  width: clamp(5.5rem, 10vw, 9.5rem);
  aspect-ratio: 16 / 9;
  border-radius: 0.35rem;
  background: #d7d7d7;
  border: 1px solid rgba(17, 19, 23, 0.08);
}

.logo-cloud .section-heading {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
}

.logo-cloud .section-heading h2 {
  max-width: none;
  color: var(--blue);
}

.logo-cloud__stack {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.6rem);
}

.logo-cloud__marquee {
  position: relative;
  overflow: hidden;
  padding: 0.4rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-cloud__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.logo-cloud__marquee--rtl .logo-cloud__track {
  animation: logoMarqueeRtl 42s linear infinite;
}

.logo-cloud__marquee--ltr .logo-cloud__track {
  animation: logoMarqueeLtr 38s linear infinite;
}

.logo-cloud__marquee:hover .logo-cloud__track {
  animation-play-state: paused;
}

.logo-cloud__group {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.4rem);
  padding-right: clamp(0.85rem, 2vw, 1.4rem);
}

.logo-cloud__item {
  flex: 0 0 auto;
  width: clamp(8rem, 12vw, 11rem);
  margin: 0;
  padding: clamp(0.25rem, 0.7vw, 0.45rem) clamp(0.4rem, 0.9vw, 0.7rem);
}

.logo-cloud__item img {
  width: 100%;
  height: clamp(2.6rem, 4.4vw, 3.8rem);
  object-fit: contain;
}

.method-scene {
  position: relative;
  background: transparent;
}

.method-scene .section--blue {
  background: transparent;
}

.challenges {
  isolation: isolate;
  min-height: 350vh;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.challenges.section--blue {
  background:
    radial-gradient(circle at 82% 32%, rgba(255, 255, 255, 0.12), transparent 17rem),
    linear-gradient(180deg, var(--blue) 0%, #173cb9 100%);
  color: var(--text-on-dark);
}

.challenges__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.challenges__dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  will-change: transform;
  transition: none;
}

.challenges__dot--1 {
  width: 6px;
  height: 6px;
  top: 28%;
  right: 18%;
  opacity: 0.92;
}

.challenges__dot--2 {
  width: 5px;
  height: 5px;
  top: 38%;
  right: 22%;
  opacity: 0.85;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 111, 50, 0.85);
}

.challenges__dot--3 {
  width: 4px;
  height: 4px;
  top: 50%;
  right: 15%;
  opacity: 0.65;
}

.challenges__dot--4 {
  width: 6px;
  height: 6px;
  top: 60%;
  right: 20%;
  opacity: 0.75;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 111, 50, 0.85);
}

.challenges__dot--5 {
  width: 7px;
  height: 7px;
  top: 22%;
  left: 12%;
  opacity: 0.4;
}

.challenges__dot--6 {
  width: 5px;
  height: 5px;
  top: 72%;
  left: 8%;
  opacity: 0.5;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 111, 50, 0.85);
}

.challenges__sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100vh;
  padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(1.2rem, 3vw, 2rem);
  overflow: hidden;
}

.challenges .section-heading {
  position: absolute;
  top: clamp(1.8rem, 4vw, 3rem);
  left: 0;
  right: 0;
  text-align: center;
  margin-bottom: 0;
}

.challenges__layout {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  width: 100%;
}

.challenges__card {
  grid-area: 1 / 1;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  width: min(100%, 56rem);
  opacity: 0;
  pointer-events: none;
  transform: translateY(2rem) scale(0.95);
  transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.challenges__card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.challenges__content {
  display: grid;
  place-items: center;
  width: min(100%, 56rem);
  min-height: clamp(11rem, 19vw, 15rem);
  margin: 0.2rem 0 0.4rem;
}

.challenges__headline,
.challenges__body {
  grid-area: 1 / 1;
  transition: opacity 320ms ease, transform 320ms ease;
}

.challenges__headline {
  margin: 0;
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.15;
}

.challenges__body {
  margin: 0;
  max-width: 28ch;
  color: rgba(248, 248, 248, 0.84);
  font-family: var(--font-copy);
  font-size: clamp(1.2rem, 2vw, 1.875rem);
  line-height: 1.65;
}

.challenges__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 320ms ease, transform 320ms ease;
}

.challenges__card:not(.is-answer) .challenges__headline {
  opacity: 1;
  transform: translateY(0);
}

.challenges__card:not(.is-answer) .challenges__body {
  opacity: 0;
  transform: translateY(0.9rem);
}

.challenges__card.is-answer .challenges__headline {
  opacity: 0;
  transform: translateY(-0.9rem);
}

.challenges__card.is-answer .challenges__body {
  opacity: 1;
  transform: translateY(0);
}

.challenges__card.is-answer .challenges__cta {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoMarqueeRtl {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes logoMarqueeLtr {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.container {
  width: min(1280px, calc(100vw - 4rem));
  margin: 0 auto;
}

.container-full {
  width: min(1380px, calc(100vw - 4rem));
  max-width: 100%;
  margin: 0 auto;
}

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

.text-orange {
  color: var(--primary-orange);
}

.text-white {
  color: var(--light);
}

.text-dark {
  color: var(--dark);
}

.animated-title .anim-word {
  display: inline-block;
}

.animated-title .anim-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.85em) rotate(4deg);
  transition:
    opacity 0.55s ease,
    transform 0.55s var(--ease-out-expo);
}

.animated-title.animate .anim-char {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.ways-support-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(232, 83, 14, 0.07), transparent 22%),
    linear-gradient(180deg, #fff, #f8f8fb);
}

.ways-container {
  position: relative;
}

.ways-title,
.testimonials-title,
.case-title,
.blogs-title,
.faqs-title {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.services-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
}

.service-item {
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 1.15rem 1.25rem;
  border-top: 1px solid rgba(17, 19, 23, 0.12);
  border-bottom: 1px solid rgba(17, 19, 23, 0.06);
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.service-item:hover {
  transform: translateX(8px);
  color: var(--primary-orange);
  border-color: rgba(232, 83, 14, 0.24);
}

.service-name {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Legacy service modal removed in favor of new glassmorphic styles */

.traffic-video-section {
  position: relative;
  min-height: 125vh;
  background: #08132e;
}

.traffic-video-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
}

.traffic-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.traffic-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 25, 0.55), rgba(5, 10, 25, 0.78)),
    radial-gradient(circle at center, rgba(232, 83, 14, 0.18), transparent 32%);
}

.traffic-content-wrap {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 3rem));
  min-height: 125vh;
  margin: 0 auto;
}

.traffic-copy {
  min-height: 55vh;
  display: grid;
  align-content: center;
}

.traffic-copy--lead {
  justify-items: start;
}

.traffic-copy--body {
  justify-items: end;
  text-align: right;
}

.traffic-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.traffic-title {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.traffic-body {
  max-width: 24ch;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.work-gallery-scroll {
  padding: 0;
  background:
    linear-gradient(180deg, #f6f7fb 0%, #ffffff 100%);
}

.work-gallery-sticky {
  width: min(1320px, calc(100vw - 2rem));
  margin: 0 auto;
}

.work-gallery-title {
  margin-bottom: 2rem;
}

.work-gallery-line {
  font-family: var(--font-hero);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.work-gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.7vw, 1.4rem);
}

.grid-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 1.35rem;
  background: #edf1f7;
  aspect-ratio: 3 / 4;
  box-shadow: 0 16px 40px rgba(15, 27, 62, 0.08);
  cursor: pointer;
  transform: translateY(36px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.25s ease;
}

.grid-item.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.grid-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 55px rgba(15, 27, 62, 0.16);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.click-hint {
  margin-top: 1rem;
  color: var(--gray-500);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-gallery-cta-wrap {
  margin-top: 2rem;
}

.work-gallery-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: var(--primary-blue);
  color: var(--light);
  font-family: var(--font-heading);
  font-weight: 700;
}

.gallery-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 10, 22, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 80px 100px;
}

.gallery-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal-content {
  width: min(80vw, 960px);
  max-height: 70vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
}

.gallery-modal-content.is-long {
  overflow-y: auto;
  scrollbar-width: thin;
}

.gallery-modal-content.is-long::-webkit-scrollbar {
  width: 6px;
}

.gallery-modal-content.is-long::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-modal-content.is-long::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.gallery-modal-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 1rem;
  display: block;
}

.gallery-modal-content.is-long .gallery-modal-image {
  max-height: none;
  height: auto;
}

.gallery-modal-close,
.gallery-modal-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.gallery-modal-close {
  top: 28px;
  right: 28px;
}

.gallery-modal-nav--prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-modal-nav--next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-modal-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.testimonials-section {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #2150dd 0%, #06183f 100%);
}

.testimonials-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 65ch;
  line-height: 1.6;
  margin: -1.5rem 0 clamp(2.5rem, 5vw, 3.5rem);
}

.testimonials-scroller {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: testimonialMarquee 48s linear infinite;
}

.testimonials-scroller:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: min(440px, 82vw);
  padding: 1.6rem 1.55rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(8px);
}

.testimonial-author {
  margin: 0 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.testimonial-stars {
  margin-bottom: 0.85rem;
  color: #ffb948;
  letter-spacing: 0.15em;
}

.testimonial-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

@keyframes testimonialMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.impact {
  width: 100%;
  max-width: none;
  min-height: 450vh;
  overflow: visible;
  padding: 0;
  background: #fff;
}

.impact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 0px;
  background: var(--blue);
}

.impact__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 5.6vw, 5rem) max(calc((100vw - var(--container)) / 2), 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.impact__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.impact__title {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 3.375rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.impact__title span {
  color: var(--blue);
}

.impact__viewport {
  overflow: hidden;
  width: 100%;
}

.impact__track {
  display: flex;
  will-change: transform;
}

.impact-panel {
  flex: 0 0 100%;
  min-width: 100%;
}

.impact__stats {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) minmax(4.5rem, 0.3fr) minmax(20rem, 1.5fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 0 clamp(2rem, 5vw, 6rem);
}

.impact__lede {
  max-width: 18rem;
  margin: 0;
  font-size: clamp(1rem, 1.75vw, 1.42rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.impact__lede--right {
  max-width: 24rem;
}

.impact__number {
  display: grid;
  justify-items: center;
  text-align: center;
}

.impact__number p {
  margin: 0.8rem 0 0.5rem 0;
  font-size: clamp(1rem, 1.75vw, 1.42rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text-soft);
}

.impact__number strong {
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 14vw, 10.7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.impact__number span {
  display: block;
  margin-top: 0.1rem;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.impact__number small {
  display: block;
  margin-top: 0.18rem;
  color: var(--text-soft);
  font-size: clamp(0.9rem, 1.35vw, 1.05rem);
  font-weight: 700;
}

.impact__signature {
  position: relative;
  width: clamp(4.5rem, 9vw, 7rem);
  height: clamp(2.8rem, 5vw, 4.2rem);
}

.impact__signature::before,
.impact__signature::after {
  content: "";
  position: absolute;
  border-color: var(--text);
  border-style: solid;
  opacity: 0.9;
}

.impact__signature::before {
  inset: 1.55rem 0 auto;
  height: 1.8rem;
  border-width: 0 0 2px;
  border-radius: 50%;
  transform: rotate(-11deg);
}

.impact__signature::after {
  right: 0.1rem;
  bottom: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 1rem;
  transform: rotate(-18deg);
}

.impact__visuals {
  position: relative;
  height: clamp(11rem, 22vw, 17.5rem);
  margin: 10px auto 20px;
  overflow: hidden;
  transform: translateY(clamp(1.6rem, 3vw, 2.4rem));
}

.impact-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(1rem) scale(0.97);
  transition: opacity 280ms ease, transform 420ms ease;
}

.impact-visual:first-child {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.impact-visual svg {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 48rem;
  overflow: visible;
}

.impact-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.impact-visual__fill {
  fill: rgba(255, 255, 255, 0.24);
}

.impact-visual__accent {
  fill: #f1a08a;
  stroke: var(--text);
  stroke-width: 3;
  stroke-linejoin: round;
}

.impact-visual__card {
  fill: rgba(255, 255, 255, 0.36);
  stroke: var(--text);
  stroke-width: 3;
}

.impact-visual__line,
.impact-visual__shell {
  fill: none;
  stroke: var(--text);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact__progress {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 50px;
}

.impact__progress span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.25);
  transition: width var(--ease), background var(--ease), transform var(--ease);
}

.impact__progress span.is-active {
  width: 2.3rem;
  background: var(--blue);
}

.case-studies-section,
.blogs-section,
.faqs-section,
.contact-form-section {
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.case-grid,
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.blogs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-card,
.blog-card {
  display: grid;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #f7f8fb;
  box-shadow: 0 18px 48px rgba(12, 28, 62, 0.08);
}

.case-card-visual,
.blog-visual {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(232, 83, 14, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #f2f4fa);
}

.case-illustration {
  width: 100%;
  height: auto;
}

.blog-image {
  width: min(100%, 280px);
  height: auto;
}

.case-card-content,
.blog-content {
  padding: 1.5rem;
}

.case-card-content h3,
.blog-content h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.blog-content p {
  margin: 0 0 1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.case-link,
.btn-read-more {
  display: inline-flex;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  background: var(--primary-blue);
  color: var(--light);
  font-weight: 700;
}

.madlibs-form {
  display: grid;
  gap: 1.15rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1.8rem;
  background: #f5f7fb;
}

.madlibs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.madlibs-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.madlibs-input {
  min-width: 180px;
  flex: 1 1 220px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 19, 23, 0.14);
  border-radius: 999px;
  background: white;
}

.btn-madlibs,
.btn-cta-growth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.4rem;
  border: 0;
  background: var(--primary-orange);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
}

.madlibs-submit-wrapper {
  margin-top: 0.5rem;
}

.faqs-accordion {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 1.2rem;
  background: #f7f8fb;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.25s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.final-cta-section {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
    #000000;
}

.cta-flex {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}



.site-footer {
  padding: 0 0 3rem;
  background: #fff;
}

.footer-top-border {
  height: 2px;
  margin-bottom: 2rem;
  background: rgba(10, 36, 99, 0.15);
}

.footer-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 2rem;
}

.footer-heading {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.footer-nav,
.footer-contact-text {
  color: var(--gray-700);
  line-height: 1.8;
}

.footer-pipe {
  margin: 0 0.35rem;
  color: rgba(17, 19, 23, 0.3);
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0.85rem;
}

.footer-contact-item+.footer-contact-item {
  margin-top: 1rem;
}

.footer-bold {
  font-weight: 700;
  color: var(--text);
}

.footer-light {
  color: var(--gray-700);
}

@media (max-width: 1024px) {
  :root {
    --container: min(100%, calc(100vw - 3rem));
  }

  .menu-inner {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    display: none;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .bridge__title-line {
    white-space: normal;
  }

  .bridge__title-line--top {
    flex-wrap: nowrap;
  }

  .work-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-grid,
  .blogs-grid,
  .footer-layout,
  .cta-flex {
    grid-template-columns: 1fr;
  }

  .impact__stats {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .impact__number {
    justify-items: center;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 0 18px;
  }

  .menu-content {
    padding: 110px 20px 40px;
  }

  .menu-nav-link {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    padding: 0 18px 40px;
  }

  .hero-scroll-indicator {
    left: 18px;
    bottom: 18px;
  }

  .section {
    width: min(100%, calc(100vw - 2rem));
  }

  .section--blue {
    padding-inline: 1rem;
  }

  .bridge {
    height: auto !important;
    min-height: auto !important;
    padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem !important;
  }

  .bridge__sticky {
    position: relative !important;
    top: 0 !important;
    min-height: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
    padding-top: 0 !important;
  }

  .bridge__media {
    width: 100% !important;
    max-width: 480px !important;
    margin: 0 auto !important;
  }

  .bridge__title {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem) !important;
    line-height: 1.4 !important;
    text-align: center !important;
  }

  .bridge__target {
    display: none !important;
  }

  .bridge__title-line--top {
    display: block !important;
  }

  .challenges {
    min-height: 300vh;
  }

  .challenges__sticky {
    height: 80vh;
    top: 10vh;
  }

  .challenges__layout {
    min-height: 80vh;
  }

  .challenges__headline {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .challenges__body {
    font-size: 1.05rem;
  }

  .container,
  .container-full {
    width: min(100%, calc(100vw - 2rem));
  }

  .traffic-content-wrap {
    width: min(100%, calc(100vw - 2rem));
  }

  .traffic-copy--body {
    justify-items: start;
    text-align: left;
  }

  .work-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-item {
    border-radius: 1rem;
  }

  .testimonials-track {
    gap: 0.85rem;
  }

  .testimonial-card {
    width: 82vw;
  }

  .gallery-modal-nav {
    display: none;
  }
}

/* new-cave fidelity overrides for ways support + work gallery */
.ways-support-section {
  background: var(--light);
  padding: 120px 48px;
  position: relative;
  z-index: 5;
}

.text-blue .anim-char {
  color: #0f46c4;
}

.text-orange .anim-char {
  color: #ff6e36;
}

.ways-title {
  font-family: var(--font-hero);
  font-size: 68px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 60px;
}

.anim-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 0.6s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.animated-title.animate .anim-char {
  opacity: 1;
  transform: translateY(0);
}

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

.service-item {
  border-top: 2px solid var(--gray-100);
  padding: 10px 20px;
  cursor: crosshair;
  transition: all 0.3s ease;
  position: relative;
}

.service-item:last-child {
  border-bottom: 2px solid var(--gray-100);
}

.service-mobile-desc {
  display: none;
}

.service-name {
  font-family: var(--font-hero);
  font-size: 52px;
  color: var(--dark);
  transition: color 0.3s ease;
}

.services-list:hover .service-name {
  color: #e5e7eb;
}

.services-list .service-item:hover .service-name {
  color: var(--dark);
}

.service-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: min(580px, 92vw);
  background: rgba(11, 12, 16, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 111, 50, 0.25);
  border-radius: 1rem;
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: transform, left, top;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 2.2rem;
}

.service-modal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-modal-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.service-modal-content {
  flex: 1;
}

.service-modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.8rem 0;
  letter-spacing: -0.01em;
}

.service-modal-desc {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin: 0 0 1.25rem 0;
}

.service-modal-alchemy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.alchemy-label {
  font-size: 0.78rem;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.4rem;
}

.alchemy-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.45;
  margin: 0;
}

.service-modal-illustration {
  width: 110px;
  height: 110px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
}

.service-modal-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-gallery-scroll {
  position: relative;
  background: var(--light);
}

.work-gallery-sticky {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
}

.work-gallery-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-hero);
  font-size: clamp(60px, 8vw, 150px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-gallery-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(85vw, 1100px);
  height: min(70vh, 650px);
  z-index: 2;
}

.grid-item {
  position: absolute;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: default;
  will-change: transform, opacity;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  background: #fff;
}

.grid-item.clickable {
  cursor: pointer;
}

.grid-item.clickable:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  z-index: 10 !important;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.grid-item--center {
  z-index: 5;
}

.click-hint {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray-500);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 20;
  white-space: nowrap;
}

.click-hint.visible {
  opacity: 1;
}

.work-gallery-cta-wrap {
  padding: 0.5rem 0 2.5rem;
  text-align: center;
  background: var(--light);
}

.work-gallery-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: var(--primary-blue);
  color: var(--light);
  font-family: var(--font-heading);
  font-weight: 700;
}

.gallery-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal-overlay.active .gallery-modal-content {
  transform: scale(1);
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.gallery-modal-close,
.gallery-modal-nav {
  position: fixed;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10010;
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-modal-close:hover,
.gallery-modal-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-modal-close {
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
}

.gallery-modal-close:hover {
  transform: rotate(90deg);
}

.gallery-modal-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}

.gallery-modal-nav--prev {
  left: 24px;
}

.gallery-modal-nav--prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.gallery-modal-nav--next {
  right: 24px;
}

.gallery-modal-nav--next:hover {
  transform: translateY(-50%) translateX(3px);
}

.gallery-modal-counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  z-index: 10010;
}

@media (max-width: 1024px) {
  .service-modal {
    width: min(92vw, 880px);
  }

  .service-name {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .ways-support-section {
    padding: 90px 24px;
  }

  .ways-title {
    font-size: 44px;
    margin-bottom: 36px;
  }

  .service-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
    cursor: default;
  }

  .service-name {
    font-size: 28px;
  }

  .service-modal {
    display: none;
  }

  .service-mobile-desc {
    display: block;
    margin-top: 0.6rem;
  }

  .service-mobile-text {
    margin: 0 0 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .service-mobile-alchemy {
    margin: 0;
    font-size: 0.85rem;
    color: #ff6e36;
    line-height: 1.4;
  }

  .work-gallery-grid {
    width: min(90vw, 420px);
    height: min(62vh, 520px);
  }

  .work-gallery-title {
    font-size: clamp(38px, 10vw, 54px);
    white-space: normal;
  }
}

/* new-cave fidelity overrides for faq, contact, blogs, footer */
.blogs-section {
  background: var(--light);
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.blogs-title {
  font-family: var(--font-hero);
  font-size: 68px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
}

.blog-card {
  display: flex;
  background: #fff;
  border: 1px solid #c2c9d6;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.blog-visual {
  background: #000;
  width: 40%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.blog-content h3 {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--dark);
  margin: 0 0 15px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
}

.blog-content p {
  font-family: var(--font-body);
  font-size: 16px;
  color: #555;
  margin: 0 0 25px;
  line-height: 1.5;
}

.btn-read-more {
  display: inline-block;
  background: #ff6e36;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  width: fit-content;
  border-radius: 6px;
  box-shadow: -4px 4px 0 0 #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-read-more:hover {
  transform: translate(-2px, 2px);
  box-shadow: -2px 2px 0 0 #000;
}

.contact-form-section {
  background: var(--light);
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.madlibs-form {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  display: block;
}

.madlibs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  row-gap: 30px;
  column-gap: 20px;
  margin-bottom: 25px;
}

.madlibs-text {
  font-family: var(--font-hero);
  font-size: clamp(28px, 4vw, 42px);
  color: #000;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

.madlibs-input {
  font-family: var(--font-body);
  font-size: clamp(18px, 3vw, 24px);
  color: var(--dark);
  border: none;
  border-bottom: 2px solid #8e9db0;
  background: transparent;
  padding: 5px 10px;
  text-align: left;
  outline: none;
  flex-grow: 1;
  min-width: 180px;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.madlibs-input::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.madlibs-input:focus {
  border-bottom-color: var(--blue);
}

.madlibs-submit-wrapper {
  margin-top: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.btn-madlibs {
  background: #ff6e36;
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  padding: 18px 60px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: -6px 6px 0 0 #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-madlibs:hover {
  transform: translate(-2px, 2px);
  box-shadow: -4px 4px 0 0 #000;
}

.faqs-section {
  background: var(--light);
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.faqs-title {
  font-family: var(--font-hero);
  font-size: 68px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.faqs-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #a7a7a7;
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0 #5b3ad3;
  background: #fff;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 15px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
  color: #0f46c4;
}

.faq-icon {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--dark);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  color: #0f46c4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

.faq-answer p {
  padding-bottom: 30px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.site-footer {
  background: #000000;
  color: #fff;
  padding: 0 0 60px;
  position: relative;
  z-index: 5;
}

.footer-top-border {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin-bottom: 60px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  gap: 0px;
}

.footer-col-left {
  flex: 1;
}

.footer-heading {
  font-family: var(--font-hero);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 30px;
  letter-spacing: 1px;
}

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

.footer-nav a {
  font-family: var(--font-body);
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

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

.footer-pipe {
  color: #0f46c4;
  font-size: 16px;
  font-weight: 600;
  margin: 0 4px;
}

.footer-col-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 350px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-contact-text {
  font-family: var(--font-body);
  line-height: 1.6;
}

.footer-bold {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-light {
  font-size: 15px;
  font-weight: 400;
  color: #d1d1d1;
}

@media (max-width: 900px) {
  .footer-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .footer-col-right {
    min-width: 100%;
  }
}

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

  .blog-card {
    flex-direction: column;
  }

  .blog-visual {
    width: 100%;
    height: 250px;
  }

  .madlibs-row {
    justify-content: flex-start;
    text-align: left;
    row-gap: 20px;
    column-gap: 15px;
  }
}

.about-page {
  background: #ffffff;
}

.about-main {
  background: #ffffff;
}

.about-hero {
  position: relative;
  min-height: 160svh;
  display: grid;
  align-items: center;
  padding: 0 1.5rem;
  background: #ffffff;
  overflow: visible;
  isolation: isolate;
}

.about-hero__title {
  position: sticky;
  top: max(calc(var(--header-h) + 1rem), 24svh);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  margin: 0;
  width: auto;
  max-width: calc(100vw - 2rem);
  font-family: var(--font-display);
  font-size: clamp(3.55rem, 8vw, 5.95rem);
  line-height: 0.98;
  white-space: nowrap;
  transform-origin: center center;
  will-change: transform, opacity;
}

.about-hero__word {
  display: inline-block;
  opacity: 1;
  transform: none;
  filter: none;
  will-change: transform, opacity, filter;
}

.about-hero__deco {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(-50%);
}

.about-hero__deco--left {
  left: clamp(1.5rem, 5vw, 5rem);
  align-items: flex-start;
}

.about-hero__deco--right {
  right: clamp(1.5rem, 5vw, 5rem);
  align-items: flex-end;
}

.about-visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid rgba(17, 19, 23, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 244, 0.95));
  box-shadow: 0 22px 60px rgba(17, 19, 23, 0.1);
}

.about-visual-card--orb {
  width: clamp(11rem, 15vw, 15rem);
  aspect-ratio: 1;
}

.about-orb {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
}

.about-orb--orange {
  background: radial-gradient(circle at 35% 35%, #ff9a69, #d85a1a 64%, #9e3e11 100%);
}

.about-orb-ring {
  position: absolute;
  inset: 10%;
  border: 2px solid rgba(33, 80, 221, 0.16);
  border-radius: 50%;
}

.about-visual-card--bars {
  display: flex;
  align-items: end;
  gap: 0.7rem;
  width: clamp(10rem, 13vw, 12.5rem);
  height: clamp(8rem, 10vw, 10rem);
  padding: 1.25rem;
}

.about-visual-card--bars span {
  flex: 1;
  border-radius: 999px 999px 0.8rem 0.8rem;
  background: linear-gradient(180deg, rgba(33, 80, 221, 0.22), rgba(33, 80, 221, 0.92));
}

.about-visual-card--bars span:nth-child(1) {
  height: 45%;
}

.about-visual-card--bars span:nth-child(2) {
  height: 82%;
  background: linear-gradient(180deg, rgba(255, 111, 50, 0.2), rgba(255, 111, 50, 0.9));
}

.about-visual-card--bars span:nth-child(3) {
  height: 64%;
}

.about-visual-card--dashboard {
  width: clamp(13rem, 17vw, 18rem);
  padding: 1.25rem;
}

.about-dashboard-line {
  height: 0.8rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(33, 80, 221, 0.95), rgba(33, 80, 221, 0.14));
}

.about-dashboard-line--short {
  width: 58%;
  background: linear-gradient(90deg, rgba(255, 111, 50, 0.95), rgba(255, 111, 50, 0.14));
}

.about-visual-card--target {
  width: clamp(9rem, 12vw, 11rem);
  aspect-ratio: 1;
}

.about-target-core {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1.5rem solid rgba(255, 111, 50, 0.88);
}

.about-target-core::before,
.about-target-core::after {
  content: "";
  position: absolute;
  inset: 50%;
  background: rgba(33, 80, 221, 0.78);
  transform: translate(-50%, -50%);
}

.about-target-core::before {
  width: 1.1rem;
  height: 56%;
}

.about-target-core::after {
  width: 56%;
  height: 1.1rem;
}

.about-hero__word--accent {
  color: var(--orange);
}

.about-hero__word--base {
  color: var(--blue);
}

.about-statement {
  position: relative;
  width: 100%;
  min-height: auto;
  margin-top: 0;
  padding: 5rem max(calc((100vw - var(--container)) / 2), 1.5rem);
  background: #020202;
  color: rgba(255, 255, 255, 0.92);
  overflow: clip;
  isolation: isolate;
}

.about-statement__float {
  position: absolute;
  z-index: 1;
  will-change: transform, opacity;
}

.about-statement__float--left {
  left: clamp(1rem, 3.5vw, 3rem);
  top: 22svh;
  width: clamp(14rem, 20vw, 19rem);
}

.about-statement__float--right {
  right: clamp(1rem, 3.5vw, 3rem);
  top: 44svh;
  width: clamp(15rem, 21vw, 20rem);
}

.about-statement__float--top {
  right: clamp(10rem, 18vw, 19rem);
  top: 14svh;
  width: clamp(10rem, 12vw, 13rem);
}

.about-float-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.about-float-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-copy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-float-panel--phone {
  aspect-ratio: 1;
  background: linear-gradient(180deg, rgba(210, 210, 210, 0.8), rgba(138, 138, 138, 0.8));
}

.about-phone-circle {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #9d431d;
  transform: translate(-50%, -50%);
}

.about-phone-circle::before {
  content: "";
  position: absolute;
  inset: 23%;
  border: 0.5rem solid rgba(210, 210, 210, 0.9);
  border-radius: 44% 44% 48% 48%;
}

.about-float-panel--screen {
  aspect-ratio: 1.18;
  background: #b5a8b8;
}

.about-screen-blob {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 88%;
  height: 32%;
  color: rgba(59, 0, 0, 0.78);
  transform: translate(-50%, -50%);
}

.about-screen-blob::before,
.about-screen-blob::after {
  content: "";
  position: absolute;
  top: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.about-screen-blob::before {
  left: 0;
  content: "ome";
  color: rgba(59, 0, 0, 0.85);
}

.about-screen-blob::after {
  right: 0;
  content: "ne";
  color: rgba(255, 255, 255, 0.12);
}

.about-float-panel--mini {
  aspect-ratio: 1.05;
  padding: 2.6rem 1rem 1rem;
}

.about-mini-bars {
  display: flex;
  align-items: end;
  gap: 0.6rem;
  height: 5rem;
}

.about-mini-bars span {
  flex: 1;
  border-radius: 999px 999px 0.75rem 0.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.7));
}

.about-mini-bars span:nth-child(1) {
  height: 44%;
}

.about-mini-bars span:nth-child(2) {
  height: 78%;
  background: linear-gradient(180deg, rgba(255, 111, 50, 0.18), rgba(255, 111, 50, 0.88));
}

.about-mini-bars span:nth-child(3) {
  height: 62%;
}

.about-statement__inner {
  position: relative;
  top: auto;
  z-index: 2;
  width: min(100%, 90rem);
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 0;
}

.about-statement p {
  margin: 0;
  font-size: clamp(1.12rem, 1.7vw, 1.72rem);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0.042em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.about-statement p+p {
  margin-top: 0.85rem;
}

.about-statement p>span:not(.about-statement__word) {
  color: var(--orange);
}

.about-statement__word {
  display: inline;
  opacity: 1;
  transform: none;
  filter: none;
}

.about-statement__word--base {
  color: rgba(255, 255, 255, 0.92);
}

.about-statement__word--accent {
  color: var(--orange);
}

.about-statement__keyword-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  padding: clamp(4.5rem, 8vw, 7rem) 1.5rem;
  color: var(--orange);
  font-family: var(--font-copy);
  font-size: clamp(2.2rem, 5vw, 5.25rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform, opacity;
}

.about-statement__keyword-stack span {
  display: block;
  margin: 0 auto;
  opacity: 0;
  white-space: nowrap;
  will-change: transform, opacity;
}

.about-statement__cta-wrap {
  position: absolute;
  inset: auto 0 10svh;
  z-index: 4;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.about-statement__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 111, 50, 0.72);
  border-radius: 999px;
  background: rgba(255, 111, 50, 0.08);
  color: #ffffff;
  font-family: var(--font-copy);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}

.about-statement__cta:hover {
  background: rgba(255, 111, 50, 0.16);
  transform: translateY(-2px);
}

.about-spacer {
  height: 2000px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
}

@media (max-width: 900px) {
  .about-hero {
    min-height: 145svh;
  }

  .about-hero__title {
    top: max(calc(var(--header-h) + 0.9rem), 22svh);
    gap: 0.75rem;
    font-size: clamp(3rem, 13vw, 4.75rem);
  }

  .about-hero__deco {
    gap: 0.75rem;
  }

  .about-hero__deco--left {
    top: 38%;
    left: 1rem;
  }

  .about-hero__deco--right {
    top: 68%;
    right: 1rem;
  }

  .about-visual-card--orb {
    width: 8.25rem;
  }

  .about-visual-card--bars {
    width: 7.5rem;
    height: 6.5rem;
    padding: 0.9rem;
  }

  .about-visual-card--dashboard {
    width: 8.5rem;
    padding: 0.85rem;
  }

  .about-visual-card--target {
    width: 6.75rem;
  }

  .about-statement {
    /* min-height: 300vh; */
    margin-top: 0svh;
    padding: 60px 15px 60px 15px;
  }

  .about-statement__inner {
    width: min(100%, 96vw);
    top: auto;
    min-height: auto;
    /*padding: 5rem 0 2.5rem;*/
  }

  .about-statement p {
    font-size: clamp(0.98rem, 3.2vw, 1.24rem);
    line-height: 1.34;
    letter-spacing: 0.024em;
  }

  .about-statement__keyword-stack {
    font-size: clamp(1.8rem, 8vw, 3.15rem);
    line-height: 0.9;
  }

  .about-statement__float {
    opacity: 0.65;
  }

  .about-statement__float--left {
    top: 14svh;
    width: 8rem;
  }

  .about-statement__float--right {
    top: 56svh;
    width: 9rem;
  }

  .about-statement__float--top {
    top: 18svh;
    right: 5rem;
    width: 6.5rem;
  }

  .about-statement__cta-wrap {
    inset: auto 1rem 6svh;
  }

  .about-statement__cta {
    min-width: 0;
    width: 100%;
    max-width: 22rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FF6E36;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  width: 200px;
  height: 48px;
  border-radius: 5px;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: -10px 10px 0 0 #000;
  flex-shrink: 0;
}

.hero-cta:hover {
  transform: translate(-10px, 10px);
  box-shadow: 0 0 0 0 #000;
}

.hero-cta-arrow {
  display: inline-flex;
  align-items: center;
}

.hero-cta:hover .hero-cta-arrow {
  transform: none;
}

.case-link {
  font-family: var(--font-body);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease;
}

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

.btn-read-more {
  display: inline-block;
  background: #FF6E36;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  text-decoration: none;
  width: fit-content;
  border-radius: 6px;
  box-shadow: -4px 4px 0px 0px #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-read-more:hover {
  transform: translate(-2px, 2px);
  box-shadow: -2px 2px 0px 0px #000;
}

.btn-read-more:active {
  transform: translate(-4px, 4px);
  box-shadow: 0px 0px 0px 0px #000;
}

.btn-madlibs {
  background: #FF6E36;
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  padding: 18px 60px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: -6px 6px 0px 0px #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-madlibs:hover {
  transform: translate(-2px, 2px);
  box-shadow: -4px 4px 0px 0px #000;
}

.btn-madlibs:active {
  transform: translate(-6px, 6px);
  box-shadow: 0px 0px 0px 0px #000;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 15px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #0F46C4;
}

.faq-icon {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--dark);
}

.faq-question.active {
  color: #0F46C4;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  color: #0F46C4;
}

.gallery-modal-close,
.gallery-modal-nav {
  position: fixed;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10010;
  backdrop-filter: blur(10px);
}

.gallery-modal-close:hover,
.gallery-modal-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-modal-close {
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
}

.gallery-modal-close:hover {
  transform: rotate(90deg);
}

.gallery-modal-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}

.gallery-modal-nav--prev {
  left: 24px;
}

.gallery-modal-nav--prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.gallery-modal-nav--next {
  right: 24px;
}

.gallery-modal-nav--next:hover {
  transform: translateY(-50%) translateX(3px);
}

.btn-growth {
  display: inline-block;
  background: var(--primary-orange);
  color: var(--light);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-growth:hover {
  background: var(--primary-orange-hover);
}

/* Responsive overrides for work gallery and impact sections */
@media (max-width: 767px) {
  .work-gallery-scroll {
    padding: clamp(3rem, 6vw, 4.5rem) 0 !important;
    background: #f6f7fb !important;
  }

  .work-gallery-sticky {
    height: auto !important;
    position: relative !important;
    display: block !important;
    padding: 0 1.5rem !important;
    background: transparent !important;
  }

  .work-gallery-title {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin-bottom: 2rem !important;
    text-align: left !important;
    align-items: flex-start !important;
    white-space: normal !important;
  }

  .work-gallery-line {
    font-size: clamp(2rem, 8vw, 3.2rem) !important;
    line-height: 1.0 !important;
  }

  .work-gallery-grid {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: clamp(0.7rem, 2vw, 1rem) !important;
  }

  .grid-item {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    aspect-ratio: 3 / 4 !important;
    display: block !important;
    border-radius: 12px !important;
  }

  .click-hint {
    display: none !important;
  }

  .gallery-modal-nav {
    display: none !important;
  }

}

@media (max-width: 600px) {

  /* Mobile stacked overrides for impact section */
  .impact {
    min-height: auto !important;
  }

  .impact__sticky {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem !important;
    display: block !important;
  }

  .impact__stats {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .impact__lede,
  .impact__lede--right {
    max-width: 100% !important;
    justify-self: center !important;
    text-align: center !important;
    margin: 1rem 0 !important;
  }

  .impact__viewport {
    overflow: visible !important;
  }

  .impact__track {
    display: flex !important;
    flex-direction: column !important;
    gap: 3.5rem !important;
    transform: none !important;
  }

  .impact-panel {
    flex: 0 0 auto !important;
    min-width: auto !important;
    width: 100% !important;
  }

  .impact__visuals {
    display: none !important;
  }

  .impact__progress {
    display: none !important;
  }
}

/* Services landing page capabilities listing */
.services-list-section {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.services-list-section__heading {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}

.services-list-section__heading h2 span {
  display: block;
}

.services-list-section__heading h2 span:first-child {
  color: var(--orange);
}

.services-list-section__heading h2 span:last-child {
  color: var(--blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 2rem;
  width: min(100%, 78rem);
  margin: 0 auto;
}

.service-main-card {
  position: relative;
  background: #0f1014;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-main-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 111, 50, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.service-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: #fff;
  margin: 0 0 1rem 0;
  line-height: 1.25;
}

.service-card-desc {
  font-family: var(--font-copy);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(248, 248, 248, 0.76);
  margin: 0 0 1.8rem 0;
  flex-grow: 1;
}

.work-gallery-cta-wrap {
  padding: 0.5rem 0 2.5rem;
  text-align: center;
  background: var(--light);
}

.work-gallery-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: var(--primary-blue);
  color: var(--light);
  font-family: var(--font-heading);
  font-weight: 700;
}

.service-card-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
  display: grid;
  gap: 0.7rem;
}

.service-card-list li {
  font-family: var(--font-copy);
  font-size: 0.9rem;
  color: rgba(248, 248, 248, 0.9);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-card-list li span {
  color: var(--orange);
  font-weight: 800;
}

.service-card-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card-btn span {
  transition: transform 0.2s ease;
}

.service-main-card:hover .service-card-btn {
  color: #fff;
}

.service-main-card:hover .service-card-btn span {
  transform: translateX(4px);
}

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

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-main-card {
    padding: 1.8rem;
  }
}

/* Portfolio Page Grid & Cards Styling */
.portfolio-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.portfolio-card-container {
  position: relative;
  width: 100%;
  aspect-ratio: 7 / 6;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  background: #f6f7fb;
}

.portfolio-card-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 36, 99, 0.22);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.portfolio-card-container:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-overlay-btn {
  background: var(--primary-orange);
  color: var(--light);
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transform: translateY(10px);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 20px rgba(232, 83, 14, 0.3);
}

.portfolio-card-container:hover .portfolio-card-overlay-btn {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .portfolio-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 0 1.5rem;
  }
}

@media (max-width: 640px) {
  .portfolio-gallery__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Case Studies and Blogs Page Styling */
.case-grid,
.blogs-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.case-card-detail,
.blog-card-detail {
  background: #0f1014;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.case-card-detail:hover,
.blog-card-detail:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 111, 50, 0.35);
}

.case-card-detail__visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card-detail__visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-illustration {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-card-detail:hover .case-illustration,
.blog-card-detail:hover .blog-image {
  transform: scale(1.05);
}

.case-card-detail__content {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-detail__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-card-detail__tag,
.blog-tag {
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.blog-card-detail__meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.blog-date {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  margin-left: auto;
  font-family: var(--font-body);
}

.case-card-detail__metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.2rem;
}

.metric-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.1;
}

.metric-item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-body);
}

.case-card-detail__content h3,
.blog-card-detail__content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 1rem 0;
}

.case-card-detail__desc,
.blog-card-detail__excerpt {
  font-family: var(--font-copy);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(248, 248, 248, 0.72);
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.case-card-detail__content .btn,
.blog-card-detail__content .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 980px) {

  .case-grid,
  .blogs-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

@media (max-width: 640px) {

  .case-grid,
  .blogs-list-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .case-card-detail__content {
    padding: 1.8rem;
  }

  .blog-card-detail__content {
    padding: 1.2rem;
  }
}

/* Center Hero for About Page */
.about-hero-center {
  width: 100% !important;
  max-width: none !important;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  background: #ffffff;
}

.about-hero-center .eyebrow {
  margin-bottom: 1.5rem;
}

.about-hero-center__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 9.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #111317;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.02em;
  display: block;
}

.about-hero-center__title .text-orange {
  color: var(--orange);
}

/* Premium Team Section - Light Theme */
.about-team {
  width: 100% !important;
  max-width: none !important;
  padding: 8rem 0;
  background: #ffffff;
  color: #111317;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.team-header {
  text-align: center;
  margin-bottom: 5.5rem;
  position: relative;
  z-index: 1;
}

.team-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #111317;
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.team-card {
  background: rgba(240, 242, 245, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 111, 50, 0.3);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 0 25px rgba(255, 111, 50, 0.02);
}

.team-card__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f2f5;
}

.team-card__image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.team-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
  filter: grayscale(15%);
}

.team-card__img--primary {
  z-index: 2;
  opacity: 1;
}

.team-card__img--secondary {
  z-index: 1;
  opacity: 0;
}

.team-card__img--secondary.has-failed {
  display: none !important;
}

.team-card:hover .team-card__img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* Image swap cross-fade only if secondary photo exists and hasn't failed */
.team-card:hover .team-card__image-wrap:has(.team-card__img--secondary:not(.has-failed)) .team-card__img--primary {
  opacity: 0;
}

.team-card:hover .team-card__img--secondary:not(.has-failed) {
  opacity: 1;
  z-index: 3;
}

/* Glowing mantra badge inside the image block */
.team-card__mantra-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  opacity: 0.95;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease, border-color 0.4s ease;
  z-index: 2;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.team-card:hover .team-card__mantra-badge {
  border-color: rgba(255, 111, 50, 0.3);
}

.team-card__mantra-badge span {
  font-family: var(--font-copy);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--orange);
  display: block;
}

.team-card__info {
  padding: 2rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-card__meta {
  margin-bottom: 1.25rem;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #111317;
  margin: 0;
  letter-spacing: -0.01em;
}

.team-card__role {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.35rem 0 0 0;
}

.team-card__desc {
  font-family: var(--font-copy);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a4c52;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.team-card__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
}

.team-card__social-link {
  color: rgba(0, 0, 0, 0.4);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.team-card__social-link:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.team-card__social-icon {
  width: 1.35rem;
  height: 1.35rem;
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 2.5rem;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1rem;
  }

  .team-card__info {
    padding: 1.75rem 1.75rem 2rem;
  }
}

/* Bottom CTA Section with Images & Scroll Animation Preserved */
.about-growth {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  background: #ffffff !important;
  color: #111317 !important;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* absolute positioned image wrapper elements for desktop viewports */
.about-growth__img-wrap {
  position: absolute;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 5;
}

.about-growth__img-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.about-growth__img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-growth__img-wrap--bottom-left {
  bottom: clamp(2rem, 8vh, 6rem);
  left: clamp(2rem, 6vw, 8rem);
  width: clamp(15rem, 25vw, 25rem);
}

.about-growth__img-wrap--top-right {
  top: clamp(2rem, 8vh, 6rem);
  right: clamp(2rem, 6vw, 8rem);
  width: clamp(14rem, 22vw, 22rem);
}

/* Mobile responsive layout overrides */
@media (max-width: 768px) {
  .about-growth {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1.5rem;
    min-height: auto !important;
  }

  .about-growth__img-wrap {
    position: static !important;
    width: 85% !important;
    max-width: 22rem;
    margin: 1.5rem auto;
  }

  .about-growth__img-wrap--top-right {
    order: 1;
  }

  .about-growth__copy {
    order: 2;
    margin: 1.5rem 0 !important;
  }

  .about-growth__img-wrap--bottom-left {
    order: 3;
  }

  .about-growth .btn {
    order: 4;
    margin-top: 1rem !important;
  }
}

/* Stack Qualities on Mobile viewports */
@media (max-width: 768px) {
  .about-qualities {
    min-height: auto !important;
    padding: 5rem 1.5rem !important;
  }

  .about-qualities__inner {
    position: static !important;
    transform: none !important;
    height: unset;
  }

  .about-qualities h2 {
    text-align: center;
    margin-bottom: 2rem;
  }

  .about-qualities h2 span {
    display: inline !important;
    white-space: normal !important;
  }

  .about-quality-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 2rem 0 0 0 !important;
    gap: 1.5rem !important;
    transform: none !important;
  }

  .about-quality-card {
    grid-area: auto !important;
    width: 100% !important;
    min-height: auto !important;
    flex: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    grid-template-columns: 80px 1fr !important;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem !important;
  }

  .about-quality-card__art {
    width: 80px !important;
    height: 80px !important;
    border-radius: 0.5rem;
  }

  .about-quality-card__art::before {
    width: 50px !important;
    height: 32px !important;
    left: 15px !important;
    top: 24px !important;
  }
}

/* Blog Post Page Styles */
.blog-post-page {
  background-color: #ffffff;
}

.blog-post-main {
  color: #111317;
  font-family: "Manrope", sans-serif;
}

.blog-post-hero {
  padding: 100px 32px 40px;
  background: #f8f9fa;
  text-align: center;
  border-bottom: 1px solid rgba(17, 19, 23, 0.06);
}

.blog-post-hero__inner {
  max-width: 48rem;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.88rem;
  color: rgba(17, 19, 23, 0.5);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(17, 19, 23, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #ff6f32;
}

.blog-post-hero__title {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  color: #111317;
  letter-spacing: -0.015em;
}

.blog-post-hero__meta {
  font-size: 0.9rem;
  color: rgba(17, 19, 23, 0.6);
  font-weight: 600;
}

/* Featured Image */
.blog-post-featured-image {
  padding: 40px 32px;
  background: #ffffff;
}

.blog-post-featured-image__wrapper {
  max-width: 58rem;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(17, 19, 23, 0.08);
}

.blog-post-featured-image__wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */
.blog-post-content {
  padding: 20px 32px 60px;
  background: #ffffff;
}

.blog-post-content__inner {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2b2e35;
}

.blog-post-content__inner p {
  margin: 0 0 1rem 0;
}

.blog-post-content__inner h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3;
  margin: 1.8rem 0 0.8rem 0;
  color: #111317;
  letter-spacing: -0.01em;
}

.blog-post-content__inner h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.4;
  margin: 1.5rem 0 0.6rem 0;
  color: #111317;
}

.blog-post-content__inner h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 1.2rem 0 0.5rem 0;
  color: #111317;
}

.blog-post-content__inner ul,
.blog-post-content__inner ol {
  margin: 0 0 1.6rem 0;
  padding-left: 1.5rem;
}

.blog-post-content__inner li {
  margin-bottom: 0.6rem;
}

.blog-post-content__inner strong {
  color: #111317;
  font-weight: 700;
}

.blog-post-content__inner a {
  color: #ff6f32;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.blog-post-content__inner a:hover {
  opacity: 0.8;
}

.blog-post-content__inner blockquote {
  border-left: 4px solid #ff6f32;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(17, 19, 23, 0.8);
  font-size: 1.2rem;
}

/* Tags */
.blog-post-tags {
  padding: 0 32px 60px;
  background: #ffffff;
}

.blog-post-tags__inner {
  max-width: 44rem;
  margin: 0 auto;
  border-top: 1px solid rgba(17, 19, 23, 0.08);
  padding-top: 2rem;
}

.blog-post-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.blog-post-tag {
  background: #f1f3f5;
  color: #495057;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-post-tag:hover {
  background: #ff6f32;
  color: #ffffff;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
  .blog-post-hero {
    padding: 60px 18px 30px;
  }

  .blog-post-featured-image {
    padding: 20px 18px;
  }

  .blog-post-content {
    padding: 10px 18px 40px;
  }

  .blog-post-content__inner {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .blog-post-tags {
    padding: 0 18px 40px;
  }
}

/* B2B Marketing, AI Solutions, Performance Marketing, SEO AEO, Social Media Marketing, B2B Branding & Website Development Pages: Custom layout for service offerings */
@media (min-width: 1025px) {

  body[data-service-page="b2b-marketing"] .service-offerings__panel-card,
  body[data-service-page="ai-solutions"] .service-offerings__panel-card,
  body[data-service-page="performance-marketing"] .service-offerings__panel-card,
  body[data-service-page="seo-aeo"] .service-offerings__panel-card,
  body[data-service-page="social-media-marketing"] .service-offerings__panel-card,
  body[data-service-page="strategic-b2b-branding"] .service-offerings__panel-card,
  body[data-service-page="website-design-development"] .service-offerings__panel-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    padding: clamp(2rem, 3.5vw, 4rem);
    min-height: 62vh;
    background-color: #ffffff;
  }

  body[data-service-page="b2b-marketing"] .service-offerings__panel-title,
  body[data-service-page="ai-solutions"] .service-offerings__panel-title,
  body[data-service-page="performance-marketing"] .service-offerings__panel-title,
  body[data-service-page="seo-aeo"] .service-offerings__panel-title,
  body[data-service-page="social-media-marketing"] .service-offerings__panel-title,
  body[data-service-page="strategic-b2b-branding"] .service-offerings__panel-title,
  body[data-service-page="website-design-development"] .service-offerings__panel-title {
    grid-column: 1;
    align-self: start;
  }

  body[data-service-page="b2b-marketing"] .service-offerings__panel-copy,
  body[data-service-page="ai-solutions"] .service-offerings__panel-copy,
  body[data-service-page="performance-marketing"] .service-offerings__panel-copy,
  body[data-service-page="seo-aeo"] .service-offerings__panel-copy,
  body[data-service-page="social-media-marketing"] .service-offerings__panel-copy,
  body[data-service-page="strategic-b2b-branding"] .service-offerings__panel-copy,
  body[data-service-page="website-design-development"] .service-offerings__panel-copy {
    grid-column: 2;
    align-self: start;
  }

  body[data-service-page="b2b-marketing"] img.service-offerings__panel-visual,
  body[data-service-page="ai-solutions"] img.service-offerings__panel-visual,
  body[data-service-page="performance-marketing"] img.service-offerings__panel-visual,
  body[data-service-page="seo-aeo"] img.service-offerings__panel-visual,
  body[data-service-page="social-media-marketing"] img.service-offerings__panel-visual,
  body[data-service-page="strategic-b2b-branding"] img.service-offerings__panel-visual,
  body[data-service-page="website-design-development"] img.service-offerings__panel-visual {
    width: 100%;
    height: auto;
    max-height: 45vh;
    object-fit: cover;
    border-radius: 1.5rem;
    display: block;
    min-height: auto;
    padding: 0;
    margin-top: 1.8rem;
    background: transparent;
  }
}

@media (max-width: 1024px) {

  body[data-service-page="b2b-marketing"] .service-offerings__panel-card,
  body[data-service-page="ai-solutions"] .service-offerings__panel-card,
  body[data-service-page="performance-marketing"] .service-offerings__panel-card,
  body[data-service-page="seo-aeo"] .service-offerings__panel-card,
  body[data-service-page="social-media-marketing"] .service-offerings__panel-card,
  body[data-service-page="strategic-b2b-branding"] .service-offerings__panel-card,
  body[data-service-page="website-design-development"] .service-offerings__panel-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  body[data-service-page="b2b-marketing"] img.service-offerings__panel-visual,
  body[data-service-page="ai-solutions"] img.service-offerings__panel-visual,
  body[data-service-page="performance-marketing"] img.service-offerings__panel-visual,
  body[data-service-page="seo-aeo"] img.service-offerings__panel-visual,
  body[data-service-page="social-media-marketing"] img.service-offerings__panel-visual,
  body[data-service-page="strategic-b2b-branding"] img.service-offerings__panel-visual,
  body[data-service-page="website-design-development"] img.service-offerings__panel-visual {
    width: 100%;
    height: auto;
    max-height: 35vh;
    object-fit: contain;
    border-radius: 1.2rem;
    display: block;
    min-height: auto;
    padding: 0;
    background: transparent;
  }
}

/* Center align hero on all service, case-studies and blog pages */
.service-page-hero__grid {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-page-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.service-page-hero__title {
  text-align: center;
}

.blog-page .service-page-hero__title {
  letter-spacing: -0.02em !important;
}

.service-page-hero__title--inline {
  display: block;
}

.service-page-hero__title--inline .service-page-hero__line,
.service-page-hero__title--inline .service-page-hero__line--mix,
.service-page-hero__title--inline .service-page-hero__word {
  display: inline !important;
}

.service-page-hero__line--mix {
  justify-content: center;
}

.service-page-hero__body {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.service-page-hero__actions {
  justify-content: center !important;
}

/* Light Grey Blog Section & Glassmorphic Blog Cards */
.blogs-grid-section {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 6rem 1.5rem !important;
  background-color: #f6f7f9 !important;
}

.blog-card-detail {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.03) !important;
}

.blog-card-detail:hover {
  border-color: var(--orange) !important;
  box-shadow: 0 12px 40px 0 rgba(255, 110, 54, 0.12) !important;
}

.blog-card-detail__visual {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.blog-card-detail__content h3 {
  color: #111317 !important;
}

.blog-card-detail__excerpt {
  color: rgba(17, 19, 23, 0.72) !important;
}

.blog-date {
  color: rgba(17, 19, 23, 0.5) !important;
}