/* =================================================================
   GRI WORKSHOP — Frontend Design System
   Consolidated from griworkshop/*.html templates
   ================================================================= */

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

html {
  scroll-behavior: smooth;
}

:root {
  --ink: #0a0a08;
  --paper: #f2f0eb;
  --ash: #b8b5ae;
  --beam: #e8ff47;
  --beam-dim: rgba(232, 255, 71, 0.12);
  --beam-mid: rgba(232, 255, 71, 0.4);
  --white: #ffffff;
  --gap: clamp(48px, 8vw, 120px);
  --border: rgba(255, 255, 255, .07);
  --card-bg: rgba(255, 255, 255, .03);
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

/* ── CURSOR ── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--beam);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}

#cursor.big {
  width: 60px;
  height: 60px;
}

/* ── HEADER ── */
.gw-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: difference;
}

.gw-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.gw-logo span {
  color: var(--beam);
}

.gw-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.gw-nav > a {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color .25s;
}

.gw-nav > a:hover {
  color: var(--beam);
}

.gw-nav > a.active {
  color: var(--beam);
}

/* ── LANG SWITCHER ── */
.gw-lang { position: relative; }
.gw-lang__trigger {
  background: none;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--ash);
  padding: 8px 12px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, border-color .2s;
}
.gw-lang__trigger:hover { color: var(--beam); border-color: var(--beam-mid); }
.gw-lang__flag { font-size: 12px; line-height: 1; }
.gw-lang__caret { opacity: .6; transition: transform .25s; }
.gw-lang.open .gw-lang__caret { transform: rotate(180deg); }

.gw-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(10,10,8,.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 6px;
  display: none;
  z-index: 110;
}
.gw-lang.open .gw-lang__menu { display: block; }
.gw-lang__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ash);
  text-decoration: none;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.gw-lang__item:hover { color: var(--beam); background: rgba(255,255,255,.04); }
.gw-lang__item .gw-lang__flag { font-size: 14px; }

.gw-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  position: relative;
}

.gw-nav__badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--beam);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  border-radius: 999px;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  letter-spacing: 0;
}

/* mobile menu toggle */
.gw-burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: none;
}

.gw-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, 0.97);
  backdrop-filter: blur(20px);
  z-index: 200;
  padding: 100px 32px 32px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}

.gw-mobile-menu.open {
  display: flex;
}

.gw-mobile-menu a {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.gw-mobile-menu .gw-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  width: 40px;
  height: 40px;
  cursor: none;
}

/* ── PAGE / HERO ── */
.page-hero,
.svc-hero,
.project-hero,
.article-hero,
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 64px;
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  padding: 0 48px 80px;
}

.page-hero {
  min-height: 50vh;
  padding-top: 200px;
}

.svc-hero {
  min-height: 55vh;
}

.project-hero {
  min-height: 55vh;
}

.article-hero {
  min-height: 50vh;
}

#beam-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-label,
.page-hero-label {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 24px;
}

.hero-title,
.page-hero-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(52px, 9vw, 148px);
}

.page-hero-title {
  font-size: clamp(42px, 7vw, 120px);
}

.hero-title .accent,
.page-hero-title .accent {
  color: var(--beam);
}

.hero-title .outline,
.page-hero-title .outline {
  -webkit-text-stroke: 1.5px var(--ash);
  color: transparent;
}

.hero-sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 56px;
  position: relative;
  z-index: 2;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-desc {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ash);
}

.page-hero-desc {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ash);
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--beam);
  text-decoration: none;
  border: 1px solid var(--beam);
  padding: 18px 36px;
  border-radius: 0;
  transition: background .25s, color .25s;
}

.hero-cta:hover {
  background: var(--beam);
  color: var(--ink);
}

.hero-cta svg {
  transition: transform .25s;
}

.hero-cta:hover svg {
  transform: translate(4px, -4px);
}

/* breadcrumbs (hizmet/portfolyo/blog detay) */
.svc-breadcrumb,
.project-breadcrumb,
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  max-width: 100%;
  min-width: 0;
}

.svc-breadcrumb a,
.project-breadcrumb a,
.article-breadcrumb a {
  color: var(--ash);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-breadcrumb a:hover,
.project-breadcrumb a:hover,
.article-breadcrumb a:hover {
  color: var(--beam);
}

.svc-breadcrumb .sep,
.project-breadcrumb .sep,
.article-breadcrumb .sep {
  color: rgba(255, 255, 255, .2);
  flex-shrink: 0;
}

.svc-breadcrumb .current,
.project-breadcrumb .current,
.article-breadcrumb .current {
  color: var(--beam);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 0 1 auto;
  max-width: 60ch;
}

/* svc/project hero pieces */
.svc-hero-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--beam);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.svc-hero-title,
.project-hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.svc-hero-title .accent,
.project-hero-title .accent {
  color: var(--beam);
}

.svc-hero-desc {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ash);
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.project-hero-cat {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--beam);
  padding: 5px 14px;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.article-hero-cat {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--beam);
  padding: 5px 14px;
}

.article-hero-date {
  font-size: 12px;
  color: var(--ash);
  letter-spacing: .05em;
}

.article-hero-read {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .05em;
}

.article-hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--white);
  max-width: 820px;
  position: relative;
  z-index: 2;
}

/* ── COVER (svc / project / article) ── */
.svc-cover,
.project-cover,
.article-cover {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.svc-cover {
  aspect-ratio: 21/8;
}

.project-cover,
.article-cover {
  aspect-ratio: 21/9;
}

.svc-cover-inner,
.project-cover-inner,
.article-cover-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.svc-cover-shapes,
.project-cover-shapes,
.article-cover-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-cover-shapes::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(232, 255, 71, .08);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.project-cover-shapes::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--beam-dim);
  border-radius: 50%;
  bottom: 60px;
  left: 80px;
}

.article-cover-shapes::before {
  content: 'BLOG';
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255, 255, 255, .02);
  bottom: -40px;
  right: -20px;
  letter-spacing: -.03em;
}

.article-cover-shapes::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(232, 255, 71, .06);
  border-radius: 50%;
  top: -120px;
  left: -120px;
}

.svc-cover-shapes::before {
  content: '';
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, .02);
  bottom: -40px;
  right: -20px;
  letter-spacing: -.03em;
}

/* ── TICKER ── */
.ticker-wrap {
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(255, 255, 255, .02);
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.ticker-item::after {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--beam);
  border-radius: 50%;
}

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

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

/* ── SECTION BASE ── */
.gw-section,
section.gw {
  padding: var(--gap) 48px;
}

.section-label {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--beam);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--beam);
}

/* ── ABOUT (home) ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--border);
}

.about-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-top: 32px;
}

.about-right {
  padding-top: 72px;
}

.about-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ash);
  margin-bottom: 40px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.stat {
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--beam);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ── WORK GRID (home) ── */
.work-section {
  border-top: 1px solid var(--border);
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 16px;
  flex-wrap: wrap;
}

.work-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.work-link {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}

.work-link:hover {
  color: var(--beam);
  border-color: var(--beam);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.work-item {
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: none;
  text-decoration: none;
  display: block;
}

.work-item:nth-child(1) {
  grid-column: span 7;
  aspect-ratio: 16/10;
}

.work-item:nth-child(2) {
  grid-column: span 5;
  aspect-ratio: 3/4;
}

.work-item:nth-child(3) {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.work-item:nth-child(4) {
  grid-column: span 8;
  aspect-ratio: 16/9;
}

.work-item:nth-child(5) {
  grid-column: span 6;
  aspect-ratio: 4/3;
}

.work-item:nth-child(6) {
  grid-column: span 6;
  aspect-ratio: 4/3;
}

.work-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.work-item:hover .work-bg {
  transform: scale(1.06);
}

.bg1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.bg2 {
  background: linear-gradient(160deg, #1c0a00 0%, #4a1000 100%);
}

.bg3 {
  background: linear-gradient(145deg, #0d1b0d 0%, #1a3a1a 100%);
}

.bg4 {
  background: linear-gradient(120deg, #1a0a2e 0%, #2d1057 100%);
}

.bg5 {
  background: linear-gradient(150deg, #0a0a1a 0%, #1a1a3a 100%);
}

.bg6 {
  background: linear-gradient(130deg, #1a0a00 0%, #2a1500 100%);
}

.mock-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ms1::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(232, 255, 71, .15);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.ms1::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--beam-dim);
  border-radius: 50%;
  bottom: 40px;
  left: 60px;
}

.ms2::before {
  content: 'CAMPAIGN';
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  top: 20px;
  left: -10px;
  letter-spacing: -.02em;
}

.ms3::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--beam-mid), transparent);
  top: 50%;
}

.ms4::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 40px solid rgba(232, 255, 71, .06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ms5::before {
  content: 'GW';
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 140px;
  font-weight: 900;
  color: rgba(255, 255, 255, .03);
  bottom: -20px;
  right: 10px;
}

.ms6::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 80%;
  background: var(--beam-mid);
  top: 10%;
  left: 40px;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-cat {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--beam);
  display: block;
  margin-bottom: 6px;
}

.work-name {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.work-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(8px, -8px);
  transition: opacity .35s, transform .35s;
}

.work-item:hover .work-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── SERVICES (home) ── */
.services {
  border-top: 1px solid var(--border);
}

.services-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 64px;
  max-width: 600px;
  line-height: 1.1;
}

.services-heading .dim {
  color: var(--ash);
}

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s;
  cursor: none;
  position: relative;
}

.service-row:hover .svc-name {
  color: var(--beam);
}

.svc-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .1em;
}

.svc-name {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 400;
  color: var(--white);
  transition: color .25s;
}

.svc-desc {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.6;
  max-width: 300px;
}

.svc-tag {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--beam);
  border: 1px solid var(--beam-dim);
  padding: 6px 14px;
  white-space: nowrap;
}

/* ── SERVICES GRID (services list page) ── */
.services-section {
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.service-card {
  background: var(--ink);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: none;
  transition: background .3s;
}

.service-card:hover {
  background: rgba(255, 255, 255, .025);
}

.service-card::before {
  content: attr(data-num);
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 140px;
  font-weight: 900;
  color: rgba(255, 255, 255, .02);
  top: -20px;
  right: -10px;
  line-height: 1;
  transition: color .3s;
}

.service-card:hover::before {
  color: rgba(232, 255, 71, .04);
}

.svc-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color .3s, background .3s;
}

.service-card:hover .svc-icon {
  border-color: var(--beam-mid);
  background: var(--beam-dim);
}

.svc-icon svg {
  opacity: .5;
  transition: opacity .3s;
}

.service-card:hover .svc-icon svg {
  opacity: 1;
}

.service-card .svc-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--beam);
  margin-bottom: 16px;
}

.service-card .svc-name {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  transition: color .25s;
}

.service-card:hover .svc-name {
  color: var(--beam);
}

.service-card .svc-desc {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 28px;
  max-width: none;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.service-card .svc-tag {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid var(--border);
  padding: 4px 10px;
  background: none;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--beam);
  transition: gap .25s;
  text-decoration: none;
}

.service-card:hover .svc-link {
  gap: 14px;
}

/* ── WHY US ── */
.why-section {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-top: 32px;
}

.why-heading .dim {
  color: var(--ash);
}

.why-right {
  padding-top: 72px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.why-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--beam);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.why-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-body {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.7;
}

/* ── PROCESS ── */
.process,
.process-section {
  border-top: 1px solid var(--border);
}

.process {
  background: rgba(255, 255, 255, .015);
}

.process-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 72px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.process-step {
  background: var(--ink);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: attr(data-n);
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 96px;
  font-weight: 900;
  color: rgba(255, 255, 255, .025);
  top: -10px;
  right: -10px;
  line-height: 1;
}

.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--beam);
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.8;
}

/* timeline (svc detay + about) */
.process-timeline,
.timeline-track {
  position: relative;
  padding-left: 80px;
}

.process-timeline::before,
.timeline-track::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .08);
}

.pt-item,
.tl-item {
  position: relative;
  padding-bottom: 56px;
}

.pt-item:last-child,
.tl-item:last-child {
  padding-bottom: 0;
}

.pt-dot,
.tl-dot {
  position: absolute;
  left: -54px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--beam);
  border-radius: 50%;
}

.pt-dot::before,
.tl-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--beam-dim);
  border-radius: 50%;
}

.pt-num,
.tl-year {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--beam);
  margin-bottom: 8px;
}

.tl-year {
  font-size: 12px;
  letter-spacing: .1em;
}

.pt-title,
.tl-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tl-title {
  font-weight: 400;
}

.pt-desc,
.tl-desc {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.8;
  max-width: 540px;
}

.pt-duration {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--beam);
  border: 1px solid var(--beam-dim);
  padding: 4px 12px;
  margin-top: 12px;
}

/* ── COMPARISON ── */
.compare-section {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}

.compare-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 64px;
}

.compare-heading .dim {
  color: var(--ash);
}

.compare-table {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.ct-head {
  background: rgba(255, 255, 255, .04);
  padding: 20px 24px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
}

.ct-head.beam {
  color: var(--beam);
}

.ct-cell {
  background: var(--ink);
  padding: 18px 24px;
  font-size: 13px;
  color: var(--ash);
  display: flex;
  align-items: center;
}

.ct-cell.feature {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
}

.ct-check {
  color: var(--beam);
  font-size: 16px;
}

.ct-x {
  color: rgba(255, 255, 255, .15);
  font-size: 14px;
}

/* ── CLIENTS ── */
.clients {
  border-top: 1px solid var(--border);
}

.clients-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 300;
  color: var(--ash);
  margin-bottom: 56px;
}

.clients-heading strong {
  color: var(--white);
  font-weight: 900;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.client-logo {
  background: var(--ink);
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .2);
  text-transform: uppercase;
  transition: color .25s, background .25s;
}

.client-logo:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .04);
}

/* ── CTA ── */
.cta-section {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--beam-dim) 0%, transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--beam);
  margin-bottom: 32px;
}

.cta-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 7vw, 108px);
  font-weight: 900;
  color: var(--white);
  line-height: .95;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.cta-heading .line2 {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--beam);
  color: var(--ink);
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 22px 52px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  z-index: 1;
  border: none;
  cursor: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(232, 255, 71, .25);
}

.cta-mail {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 400;
  color: var(--beam);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: opacity .2s;
}

.cta-mail:hover {
  opacity: .7;
}

/* ── FOOTER ── */
.gw-footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gw-footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--white);
  text-decoration: none;
}

.gw-footer-logo span {
  color: var(--beam);
}

.gw-footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  letter-spacing: .08em;
}

.gw-footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.gw-footer-links a {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color .2s;
}

.gw-footer-links a:hover {
  color: var(--beam);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PORTFOLIO ── */
.filter-section {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash);
  background: none;
  border: 1px solid var(--border);
  padding: 10px 22px;
  cursor: none;
  transition: color .2s, border-color .2s, background .2s;
  text-decoration: none;
}

.filter-btn:hover {
  color: var(--beam);
  border-color: var(--beam-mid);
}

.filter-btn.active {
  background: var(--beam);
  color: var(--ink);
  border-color: var(--beam);
  font-weight: 700;
}

.filter-count {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, .2);
  margin-left: auto;
  letter-spacing: .05em;
}

.portfolio-section {
  border-top: 1px solid var(--border);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  text-decoration: none;
  display: block;
  background: #111;
}

.portfolio-item:nth-child(9n+1) {
  grid-column: span 7;
  aspect-ratio: 16/10;
}

.portfolio-item:nth-child(9n+2) {
  grid-column: span 5;
  aspect-ratio: 3/4;
}

.portfolio-item:nth-child(9n+3) {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.portfolio-item:nth-child(9n+4) {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.portfolio-item:nth-child(9n+5) {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.portfolio-item:nth-child(9n+6) {
  grid-column: span 8;
  aspect-ratio: 16/9;
}

.portfolio-item:nth-child(9n+7) {
  grid-column: span 4;
  aspect-ratio: 3/4;
}

.portfolio-item:nth-child(9n+8) {
  grid-column: span 5;
  aspect-ratio: 3/4;
}

.portfolio-item:nth-child(9n+9) {
  grid-column: span 7;
  aspect-ratio: 16/10;
}

.portfolio-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.portfolio-item:hover .portfolio-bg {
  transform: scale(1.06);
}

.pbg1,
.cbg1,
.gbg1,
.ptb1,
.rtb1,
.ca1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.pbg2,
.cbg2,
.ptb2,
.rtb2 {
  background: linear-gradient(160deg, #1c0a00 0%, #4a1000 100%);
}

.pbg3,
.cbg3,
.ptb3,
.rtb3 {
  background: linear-gradient(145deg, #0d1b0d 0%, #1a3a1a 100%);
}

.pbg4,
.cbg4,
.ptb4,
.ca3 {
  background: linear-gradient(120deg, #1a0a2e 0%, #2d1057 100%);
}

.pbg5 {
  background: linear-gradient(150deg, #0a0a1a 0%, #1a1a3a 100%);
}

.pbg6 {
  background: linear-gradient(130deg, #1a0a00 0%, #2a1500 100%);
}

.pbg7 {
  background: linear-gradient(140deg, #0a1a1a 0%, #0a2a2a 100%);
}

.pbg8 {
  background: linear-gradient(155deg, #1a1a0a 0%, #2a2a0a 100%);
}

.pbg9 {
  background: linear-gradient(125deg, #0a0a1a 0%, #14142e 100%);
}

.cbg5 {
  background: linear-gradient(130deg, #1a0a00 0%, #2a1500 100%);
}

.cbg6 {
  background: linear-gradient(140deg, #0a1a1a 0%, #0a2a2a 100%);
}

.gbg2 {
  background: linear-gradient(160deg, #0f3460 0%, #16213e 100%);
}

.gbg3 {
  background: linear-gradient(145deg, #16213e 0%, #1a1a2e 100%);
}

.gbg4 {
  background: linear-gradient(120deg, #0f3460 0%, #1a2a4e 100%);
}

.gbg5 {
  background: linear-gradient(150deg, #1a1a2e 0%, #0f2040 100%);
}

.gbg6 {
  background: linear-gradient(135deg, #0f2040 0%, #16213e 50%, #0f3460 100%);
}

.ca2 {
  background: linear-gradient(135deg, #0d1b0d, #1a3a1a);
}

.tp1 {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.tp2 {
  background: linear-gradient(145deg, #0d1b0d 0%, #1a3a1a 100%);
}

.tp3 {
  background: linear-gradient(160deg, #1c0a00 0%, #4a1000 100%);
}

.tp4 {
  background: linear-gradient(120deg, #1a0a2e 0%, #2d1057 100%);
}

.pshape,
.card-shapes,
.case-shape,
.gallery-shape {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ps1::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(232, 255, 71, .1);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.ps1::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--beam-dim);
  border-radius: 50%;
  bottom: 50px;
  left: 60px;
}

.ps2::before {
  content: 'PROJECT';
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, .03);
  top: 30px;
  left: -10px;
  letter-spacing: -.02em;
}

.ps3::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beam-mid), transparent);
  top: 50%;
}

.ps3::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--beam-mid), transparent);
  left: 50%;
}

.ps4::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border: 30px solid rgba(232, 255, 71, .05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ps5::before {
  content: 'GW';
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 140px;
  font-weight: 900;
  color: rgba(255, 255, 255, .025);
  bottom: -20px;
  right: 10px;
}

.ps6::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 70%;
  background: var(--beam-mid);
  top: 15%;
  left: 50px;
}

.ps6::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 50%;
  background: rgba(232, 255, 71, .15);
  top: 25%;
  left: 90px;
}

.ps7::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(232, 255, 71, .08);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

.ps8::before {
  content: 'BRAND';
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 96px;
  font-weight: 900;
  color: rgba(255, 255, 255, .025);
  bottom: 10px;
  right: -10px;
}

.ps9::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border: 40px solid rgba(232, 255, 71, .04);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .2) 40%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--beam);
  margin-bottom: 8px;
}

.portfolio-name {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.portfolio-desc {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.6;
  max-width: 400px;
}

.portfolio-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(8px, -8px);
  transition: opacity .35s, transform .35s;
}

.portfolio-item:hover .portfolio-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── STATS BAR ── */
.stats-bar {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.stat-item {
  background: var(--ink);
  padding: 36px 32px;
  text-align: center;
}

.stats-section {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.stat-card {
  background: var(--ink);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: attr(data-symbol);
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, .02);
  top: -20px;
  right: -10px;
  line-height: 1;
}

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

.stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.6;
  margin-top: 12px;
}

/* ── PROJECT INFO + META + CASE STUDIES + GALLERY (project detay) ── */
.project-info,
.overview {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.project-info-heading,
.overview-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-top: 32px;
}

.project-info-heading .dim,
.overview-heading .dim {
  color: var(--ash);
}

.project-info-right,
.overview-right {
  padding-top: 72px;
}

.project-info-body,
.overview-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ash);
  margin-bottom: 28px;
}

.project-info-body strong,
.overview-body strong {
  color: var(--white);
  font-weight: 400;
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}

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

.meta-label {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--beam);
  margin-bottom: 6px;
}

.meta-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
}

.cs-section,
.scope-section {
  border-top: 1px solid var(--border);
}

.scope-section {
  background: rgba(255, 255, 255, .015);
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.cs-card {
  background: var(--ink);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.cs-card::before {
  content: attr(data-n);
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 140px;
  font-weight: 900;
  color: rgba(255, 255, 255, .02);
  top: -20px;
  right: -10px;
  line-height: 1;
}

.cs-tag {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--beam);
  margin-bottom: 20px;
}

.cs-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cs-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ash);
}

.scope-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 64px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.scope-card {
  background: var(--ink);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.scope-card::before {
  content: attr(data-n);
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 96px;
  font-weight: 900;
  color: rgba(255, 255, 255, .02);
  top: -10px;
  right: -10px;
  line-height: 1;
}

.scope-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--beam);
  margin-bottom: 16px;
}

.scope-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.scope-desc {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.8;
}

.scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.scope-tag {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid var(--border);
  padding: 4px 10px;
}

.deliverables-section {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}

.del-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 64px;
}

.del-heading .dim {
  color: var(--ash);
}

.del-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.del-item {
  background: var(--ink);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.del-check {
  width: 24px;
  height: 24px;
  border: 1px solid var(--beam-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--beam);
  font-size: 13px;
}

.del-text {
  font-size: 14px;
  color: var(--white);
}

.gallery-section {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.gallery-item:nth-child(6n+1) {
  grid-column: span 8;
  aspect-ratio: 16/9;
}

.gallery-item:nth-child(6n+2) {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.gallery-item:nth-child(6n+3) {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.gallery-item:nth-child(6n+4) {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.gallery-item:nth-child(6n+5) {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

.gallery-item:nth-child(6n+0) {
  grid-column: span 12;
  aspect-ratio: 21/9;
}

.gallery-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.gallery-item:hover .gallery-bg {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 100%);
  font-size: 11px;
  letter-spacing: .03em;
  color: var(--ash);
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.results-section {
  border-top: 1px solid var(--border);
}

.results-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 64px;
}

.results-heading .dim {
  color: var(--ash);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  margin-bottom: 48px;
}

.result-card {
  background: var(--ink);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.result-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--beam);
  line-height: 1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}

.result-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  line-height: 1.5;
}

.testimonial {
  border: 1px solid var(--border);
  padding: 40px 48px;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(232, 255, 71, .08);
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  max-width: 640px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
}

.testimonial-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-role {
  font-size: 11px;
  color: var(--ash);
}

.project-nav,
.post-nav {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.post-nav {
  padding: 0 48px;
}

.project-nav>*,
.post-nav>* {
  background: var(--ink);
}

.project-nav-item,
.post-nav-item {
  padding: 48px;
  text-decoration: none;
  cursor: none;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}

.post-nav-item {
  padding: 40px 32px;
}

.project-nav-item:hover,
.post-nav-item:hover {
  background: rgba(255, 255, 255, .02);
}

.project-nav-item:hover .pnav-title,
.post-nav-item:hover .post-nav-title {
  color: var(--beam);
}

.pnav-dir,
.post-nav-dir {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--beam);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pnav-cat {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 6px;
}

.pnav-title,
.post-nav-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color .25s;
}

.post-nav-title {
  font-size: 15px;
  line-height: 1.3;
}

.project-nav-item.next,
.post-nav-item.next {
  text-align: right;
}

.project-nav-item.next .pnav-dir,
.post-nav-item.next .post-nav-dir {
  justify-content: flex-end;
}

/* ── FAQ ── */
.faq-section {
  border-top: 1px solid var(--border);
}

.faq-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 64px;
}

.faq-heading .dim {
  color: var(--ash);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--white);
  text-align: left;
  cursor: none;
  transition: color .25s;
}

.faq-question:hover {
  color: var(--beam);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .25s, transform .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--beam-mid);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16, 1, .3, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 0 28px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ash);
  max-width: 700px;
}

/* ── OTHER SERVICES ── */
.other-section {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}

.other-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 300;
  color: var(--ash);
  margin-bottom: 48px;
}

.other-heading strong {
  color: var(--white);
  font-weight: 900;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.other-card {
  background: var(--ink);
  padding: 32px 24px;
  text-decoration: none;
  cursor: none;
  transition: background .25s;
}

.other-card:hover {
  background: rgba(255, 255, 255, .03);
}

.other-card:hover .other-name {
  color: var(--beam);
}

.other-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .2);
  margin-bottom: 12px;
}

.other-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  transition: color .25s;
  line-height: 1.3;
}

.other-desc {
  font-size: 12px;
  color: var(--ash);
  line-height: 1.6;
}

/* ── BLOG ── */
.blog-section {
  border-top: 1px solid var(--border);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.featured-post {
  position: relative;
  overflow: hidden;
  cursor: none;
  margin-bottom: 56px;
  border: 1px solid var(--border);
  transition: border-color .3s;
  text-decoration: none;
  display: block;
}

.featured-post:hover {
  border-color: rgba(232, 255, 71, .2);
}

.featured-img {
  aspect-ratio: 21/9;
  position: relative;
  overflow: hidden;
}

.featured-img-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.featured-post:hover .featured-img-inner {
  transform: scale(1.04);
}

.featured-img-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--beam);
  padding: 6px 14px;
  z-index: 2;
}

.featured-img-shape {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.featured-img-shape::before {
  content: 'BLOG';
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 160px;
  font-weight: 900;
  color: rgba(255, 255, 255, .03);
  bottom: -30px;
  right: -10px;
  letter-spacing: -.02em;
}

.featured-img-shape::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(232, 255, 71, .08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.featured-body {
  padding: 32px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.featured-cat {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--beam);
}

.featured-date {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .05em;
}

.featured-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  transition: color .25s;
}

.featured-post:hover .featured-title {
  color: var(--beam);
}

.featured-excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ash);
  max-width: 640px;
}

.featured-read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--beam);
  text-decoration: none;
  margin-top: 24px;
  transition: gap .25s;
}

.featured-read:hover {
  gap: 16px;
}

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

.blog-card {
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: none;
  transition: border-color .3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: transparent;
}

.blog-card:hover {
  border-color: rgba(232, 255, 71, .2);
}

.blog-card-img {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.blog-card-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

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

.cs1::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(232, 255, 71, .1);
  border-radius: 50%;
  top: -30px;
  right: -30px;
}

.cs2::before {
  content: 'GW';
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, .03);
  bottom: -10px;
  right: 10px;
}

.cs3::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beam-mid), transparent);
  top: 50%;
}

.cs4::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 20px solid rgba(232, 255, 71, .05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.cs5::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  background: var(--beam-mid);
  top: 20%;
  left: 30px;
}

.cs6::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(232, 255, 71, .04);
  border-radius: 50%;
  bottom: 20px;
  left: 20px;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-card-cat {
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--beam);
}

.blog-card-date {
  font-size: 10px;
  color: rgba(255, 255, 255, .25);
}

.blog-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color .25s;
}

.blog-card:hover .blog-card-title {
  color: var(--beam);
}

.blog-card-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ash);
  flex: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--beam);
  text-decoration: none;
  margin-top: 20px;
  transition: gap .25s;
}

.blog-card-link:hover {
  gap: 14px;
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.page-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--ash);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s, background .2s;
}

.page-btn:hover {
  color: var(--beam);
  border-color: var(--beam-dim);
}

.page-btn.active {
  background: var(--beam);
  color: var(--ink);
  border-color: var(--beam);
  font-weight: 700;
}

.page-btn.arrow {
  font-size: 14px;
}

.page-btn.disabled {
  opacity: .35;
  pointer-events: none;
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-search {
  position: relative;
  margin-bottom: 40px;
}

.sidebar-search input {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 14px 18px 14px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color .25s;
}

.sidebar-search input::placeholder {
  color: rgba(255, 255, 255, .25);
}

.sidebar-search input:focus {
  border-color: var(--beam-mid);
}

.sidebar-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .3;
}

.sidebar-block {
  margin-bottom: 40px;
}

.sidebar-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  cursor: none;
  text-decoration: none;
  transition: padding-left .2s;
}

.cat-item:hover {
  padding-left: 8px;
}

.cat-item:hover .cat-name {
  color: var(--beam);
}

.cat-name {
  font-size: 13px;
  color: var(--ash);
  transition: color .2s;
}

.cat-count {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
  padding: 3px 10px;
  letter-spacing: .05em;
}

.popular-item,
.related-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  cursor: none;
  text-decoration: none;
}

.popular-item:hover .popular-title,
.related-item:hover .related-title {
  color: var(--beam);
}

.popular-thumb,
.related-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.popular-thumb-inner,
.related-thumb-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.popular-info,
.related-info {
  flex: 1;
  min-width: 0;
}

.popular-title,
.related-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 6px;
  transition: color .2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-date,
.related-date {
  font-size: 10px;
  color: rgba(255, 255, 255, .25);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.article-tag {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid var(--border);
  padding: 6px 14px;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
  cursor: none;
}

.tag:hover,
.article-tag:hover {
  color: var(--beam);
  border-color: var(--beam-mid);
  background: var(--beam-dim);
}

.newsletter-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--beam-dim) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.newsletter-title,
.newsletter-title-box {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}

.newsletter-desc {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.newsletter-form input[type="email"] {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color .25s;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, .2);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--beam-mid);
}

.newsletter-btn {
  background: var(--beam);
  color: var(--ink);
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  cursor: none;
  transition: transform .2s, box-shadow .2s;
}

.newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(232, 255, 71, .2);
}

/* ── ARTICLE ── */
.article-section {
  padding: var(--gap) 48px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.article-content {
  max-width: 720px;
}

.author-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.author-avatar-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
}

.author-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.author-role {
  font-size: 11px;
  color: var(--ash);
  letter-spacing: .05em;
}

.prose p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ash);
  margin-bottom: 28px;
}

.prose p strong {
  color: var(--white);
  font-weight: 400;
}

.prose h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-top: 56px;
  margin-bottom: 24px;
}

.prose h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 16px;
}

.prose ul,
.prose ol {
  margin-bottom: 28px;
  padding-left: 24px;
}

.prose li {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ash);
  margin-bottom: 8px;
}

.prose li::marker {
  color: var(--beam);
}

.prose blockquote {
  border-left: 3px solid var(--beam);
  padding: 24px 28px;
  margin: 40px 0;
  background: var(--beam-dim);
  position: relative;
}

.prose blockquote p {
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 0;
}

.prose blockquote cite {
  display: block;
  font-size: 12px;
  font-style: normal;
  color: var(--ash);
  margin-top: 12px;
  letter-spacing: .05em;
}

.prose img {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border: 1px solid var(--border);
}

.prose a {
  color: var(--beam);
  text-decoration: underline;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.share-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
}

.share-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  cursor: none;
}

.share-link:hover {
  border-color: var(--beam-mid);
  background: var(--beam-dim);
}

.share-link svg {
  opacity: .5;
  transition: opacity .2s;
}

.share-link:hover svg {
  opacity: 1;
}

/* TOC */
.toc-block {
  margin-bottom: 40px;
}

.toc-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.toc-item {
  display: block;
  padding: 10px 0 10px 16px;
  font-size: 13px;
  color: var(--ash);
  text-decoration: none;
  border-left: 1px solid var(--border);
  transition: color .2s, border-color .2s;
  cursor: none;
}

.toc-item:hover,
.toc-item.active {
  color: var(--beam);
  border-left-color: var(--beam);
}

/* Comments */
.comments-section {
  border-top: 1px solid var(--border);
  padding: var(--gap) 48px;
  max-width: 800px;
}

.comments-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
}

.comments-heading .count {
  color: var(--ash);
  font-weight: 300;
}

.comment {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.comment-avatar-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
}

.comment-author {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.comment-date {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  margin-left: auto;
}

.comment-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ash);
}

.comment-reply-btn {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash);
  background: none;
  border: 1px solid var(--border);
  padding: 5px 14px;
  margin-top: 12px;
  cursor: none;
  transition: color .2s, border-color .2s;
}

.comment-reply-btn:hover {
  color: var(--beam);
  border-color: var(--beam-mid);
}

/* Forms */
.comment-form,
.contact-form {
  margin-top: 40px;
}

.comment-form-title,
.form-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.form-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.form-desc {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color .25s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, .2);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--beam-mid);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  margin-bottom: 16px;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 16px 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23b8b5ae' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: none;
}

.form-select option {
  background: var(--ink);
  color: var(--white);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--beam);
  color: var(--ink);
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: none;
  transition: transform .2s, box-shadow .2s;
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(232, 255, 71, .25);
}

.form-submit svg {
  transition: transform .25s;
}

.form-submit:hover svg {
  transform: translate(4px, -4px);
}

/* Inline highlight box (article body) */
.highlight-box {
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--beam);
}

.highlight-box-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--beam);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.highlight-box p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ash);
  margin-bottom: 0;
}

/* ── CONTACT ── */
.contact-section {
  border-top: 1px solid var(--border);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 48px;
}

.contact-heading .dim {
  color: var(--ash);
}

.channel {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .25s, background .25s;
}

.channel:hover .channel-icon {
  border-color: var(--beam-mid);
  background: var(--beam-dim);
}

.channel:hover .channel-icon svg {
  opacity: 1;
}

.channel-icon svg {
  opacity: .4;
  transition: opacity .25s;
}

.channel-label {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--beam);
  margin-bottom: 4px;
}

.channel-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

.channel-value a {
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

.channel-value a:hover {
  color: var(--beam);
}

.channel-note {
  font-size: 12px;
  color: var(--ash);
  margin-top: 4px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.social-link {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  cursor: none;
}

.social-link:hover {
  border-color: var(--beam-mid);
  background: var(--beam-dim);
}

.social-link svg {
  opacity: .4;
  transition: opacity .2s;
}

.social-link:hover svg {
  opacity: 1;
}

.social-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 14px;
  margin-top: 40px;
  display: block;
}

.contact-form-wrap {
  padding-top: 72px;
}

.budget-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.budget-option {
  position: relative;
}

.budget-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.budget-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--ash);
  border: 1px solid var(--border);
  cursor: none;
  transition: color .2s, border-color .2s, background .2s;
  text-align: center;
}

.budget-option input:checked+.budget-label {
  color: var(--ink);
  background: var(--beam);
  border-color: var(--beam);
  font-weight: 700;
}

.budget-label:hover {
  color: var(--beam);
  border-color: var(--beam-mid);
}

.map-section {
  border-top: 1px solid var(--border);
  padding: 0;
}

.map-container {
  width: 100%;
  aspect-ratio: 21/7;
  position: relative;
  overflow: hidden;
  background: #111;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a12 0%, #12121e 50%, #0a1020 100%);
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.map-grid-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--beam);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.map-dot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--beam-mid);
  border-radius: 50%;
  animation: map-pulse 2s ease-out infinite;
}

.map-dot::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid var(--beam-dim);
  border-radius: 50%;
  animation: map-pulse 2s ease-out infinite .5s;
}

@keyframes map-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.map-label {
  position: absolute;
  top: 50%;
  left: calc(50% + 24px);
  transform: translateY(-50%);
  z-index: 3;
}

.map-label-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.map-label-address {
  font-size: 12px;
  color: var(--ash);
  line-height: 1.6;
}

.info-section {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.info-card {
  background: var(--ink);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: attr(data-icon);
  position: absolute;
  font-size: 80px;
  top: -10px;
  right: -5px;
  line-height: 1;
  opacity: .04;
}

.info-card-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--beam);
  margin-bottom: 16px;
}

.info-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.info-card-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ash);
}

/* ── ABOUT EXTRAS (story / values / team / timeline) ── */
.story {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-top: 32px;
}

.story-heading .dim {
  color: var(--ash);
}

.story-right {
  padding-top: 72px;
}

.story-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ash);
  margin-bottom: 32px;
}

.story-body strong {
  color: var(--white);
  font-weight: 400;
}

.story-year-tag {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--beam);
  border: 1px solid var(--beam-dim);
  padding: 6px 14px;
  margin-top: 16px;
}

.values {
  border-top: 1px solid var(--border);
}

.values-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 64px;
  max-width: 600px;
  line-height: 1.1;
}

.values-heading .dim {
  color: var(--ash);
}

.value-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  cursor: none;
}

.value-row:hover .val-name {
  color: var(--beam);
}

.val-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
  letter-spacing: .1em;
}

.val-name {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 400;
  color: var(--white);
  transition: color .25s;
}

.val-desc {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.6;
  max-width: 340px;
}

.val-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.val-icon svg {
  opacity: .4;
}

.value-row:hover .val-icon svg {
  opacity: 1;
}

.value-row:hover .val-icon {
  border-color: var(--beam-mid);
}

.team {
  border-top: 1px solid var(--border);
}

.team-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 64px;
  line-height: 1.1;
}

.team-heading .dim {
  color: var(--ash);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.team-card {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
  cursor: none;
}

.team-photo {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.team-photo-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.team-card:hover .team-photo-inner {
  transform: scale(1.05);
}

.team-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, .06);
  letter-spacing: .05em;
}

.team-info {
  padding: 24px;
}

.team-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.team-role {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 12px;
}

.team-social {
  display: flex;
  gap: 12px;
}

.team-social a {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  text-decoration: none;
  transition: color .2s;
}

.team-social a:hover {
  color: var(--beam);
}

.timeline {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .015);
}

.timeline-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 72px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .gw-nav {
    gap: 22px;
  }

  .blog-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sidebar {
    position: static;
  }

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

  .why-right {
    padding-top: 0;
  }

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

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

  .compare-table {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .portfolio-item:nth-child(9n+1),
  .portfolio-item:nth-child(9n+6),
  .portfolio-item:nth-child(9n+9) {
    grid-column: span 6;
  }

  .portfolio-item:nth-child(9n+2),
  .portfolio-item:nth-child(9n+3),
  .portfolio-item:nth-child(9n+4),
  .portfolio-item:nth-child(9n+5),
  .portfolio-item:nth-child(9n+7),
  .portfolio-item:nth-child(9n+8) {
    grid-column: span 3;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-item:nth-child(6n+1),
  .gallery-item:nth-child(6n+0) {
    grid-column: span 6;
  }

  .gallery-item:nth-child(6n+2),
  .gallery-item:nth-child(6n+3),
  .gallery-item:nth-child(6n+4),
  .gallery-item:nth-child(6n+5) {
    grid-column: span 3;
  }

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

  .project-info,
  .overview {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-info-right,
  .overview-right {
    padding-top: 0;
  }

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

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

  .contact-form-wrap {
    padding-top: 0;
  }

  .work-item:nth-child(1) {
    grid-column: span 12;
  }

  .work-item:nth-child(2),
  .work-item:nth-child(3),
  .work-item:nth-child(4),
  .work-item:nth-child(5),
  .work-item:nth-child(6) {
    grid-column: span 6;
  }

  .about,
  .story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-right,
  .story-right {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  #cursor {
    display: none;
  }

  * {
    cursor: auto !important;
  }

  .gw-header {
    padding: 20px 24px;
  }

  .gw-nav {
    display: none;
  }

  .gw-burger {
    display: inline-flex;
  }

  .gw-section,
  section.gw,
  .article-section,
  .comments-section {
    padding: var(--gap) 24px;
  }

  .hero,
  .page-hero,
  .svc-hero,
  .project-hero,
  .article-hero {
    padding: 0 24px 48px;
  }

  .work-item:nth-child(n) {
    grid-column: span 12;
    aspect-ratio: 16/10;
  }

  .services-grid,
  .scope-grid,
  .info-grid,
  .compare-table,
  .del-grid,
  .blog-grid,
  .portfolio-grid,
  .gallery-grid,
  .results-grid,
  .stats-grid,
  .stats-row,
  .process-steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .portfolio-item:nth-child(n) {
    grid-column: span 1;
    aspect-ratio: 16/10;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    aspect-ratio: 16/10;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .budget-options {
    grid-template-columns: 1fr 1fr;
  }

  .ct-head:first-child {
    display: none;
  }

  .ct-cell.feature {
    border-top: 1px solid var(--border);
    padding-top: 14px;
    font-size: 11px;
  }

  .process-timeline,
  .timeline-track {
    padding-left: 48px;
  }

  .process-timeline::before,
  .timeline-track::before {
    left: 14px;
  }

  .pt-dot,
  .tl-dot {
    left: -38px;
  }

  .project-nav {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .project-nav-item,
  .post-nav-item {
    padding: 32px 24px;
  }

  .project-nav-item.next,
  .post-nav-item.next {
    text-align: left;
  }

  .project-nav-item.next .pnav-dir,
  .post-nav-item.next .post-nav-dir {
    justify-content: flex-start;
  }

  .post-nav {
    padding: 0 24px;
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 28px 24px;
  }

  .cta-section {
    padding: 80px 24px;
  }

  .gw-footer {
    padding: 32px 24px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .filter-section {
    padding: 24px;
  }

  .map-container {
    aspect-ratio: 16/9;
  }

  .map-label {
    left: calc(50% + 18px);
  }

  .map-label-name {
    font-size: 12px;
  }

  .featured-body {
    padding: 24px;
  }

  .value-row {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .val-desc,
  .val-icon {
    display: none;
  }
}