* {
  box-sizing: border-box;
}

:root {
  --blue: #749ccc;
  --blue-dark: #5a7ba3;
  --text: #101828;
  --muted: #4a5565;
  --light: #f3f4f6;
  --soft: #f8f8f8;
  --border: #e5e7eb;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  margin: 0 0 16px;
  line-height: 1.1;
  font-weight: 500;
}

p {
  margin: 0 0 16px;
}

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

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.08);
}

.scroll-progress {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: rgba(116, 156, 204, 0.2);
  z-index: 11;
  pointer-events: none;
}

.scroll-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--blue);
  transition: width 0.1s ease-out;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo img {
  height: 40px;
  display: block;
  transition: filter 0.2s ease;
}

.logo {
  position: relative;
  display: inline-block;
}

.logo:hover img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(18%) saturate(748%) hue-rotate(171deg) brightness(94%) contrast(90%);
}

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 18px;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav .mobile-cta {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 11;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #101828;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 16px;
  border: 1px solid transparent;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn img {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: #101828;
  border-color: #ffffff;
}

.btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.btn:hover {
  background: #101828;
  color: #ffffff;
  border-color: #101828;
}

.btn:hover img {
  filter: brightness(0) invert(1);
}

/* Hero */
.hero {
  background: var(--blue);
  color: #ffffff;
  height: 800px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.3fr;
  gap: 48px;
  align-items: stretch;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
  margin-right: -220px;
  width: 820px;
  max-width: none;
  padding-top: 30px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -1px;
}

.hero p {
  max-width: 440px;
  font-size: 20px;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 32px 0 24px;
}

.hero-divider {
  width: 600px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  animation: hero-line 1.2s ease-in-out forwards;
  margin-top: 46px;
}

@keyframes hero-line {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 600px;
    opacity: 1;
  }
}

.hero-media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  margin-left: auto;
  width: calc(50vw + 660px);
  margin-right: calc(50% - 50vw);
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: hero-pan 14s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-media img.is-loaded {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
}

@keyframes hero-wipe {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

.hero-media.is-loaded,
.hero-overlay.is-loaded {
  animation: hero-wipe 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-overlay.is-loaded {
  opacity: 1;
}

@keyframes hero-pan {
  0% {
    transform: scale(1.03) translate(0, 0);
  }
  40% {
    transform: scale(1.08) translate(-18px, -10px);
  }
  100% {
    transform: scale(1.03) translate(0, 0);
  }
}


/* Clients */
.clients {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  color: #99a1af;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 32px;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.client-logos img {
  height: 40px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.9;
}

/* About */
.about {
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.about h2 {
  font-size: 60px;
}

.about p {
  font-size: 20px;
  color: var(--muted);
  max-width: 460px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat {
  background: #ffffff;
  padding: 24px;
  min-height: 180px;
}

.stat-label {
  font-size: 14px !important;
  color: var(--muted);
}

.stat-value {
  margin-top: 40px;
  color: #749CCC !important;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 60px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 60px !important;
  letter-spacing: 0.352px;
  animation: stat-rise 0.9s ease both;
}

.stat-number {
  font-size: 60px !important;
  line-height: 60px !important;
}

.stat-suffix {
  font-size: 30px !important;
  line-height: 30px !important;
  margin-left: 6px;
  display: inline-block;
  transform: translateY(-6px);
}

.stats-grid .stat:nth-child(2) .stat-value {
  animation-delay: 0.1s;
}

.stats-grid .stat:nth-child(3) .stat-value {
  animation-delay: 0.2s;
}

.stats-grid .stat:nth-child(4) .stat-value {
  animation-delay: 0.3s;
}

@keyframes stat-rise {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Projects */
.projects {
  padding: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.projects-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}



.project-card {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.6);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.project-title {
  font-size: 22px;
  font-weight: 600;
}

.project-category {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.project-card img {
  transition: transform 0.3s ease;
  transform: scale(1);
}

.project-card:hover::after,
.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover img {
  transform: scale(1.05);
}

/* Services */
.services {
  background: var(--soft);
  padding: 96px 0 120px;
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 64px;
}

.services-head h2 {
  font-size: 48px;
  max-width: 820px;
}

.services-list {
  border-top: 1px solid #d1d5dc;
}

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 40px 0;
  border-bottom: 1px solid #d1d5dc;
}

.service-title {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.service-index {
  font-size: 14px;
  color: #99a1af;
  margin-top: 8px;
}

.service h3 {
  font-size: 36px;
}

.service p {
  font-size: 18px;
  color: var(--muted);
}

/* Insights */
.insights {
  padding: 120px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 60px;
}

.text-link {
  font-size: 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.text-link img {
  width: 16px;
  height: 16px;
}

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

.blog-media {
  position: relative;
  overflow: hidden;
}

.blog-media img {
  width: 100%;
  height: 264px;
  object-fit: cover;
  background: var(--light);
  opacity: 0.7;
  transition: transform 0.3s ease;
  transform: scale(1);
}

.blog-meta {
  margin-top: 16px;
  font-size: 12px;
  color: #6a7282;
  letter-spacing: 0.3px;
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card {
  cursor: pointer;
}

.blog-card h3 {
  font-size: 24px;
  margin: 12px 0 20px;
  transition: color 0.2s ease;
}

.blog-foot {
  font-size: 14px;
  color: #6a7282;
}

.blog-media::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 264px;
  background: rgba(16, 24, 40, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.blog-card:hover .blog-media::after {
  opacity: 1;
}

.blog-card:hover .blog-media img {
  transform: scale(1.05);
}

.blog-card:hover h3 {
  color: var(--blue);
}

/* Testimonials */
.testimonials {
  background: var(--soft);
  padding: 120px 0 80px;
}

.testimonials-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}

.testimonials h2 {
  font-size: 60px;
}

.slider-controls {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}


.circle-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #101828;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.circle-btn img {
  width: 20px;
  height: 20px;
}

.circle-btn:hover {
  background: #101828;
  border-color: #101828;
}

.circle-btn:hover img {
  filter: brightness(0) invert(1);
}

.reason p {
  font-size: 30px;
  line-height: 1.4;
}

.reason span {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-size: 16px;
  letter-spacing: 0.5px;
}

.reason.is-animating {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.reason {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-strip {
  border-top: 1px solid #d1d5dc;
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.brand-strip img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.9);
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 64px;
  margin-bottom: 80px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 320px;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.site-footer h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
  color: #ffffff;
}

.contact-list img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

.footer-left,
.footer-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-rings {
  position: absolute;
  right: -120px;
  top: 60px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 30px solid rgba(255, 255, 255, 0.2);
  animation: footer-pulse-outer 5.5s ease-in-out infinite;
}

.footer-rings::after {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 30px solid rgba(255, 255, 255, 0.18);
  animation: footer-pulse-inner 4.1s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal[data-reveal="down"] {
  transform: translateY(-24px);
}

.reveal[data-reveal="left"] {
  transform: translateX(24px);
}

.reveal[data-reveal="right"] {
  transform: translateX(-24px);
}

.reveal[data-reveal="fade"] {
  transform: none;
  transition: opacity 550ms ease;
}

/* Fade in from left, one after another (left to right) */
.reveal[data-reveal="fade-left"] {
  transform: translateX(-20px);
  opacity: 0;
  transition: opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-reveal="fade-left"].reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@keyframes footer-pulse-outer {
  0%, 100% {
    transform: scale(1);
    opacity: 0.35;
  }
  40% {
    transform: scale(1.04);
    opacity: 0.6;
  }
  70% {
    transform: scale(0.98);
    opacity: 0.45;
  }
}

@keyframes footer-pulse-inner {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  35% {
    transform: scale(1.06);
    opacity: 0.7;
  }
  75% {
    transform: scale(0.97);
    opacity: 0.5;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-grid,
  .about-grid,
  .testimonials-top {
    grid-template-columns: 1fr;
  }

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

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

  .client-logos {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  /* Mobile container gutters - consistent 20px on all sides */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Ensure sections don't add extra horizontal padding */
  section {
    padding-left: 0;
    padding-right: 0;
  }

  /* Explicit container padding for all major sections */
  .site-header .container,
  .hero .container,
  .clients .container,
  .about .container,
  .services .container,
  .insights .container,
  .testimonials .container,
  .site-footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header .container,
  .header-bar.container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-bar {
    flex-wrap: nowrap;
    gap: 16px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
  }

  .logo img {
    height: 32px;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-header {
    z-index: 12;
  }

  .main-nav {
    position: fixed;
    top: 73px;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 400px;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 0;
    font-size: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 11;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::after {
    content: "";
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    pointer-events: all;
  }

  .main-nav a {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: block;
  }

  .main-nav a::after {
    display: none;
  }

  .header-bar .desktop-cta {
    display: none;
  }

  .main-nav .mobile-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    border: none;
    padding: 14px 22px;
  }

  .btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .btn img {
    width: 16px;
    height: 16px;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: 600px;
    padding: 80px 0 60px;
  }

  .hero .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 18px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .hero-divider {
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
    animation: none;
    opacity: 1;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-media {
    display: none;
  }

  /* Clients */
  .clients {
    padding: 60px 0;
  }

  .clients .eyebrow {
    text-align: center;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .client-logos img {
    height: 32px;
  }

  /* About */
  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about h2 {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .about p {
    font-size: 18px;
  }

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

  .stat {
    padding: 32px 24px;
    min-height: auto;
  }

  .stat-value {
    font-size: 48px !important;
    line-height: 48px !important;
    margin-top: 24px;
  }

  .stat-number {
    font-size: 48px !important;
    line-height: 48px !important;
  }

  .stat-suffix {
    font-size: 24px !important;
    line-height: 24px !important;
  }

  /* Projects */
  .projects {
    padding: 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .projects-grid img {
    height: 300px;
  }

  .project-card:nth-child(n+3) {
    display: none;
  }

  /* Services */
  .services {
    padding: 80px 0 100px;
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }

  .services-head h2 {
    font-size: 32px;
  }

  .services-head .btn {
    width: 100%;
    justify-content: center;
  }

  .service {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

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

  .service p {
    font-size: 16px;
  }

  /* Insights */
  .insights {
    padding: 80px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

  .section-head h2 {
    font-size: 36px;
  }

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

  .blog-media img {
    height: 240px;
  }

  .blog-card h3 {
    font-size: 20px;
  }

  /* Testimonials */
  .testimonials {
    padding: 80px 0 60px;
  }

  .testimonials-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .testimonials h2 {
    font-size: 36px;
  }

  .reason p {
    font-size: 22px;
  }

  .brand-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding-top: 24px;
    gap: 24px;
    justify-content: flex-start;
  }

  .brand-strip::-webkit-scrollbar {
    display: none;
  }

  .brand-strip img {
    flex-shrink: 0;
    height: 28px;
    max-width: 120px;
  }

  /* Footer */
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .footer-left,
  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Agency page */
.agency-hero {
  background: var(--blue);
  color: #ffffff;
  padding: 150px 0 140px;
  position: relative;
  overflow: hidden;
}

.agency-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 55px;
}

.agency-hero h1 {
  font-size: clamp(48px, 5vw, 72px);
}

.agency-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 440px;
}

.agency-rings {
  position: absolute;
  right: 80px;
  top: 180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.18);
  animation: agency-pulse-outer 6.5s ease-in-out infinite;
}

.agency-rings::after {
  content: "";
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.16);
  animation: agency-pulse-inner 4.8s ease-in-out infinite;
}

@keyframes agency-pulse-outer {
  0%, 100% {
    transform: scale(1);
    opacity: 0.35;
  }
  45% {
    transform: scale(1.06);
    opacity: 0.65;
  }
  75% {
    transform: scale(0.98);
    opacity: 0.45;
  }
}

@keyframes agency-pulse-inner {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  35% {
    transform: scale(1.08);
    opacity: 0.7;
  }
  70% {
    transform: scale(0.96);
    opacity: 0.5;
  }
}

.agency-stats {
  margin-top: -100px;
  padding-bottom: 80px;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 40px;
  min-height: 220px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.stat-card p {
  font-size: 14px;
  color: var(--muted);
}

.stat-card-value {
  margin-top: 48px;
  font-size: 60px;
  color: #0a0a0a;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116, 156, 204, 0.35);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
}

.agency-gallery {
  padding: 40px 0 64px;
}

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

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.agency-logos {
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.logo-row img {
  height: 40px;
  object-fit: contain;
  margin: 0 auto;
}

.agency-copy {
  padding: 120px 0 80px;
}

.agency-copy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.agency-intro h2 {
  font-size: 48px;
}

.agency-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.agency-intro .btn {
  margin-top: 24px;
}

.agency-overview {
  margin-top: 16px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
  max-width: 420px;
}

.agency-list {
  display: grid;
  gap: 32px;
}

.agency-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

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

.agency-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.agency-item p {
  color: var(--muted);
  font-size: 16px;
}

.agency-cta {
  background: #242424;
  color: #ffffff;
  padding: 120px 0;
}

.agency-cta h2 {
  font-size: 60px;
  max-width: 900px;
  margin-bottom: 64px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.cta-contact {
  display: grid;
  gap: 32px;
}

.cta-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.cta-block span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.cta-block a {
  display: inline-block;
  margin-top: 12px;
  font-size: 30px;
  color: #ffffff;
}

.cta-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 21px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.agency-cta .btn:hover {
  background: #ffffff;
  color: #101828;
  border-color: #ffffff;
}

.agency-cta .btn:hover img {
  filter: none;
}

/* Services page */
.services-hero {
  background: var(--blue);
  color: #ffffff;
  padding: 160px 0 140px;
  position: relative;
  overflow: hidden;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.services-hero-copy h1 {
  font-size: clamp(48px, 5vw, 72px);
}

.services-hero-copy p {
  font-size: 24px;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.9);
}

.services-hero-stats {
  display: grid;
  gap: 32px;
}

.services-stat {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-stat-value {
  font-size: 60px;
  line-height: 1;
}

.services-stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.services-rings {
  position: absolute;
  right: 80px;
  top: 417px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.18);
  animation: agency-pulse-outer 6.5s ease-in-out infinite;
}

.services-rings::after {
  content: "";
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.16);
  animation: agency-pulse-inner 4.8s ease-in-out infinite;
}

.services-detail {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.services-detail-inner {
  display: grid;
  gap: 72px;
}

.services-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.services-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.services-body {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.services-body h2 {
  font-size: 48px;
}

.services-body-content p {
  font-size: 20px;
  color: var(--muted);
  max-width: 620px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
}

.services-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.services-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  color: #101828;
}

.services-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #101828;
}

.services-highlight {
  background: var(--blue);
  color: #ffffff;
  padding: 120px 0;
}

.services-highlight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 96px;
  align-items: center;
}

.services-highlight-copy h2 {
  font-size: 60px;
  max-width: 520px;
}

.services-highlight-copy p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin-bottom: 32px;
}

.services-highlight-media img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.services-process {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.services-process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.services-process-intro h2 {
  font-size: 48px;
}

.services-process-intro p {
  font-size: 20px;
  color: var(--muted);
}

.services-process-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.services-process-intro .btn {
  margin-top: 24px;
}

.services-steps {
  display: grid;
  gap: 32px;
}

.services-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.services-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.services-step-number {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.services-step h3 {
  font-size: 30px;
  margin-bottom: 8px;
}

.services-step p {
  font-size: 16px;
  color: var(--muted);
}

/* Work page */
.work-hero {
  padding: 140px 0 64px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.work-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.work-hero-copy h1 {
  font-size: clamp(48px, 5vw, 72px);
}

.work-hero-copy p {
  font-size: 24px;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.filter-btn {
  border: 1px solid #d1d5dc;
  background: #ffffff;
  color: #364153;
  font-size: 14px;
  padding: 10px 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.work-list {
  padding: 120px 0 160px;
}

.work-list-inner {
  display: grid;
  gap: 160px;
}

.case-card.is-hidden {
  display: none;
}

.case-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.case-card {
  display: grid;
  gap: 64px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.case-media {
  width: 100%;
  height: 630px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.case-media:hover img {
  transform: scale(1.05);
}

.case-media:hover::after {
  opacity: 1;
}

.case-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.case-tag {
  color: var(--blue);
  font-size: 18px;
}

.case-info h2 {
  font-size: 48px;
  margin-top: 16px;
}

.case-meta p {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 32px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-metric {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-value {
  font-size: 36px;
  color: #0a0a0a;
}

.case-label {
  font-size: 14px;
  color: var(--muted);
}

.case-card.is-filtered {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.case-card.is-filtered-hidden {
  display: none;
}

/* Case study detail */
.case-hero {
  padding: 140px 0 80px;
}

.case-hero-inner {
  display: grid;
  gap: 48px;
}

.case-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 16px;
  transition: opacity 0.2s ease;
  margin-bottom: 24px;
}

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

.case-back img {
  width: 20px;
  height: 20px;
  display: block;
}

.insight-detail-left .case-back,
.terms-hero .case-back {
  color: rgba(255, 255, 255, 0.9);
}

.insight-detail-left .case-back:hover,
.terms-hero .case-back:hover {
  color: #ffffff;
  opacity: 1;
}

.insight-detail-left .case-back img,
.terms-hero .case-back img {
  filter: brightness(0) invert(1);
}

.case-hero-media {
  height: 630px;
  overflow: hidden;
}

.case-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-hero-meta {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: start;
}

.case-hero-title h1 {
  font-size: 60px;
  margin-top: 12px;
}

.case-hero-info {
  display: grid;
  gap: 24px;
}

.case-info-block {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: grid;
  gap: 8px;
}

.case-info-block span {
  font-size: 14px;
  color: #6a7282;
}

.case-info-block strong {
  font-size: 18px;
  font-weight: 500;
  color: #0a0a0a;
}

.case-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-pill {
  background: var(--light);
  color: #364153;
  font-size: 14px;
  padding: 6px 12px;
}

.case-details {
  border-top: 1px solid var(--border);
  padding: 120px 0;
}

.case-details-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
}

.case-block h2,
.case-results h2 {
  font-size: 36px;
}

.case-block p {
  font-size: 20px;
  color: var(--muted);
}

.case-narrative {
  display: grid;
  gap: 48px;
}

.case-results-list {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

.case-result {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: grid;
  gap: 12px;
}

.case-result-value {
  font-size: 48px;
  color: var(--blue);
}

.case-result-label {
  font-size: 16px;
  color: var(--muted);
}

.case-gallery {
  border-top: 1px solid var(--border);
  padding: 120px 0;
}

.case-gallery-inner {
  display: grid;
  gap: 32px;
}

.case-gallery-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.case-gallery-item {
  overflow: hidden;
}

.case-gallery-item img {
  width: 100%;
  height: 408px;
  object-fit: cover;
}

.case-gallery-inner > .case-gallery-item:last-child img {
  height: 630px;
}

.work-load-more {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

/* Insights page */
.insights-hero {
  background: var(--blue);
  color: #ffffff;
  padding: 160px 0 60px;
  border-bottom: 1px solid var(--blue-dark);
  position: relative;
  overflow: hidden;
}

.insights-hero-inner {
  display: grid;
  gap: 80px;
}

.insights-hero-copy h1 {
  font-size: clamp(48px, 5vw, 72px);
}

.insights-hero-copy p {
  font-size: 24px;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.9);
}

.insights-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insights-hero .filter-btn {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
}

.insights-hero .filter-btn.is-active,
.insights-hero .filter-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.insights-rings {
  position: absolute;
  right: 80px;
  top: 230px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.18);
  animation: agency-pulse-outer 6.5s ease-in-out infinite;
}

.insights-rings::after {
  content: "";
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.16);
  animation: agency-pulse-inner 4.8s ease-in-out infinite;
}

.insights-grid {
  padding: 120px 0 80px;
}

.insights-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.insight-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-bottom: 30px;
  cursor: pointer;
}

.insight-card.is-hidden {
  display: none;
}

.insight-card-link.is-filter-hidden {
  display: none;
}

.insight-media {
  position: relative;
  height: 264px;
  overflow: hidden;
  background: var(--light);
}

.insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insight-media::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 24, 40, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.insight-card:hover .insight-media::after {
  opacity: 1;
}

.insight-card:hover .insight-media img {
  transform: scale(1.05);
}

.insight-meta {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #6a7282;
  letter-spacing: 0.3px;
}

.insight-body h3 {
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
  transition: color 0.2s ease;
}

.insight-card:hover .insight-body h3 {
  color: var(--blue);
}

.insight-footer {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #6a7282;
  margin-top: 12px;
}

.insights-load-more {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.insights-newsletter {
  background: #f9fafb;
  border-top: 1px solid var(--border);
  padding: 120px 0 140px;
}

.insights-newsletter-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.insights-newsletter-inner h2 {
  font-size: 48px;
}

.insights-newsletter-inner p {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 240px;
  height: 62px;
  padding: 0 24px;
  border: 1px solid #d1d5dc;
  font-size: 18px;
  font-family: inherit;
}

.newsletter-form .btn {
  height: 62px;
}

/* Insight detail page */
.insight-detail-hero {
  background: #ffffff;
  overflow: hidden;
}

.insight-detail-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 600px;
  max-height: 600px;
}

.insight-detail-left {
  background: var(--blue);
  color: #ffffff;
  display: flex;
  align-items: center;
}

.insight-detail-left-inner {
  padding: 96px 0;
}

.insight-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.insight-detail-left h1 {
  font-size: 48px;
  line-height: 1.25;
  max-width: 520px;
  margin-bottom: 24px;
}

.insight-pill {
  background: #ffffff;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
}

.insight-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.insight-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-author p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.insight-author span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.insight-detail-media {
  position: relative;
  height: 100%;
  overflow: hidden;
  max-height: 600px;
}

.insight-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 600px;
}

.insight-article {
  padding: 96px 0;
}

.insight-article-inner {
  max-width: 940px;
}

.insight-article-inner > p:first-of-type {
  font-size: 20px;
}

.insight-article h2 {
  font-size: 40px;
  margin-top: 40px;
}

.insight-article h3 {
  font-size: 30px;
  margin-top: 32px;
}

.insight-article h4 {
  font-size: 24px;
  margin-top: 24px;
}

.insight-article p,
.insight-article li {
  font-size: 18px;
  line-height: 1.75;
  color: #4a4a4a;
}

.insight-article ul {
  padding-left: 24px;
}

.insight-article a {
  color: var(--blue);
  text-decoration: underline;
}

.insight-share {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.insight-share-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.insight-share-inner h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

.insight-share-inner p {
  margin: 0;
  font-size: 14px;
  color: #6a7282;
}

.insight-share-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.insight-share-actions button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #d1d5dc;
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  padding: 0;
}

.insight-share-actions button img {
  width: 20px;
  height: 20px;
  display: block;
}

.insight-share-actions button:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.insight-share-actions button:hover img {
  filter: brightness(0) invert(1);
}

.insight-author-card {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.insight-author-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 940px;
  margin: 0 auto;
}

.insight-author-card .insight-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 500;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insight-author-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 500;
}

.insight-author-card span {
  display: block;
  color: var(--blue);
  font-size: 16px;
  margin-bottom: 16px;
}

.insight-author-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.insight-more {
  border-top: 1px solid var(--border);
  padding: 96px 0 120px;
}

.insight-more-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.insight-more-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.insight-more-header h2 {
  font-size: 40px;
  font-weight: 500;
  margin: 0;
}

.insight-more-header a {
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.insight-more-header a:hover {
  opacity: 0.8;
}

.insight-more-header a img {
  width: 20px;
  height: 20px;
  display: block;
}

.insight-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.insight-more-grid .insight-card {
  margin-bottom: 0;
}

.insight-more-grid .insight-body {
  padding: 0;
}

/* Contact page */
.contact-hero {
  padding-top: 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 696px;
}

.contact-hero-copy {
  background: var(--blue);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-hero-copy::before,
.contact-hero-copy::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.contact-hero-copy::before {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 555px;
}

.contact-hero-copy::after {
  width: 256px;
  height: 256px;
  right: -64px;
  top: 40px;
}

.contact-hero-inner {
  padding: 120px 32px;
  padding-left: max(32px, calc((100vw - 1320px) / 2));
  padding-right: max(32px, calc((100vw - 1320px) / 2));
}

.contact-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.contact-hero-copy h1 {
  font-size: 60px;
  margin-bottom: 16px;
}

.contact-hero-copy p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
}

.contact-hero-media {
  position: relative;
  overflow: hidden;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.contact-form {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.contact-form-main h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

.contact-form-fields {
  display: grid;
  gap: 32px;
}

.contact-form-fields .btn {
  width: 220px;
  justify-content: center;
  margin-top: 8px;
}


.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  border: none;
  border-bottom: 1px solid #d1d5dc;
  padding: 12px 0;
  font-size: 18px;
  font-family: inherit;
  background: transparent;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--blue);
}

.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-bottom-color: #e11d48;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-details {
  background: #f9fafb;
  padding: 48px;
}

.contact-details h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

.contact-detail-block {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-detail-block span {
  font-size: 14px;
  color: #6a7282;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.contact-detail-block a,
.contact-detail-block p {
  font-size: 18px;
  color: #0a0a0a;
  margin: 0;
}

.contact-detail-block .muted {
  color: var(--muted);
}

.contact-socials {
  display: flex;
  gap: 24px;
}

.contact-faq {
  background: #f9fafb;
  border-top: 1px solid var(--border);
  padding: 120px 0 160px;
}

.contact-faq-inner h2 {
  font-size: 36px;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 64px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 16px;
  color: var(--muted);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 20px;
  font-family: inherit;
  cursor: pointer;
  color: #0a0a0a;
}

.faq-icon {
  width: 10px;
  height: 10px;
  border-right: 1px solid #101828;
  border-bottom: 1px solid #101828;
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
  display: block;
}

.faq-item p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.faq-item.is-open p {
  max-height: 220px;
  opacity: 1;
  margin-top: 12px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(225deg);
  border-right-color: var(--blue);
  border-bottom-color: var(--blue);
}

@media (max-width: 1200px) {
  .stats-cards,
  .gallery-grid,
  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .agency-hero-grid,
  .agency-copy-grid,
  .cta-grid,
  .services-hero-grid,
  .services-body,
  .services-highlight-grid,
  .services-process-grid,
  .case-content,
  .case-hero-meta,
  .case-details-grid,
  .insight-detail-hero-grid,
  .contact-hero-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .services-images,
  .services-list,
  .case-metrics,
  .case-gallery-row {
    grid-template-columns: 1fr;
  }

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

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

  .field-row,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .agency-hero {
    padding: 160px 0 120px;
  }

  .stats-cards,
  .gallery-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 32px;
  }

  .stat-card-value {
    font-size: 48px;
  }

  .services-hero {
    padding: 140px 0 120px;
  }

  .services-hero-copy p {
    font-size: 20px;
  }

  .services-stat-value {
    font-size: 48px;
  }

  .services-detail,
  .services-highlight,
  .services-process {
    padding: 96px 0;
  }

  .services-body h2,
  .services-process-intro h2 {
    font-size: 36px;
  }

  .services-highlight-copy h2 {
    font-size: 44px;
  }

  .services-step h3 {
    font-size: 24px;
  }

  .services-highlight-media img,
  .services-image img {
    height: 300px;
  }

  .work-hero {
    padding: 120px 0 80px;
  }

  .work-hero-copy p {
    font-size: 20px;
  }

  .work-list {
    padding: 96px 0 120px;
  }

  .work-list-inner {
    gap: 120px;
  }

  .case-media {
    height: 360px;
  }

  .case-info h2 {
    font-size: 36px;
  }

  .case-hero {
    padding: 120px 0 64px;
  }

  .case-hero-title h1 {
    font-size: 42px;
  }

  .case-hero-media {
    height: 360px;
  }

  .case-details,
  .case-gallery {
    padding: 96px 0;
  }

  .case-result-value {
    font-size: 36px;
  }

  .case-gallery-item img {
    height: 300px;
  }

  .case-gallery-inner > .case-gallery-item:last-child img {
    height: 360px;
  }

  .insights-hero {
    padding: 140px 0 100px;
  }

  .insights-hero-copy p {
    font-size: 20px;
  }

  .insights-grid {
    padding: 96px 0 64px;
  }

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

  .insights-newsletter {
    padding: 96px 0 120px;
  }

  .insights-newsletter-inner h2 {
    font-size: 36px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .insight-detail-left-inner {
    padding: 80px 0;
  }

  .insight-detail-left h1 {
    font-size: 36px;
  }

  .insight-detail-media img {
    height: 360px;
  }

  .insight-share {
    padding: 32px 0;
  }

  .insight-share-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .insight-author-card {
    padding: 64px 0;
  }

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

  .insight-author-card .insight-author-avatar {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .insight-more {
    padding: 80px 0 96px;
  }

  .insight-more-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .insight-more-header h2 {
    font-size: 32px;
  }

  .insight-article h2 {
    font-size: 32px;
  }

  .insight-article h3 {
    font-size: 24px;
  }

  .insight-article h4 {
    font-size: 20px;
  }

  .insight-more-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding-top: 64px;
  }

  .contact-hero-inner {
    padding: 96px 0;
  }

  .contact-hero-copy h1 {
    font-size: 42px;
  }

  .contact-form,
  .contact-faq {
    padding: 96px 0;
  }

  .contact-details {
    padding: 32px;
  }
}

/* Terms page */
.terms-hero {
  background: var(--blue);
  color: #ffffff;
  padding: 120px 0 90px;
}

.terms-hero-inner h1 {
  font-size: 60px;
  margin-bottom: 12px;
}

.terms-hero-inner p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.terms-content {
  padding: 96px 0 140px;
}

.terms-content-inner {
  max-width: 940px;
}

.terms-content h2 {
  font-size: 40px;
  margin-top: 48px;
}

.terms-content p,
.terms-content li {
  font-size: 18px;
  line-height: 1.75;
  color: #4a4a4a;
}

.terms-content ul {
  padding-left: 24px;
}

@media (max-width: 768px) {
  .terms-hero {
    padding: 100px 0 72px;
  }

  .terms-hero-inner h1 {
    font-size: 42px;
  }

  .terms-content {
    padding: 80px 0 120px;
  }

  .terms-content h2 {
    font-size: 32px;
  }
}
