/* ================================================================
   ILLUMOS PIXELS — MAIN CSS
   Version: 1.0.0
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500;600;700;800;900&display=swap');
/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
p {
  font-family: 'Open Sans', sans-serif;
}
:root {
  --yellow:       #F5C800;
  --yellow-dark:  #D4AB00;
  --black:        #0A0A0A;
  --black-soft:   #171717;
  --gray-dark:    #171717;
  --gray-mid:     #2C2C2C;
  --gray-line:    #E0E0E0;
  --gray-light:   #F2F2F2;
  --white:        #FFFFFF;
  --text-muted:   #888888;
  --text-body:    #444444;

  --font-display:    'Open Sans', sans-serif;
  --font-condensed:  'Open Sans', sans-serif;
  --font-body:       'Open Sans', sans-serif;

  --nav-h:      76px;
  --max-w:      1690px;
  --section-px: 60px;
  --section-py: 100px;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.25s var(--ease-out);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:not(.home) .nav-menu {
    display: none !important;
}
/* Hide reCAPTCHA badge globally */

img { max-width: 100%; height: auto; display: block; }
img.custom-logo {
  max-width: 218px;
  max-height: 72px;
  object-fit: contain;
}
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

.container { margin: 0 auto; padding: 0 var(--section-px); width: 100%; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.section-tag--dark { color: var(--black); }

.section-title {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.section-title--dark { color: var(--black); }

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.section-desc--dark { color: var(--text-body); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn--primary  { background: var(--black); color: var(--white); border-color: var(--black); }
.header-btn {
  width: 146px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--primary:hover { background: #f5c800; color: var(--black); border-color: var(--yellow); }
.btn--outline  { background: transparent; color: var(--black); }
.btn--outline:hover { background: var(--yellow); color: var(--black); }
.btn--yellow   { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn--yellow:hover {
    background: #ffffff;
    color: #000;
    border-color: #f5c800;
}
#cta-band .btn--primary:hover {
    background: #ffffff;
    color: var(--black);
    border-color: var(--yellow);
}
.btn--ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn--ghost-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ================================================================
   NAVIGATION
   ================================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  transition: box-shadow var(--transition);
}
#site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
}

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

.nav-logo  { display: none; }

#site-nav input[type="search"],
#site-nav input[type="text"],
#site-nav .search-form,
#site-nav .wp-block-search,
#site-nav form {
  display: none !important;
}

.nav-logo__flag { display: inline-grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; width: 18px; height: 18px; flex-shrink: 0; }
.nav-logo__flag span:nth-child(1), .nav-logo__flag span:nth-child(4) { background: var(--black); }
.nav-logo__flag span:nth-child(2), .nav-logo__flag span:nth-child(3) { background: var(--yellow); }

.nav-logo__badge { background: var(--black); color: var(--white); display: flex; flex-direction: column; line-height: 1.05; padding: 5px 12px 5px 10px; border-radius: 3px; }
.nav-logo__badge em { font-style: normal; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.nav-logo__badge strong { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.08em; color: var(--yellow); }
.nav-logo__llp { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a { font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); transition: color var(--transition); position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--yellow); transition: width var(--transition); }
.nav-menu a:hover::after { width: 100%; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--black); transition: transform var(--transition), opacity var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-line); padding: 24px var(--section-px) 32px; z-index: 998; flex-direction: column; gap: 0; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: transform var(--transition), opacity var(--transition); }
.nav-drawer.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: all; height: 100%;}
.nav-drawer a { display: block; padding: 16px 0; font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); border-bottom: 1px solid var(--gray-line); }
.nav-drawer .btn { margin-top: 20px; align-self: flex-start; }

/* ================================================================
   HERO
   ================================================================ */
#hero { padding-top: var(--nav-h); min-height: 100vh; display: flex; align-items: center; background: var(--white); overflow: hidden; position: relative; }

.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 779px;
}

.hero-content {
  width: 1035px;
  height: 779px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  background: var(--yellow);
  color: #171717;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 22px;
  width: fit-content;
  line-height: 20px;
  height: 38px;
  display: flex;
  align-items: center;
}

.hero-content-container {
  width: 936px;
  height: 534px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8.5vw, 124px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 28px;
}

.section-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.architects-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.cap-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 3.5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.tp-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 4vw, 58px);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.cta-band-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.testi-quote {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.sol-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: -0.01em;
}

.cap-card-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 30px !important;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.service-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.arch-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.02em;
}

.testi-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.stat-num {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -0.03em;
}

.tp-stat { font-family: 'Open Sans', sans-serif; font-weight: 800; }

.sol-num {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
}

.service-number {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
}

.section-tag {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
}

section#clients {
  padding: 80px 48px;
}

p.section-desc.is-visible {
    font-family: 'Open Sans', sans-serif;
  max-width: 836px;
  height: 40px;
  font-size: 18px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  width: 874px;
  font-weight: 600;
  padding-left: 18px;
  border-left: 3px solid var(--yellow);
  margin-bottom: 40px;
  height: 64px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 885px;
  height: 566.6px;
}
.hero-visual svg { width: 100%; max-width: 520px; }

/* ================================================================
   CLIENTS
   ================================================================ */
#clients {
  background: #171717;
  padding: var(--section-py) 0 0;
  overflow: hidden;
  width: 100%;
  /* height: 665.2px; */
}

.marquee-outer {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
    gap: 48px;
}

.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}

/* h2.section-title.is-visible {
  width: 1824px;
  height: 144px;
  opacity: 1;
} */
h2.section-title.is-visible {
    height: 144px;
    opacity: 1;
    font-family: Open Sans;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    vertical-align: middle;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    flex-shrink: 0;
    transition: background var(--transition);
    height: 183.2px;
    width: 274.8px;
    opacity: 1;
    border-radius: 4px;
    background: #000;
}
.marquee-item:hover { background: rgba(245,200,0,0.08); }

.marquee-item span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.marquee-item:hover span { color: var(--yellow); }

.marquee-item img {
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.4;
  transition: opacity var(--transition);
}

.marquee-item:hover img {
  opacity: 1;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ================================================================
   CLIENT VOICES / TESTIMONIALS
   ================================================================ */
#testimonials { background: var(--white); }

.testimonials-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 600px;
  margin: 5rem 1rem;
}

article.testi-card.is-visible {
  margin: 0 10px;
  background: #FAFAFA;
}

.testimonials-panel { background: var(--yellow); padding: 60px 48px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }

.tp-title { font-family: var(--font-condensed); font-weight: 900; font-size: clamp(52px, 5vw, 72px); text-transform: uppercase; color: var(--black); line-height: 0.93; margin-bottom: 20px; }
.tp-rule  { width: 48px; height: 4px; background: var(--black); margin-bottom: 24px; }
.tp-desc  { font-size: 18px; line-height: 1.7; color: rgba(0,0,0,0.7); max-width: 260px; font-weight: 500; font-family: 'Open Sans', sans-serif;}
.tp-stat  { font-family: var(--font-display); font-size: clamp(80px, 10vw, 120px); color: rgba(0,0,0,0.12); line-height: 1; align-self: flex-end; margin-top: auto; padding-top: 40px; }

.testimonials-list { background: var(--white); display: flex; flex-direction: column; gap: 5px; }

.testi-card {
  padding: 48px 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--transition);
  margin: 0 10px;
  background: #FAFAFA;
  border: 1px solid var(--gray-line);
}

.testi-card:hover { background: var(--black) !important; }

.testi-quote { color: var(--black); }
.testi-name  { color: var(--black); }
.testi-role  { color: var(--text-muted); }

.testi-card:hover .testi-quote { color: var(--white); }
.testi-card:hover .testi-name  { color: var(--white); }
.testi-card:hover .testi-role  { color: var(--text-muted); }

.testi-divider { border: none; margin: 0 60px; }
.testi-stars { display: flex; gap: 4px; align-items: center; }
.testi-quote { font-size: 18px; font-weight: 600; line-height: 1.55; color: var(--black); font-style: normal; max-width: 680px; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 15px; color: var(--black); flex-shrink: 0; overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testi-meta { display: flex; flex-direction: column; gap: 2px; }
.testi-name { font-family: var(--font-condensed); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); }
.testi-role { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ================================================================
   ARCHITECTS OF INTERACTION — TEAM SLIDER
   ================================================================ */
#architects {
  background: var(--black);
  padding: var(--section-py) 0;
}

.architects-inner { margin: 0 auto; padding: 0 var(--section-px); }

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

.architects-copy   { flex: 1; min-width: 260px; }

.architects-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  margin-top: 10px;
}

.architects-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

.arch-slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.arch-btn {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}

.arch-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.arch-btn:disabled { opacity: 0.3; cursor: default; }

/* .arch-slider-outer { overflow: hidden; width: 100%; } */
.arch-slider-outer {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  position: relative;
}

.arch-slider-track {
  display: flex;
  gap: 2px;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

/* .arch-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 2px);
  aspect-ratio: 0.72;
  cursor: default;
} */
.arch-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 2px);
  aspect-ratio: 0.75;
  cursor: default;
}

.arch-btn-float {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 9999px;
    border: none;
    background: #f5f5f575;
    padding: 0;
    cursor: pointer;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arch-btn-float img {
  display: block;
  width: 32px;
  height: auto;
  pointer-events: none;
}

.arch-btn-float:hover {
  transform: translateY(-50%) scale(1.08);
  opacity: 0.85;
  background: #fff;
}
.arch-photo { position: absolute; inset: 0; width: 100%; height: 100%; }

/* REPLACE */
.arch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease-out), filter 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
  filter: grayscale(40%) brightness(0.55);
  opacity: 0.85;
}


.arch-card:hover .arch-photo img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}
.arch-photo-placeholder { width: 100%; height: 100%; }
.arch-photo-placeholder svg { width: 100%; height: 100%; }

.arch-number {
  position: absolute;
  top: 20px; left: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--yellow);
  z-index: 3;
}

.arch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.88) 100%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

.arch-card:hover .arch-overlay { opacity: 0.85; }

.arch-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 24px 26px;
  z-index: 4;
}

.arch-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 5px;
}

.arch-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.arch-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }

.arch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}

.arch-dot.active { background: var(--yellow); width: 28px; border-radius: 4px; }

/* ================================================================
   SOLUTIONS
   ================================================================ */
#solutions { background: var(--white); padding: var(--section-py) var(--section-px); }
.solutions-list { margin-top: 56px; border-top: 1.5px solid var(--gray-line); }

.solution-item { display: grid; grid-template-columns: 72px 1fr auto 56px; align-items: center; gap: 36px; padding: 30px 0; border-bottom: 1.5px solid var(--gray-line); cursor: pointer; transition: padding var(--transition); }
.solution-item:hover              { padding-left: 8px; }
.solution-item:hover .sol-num     { color: var(--yellow); }
.solution-item:hover .sol-arrow   { transform: translateX(8px); }

.sol-num   { font-family: var(--font-display); font-size: 30px; color: #CCC; transition: color var(--transition); }
.sol-title { font-family: var(--font-condensed); font-weight: 900; font-size: 28px; text-transform: uppercase; color: var(--black); letter-spacing: 0.01em; }
.sol-tag   { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); background: var(--gray-light); padding: 7px 16px; white-space: nowrap; }
.sol-arrow { font-size: 22px; color: var(--black); transition: transform var(--transition); justify-self: end; }

/* ================================================================
   CTA BAND
   ================================================================ */
#cta-band {
    background: var(--yellow);
    padding: 100px var(--section-px);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 585px;
    gap: 40.01px;
    display: flex;
    opacity: 1;
    padding-top: 112px;
    padding-right: 96px;
    padding-bottom: 112px;
    padding-left: 96px;
    align-items: center;
}

#cta-band .cta-band-inner.is-visible {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1728px;
    height: 257px;
    gap: 21px;
    opacity: 1;
    padding: 100px var(--section-px) 80px;
}

#cta-band::before {
    content: 'ILLUMOS';
    position: absolute;
    color: rgba(0,0,0,0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    font-family: Open Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 362px;
    line-height: 96px;
    letter-spacing: 5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.cta-band-desc {
    font-family: Open Sans;
    font-weight: 500;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 41px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    width: 808px;
    height: 82px;
    opacity: 1;
}
#cta-band a.btn.btn--primary {
    width: 226px;
    height: 64px;
    opacity: 1;
    padding-top: 20px;
    padding-right: 50px;
    padding-bottom: 20px;
    padding-left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Open Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.9px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}
/* ================================================================
   CONTACT FOOTER SECTION
   ================================================================ */
#contact {
  background: var(--white);
  padding: 100px var(--section-px) 80px;
  border-top: 1px solid var(--gray-line);
}

.contact-footer-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  min-height: 400px;
}

.cf-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}

.cf-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 7vw, 96px);
  text-transform: uppercase;
  color: var(--black);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 16px 0 48px;
}

.cf-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
  transition: gap var(--transition), color var(--transition);
  padding: 0;
}

.cf-cta:hover { color: var(--yellow); gap: 32px; }

.cf-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), opacity var(--transition);
    background: #F5F5F5;
    width: 80px;
    height: 80px;
    border-radius: 999px;
}

.cf-cta-arrow img {
  width: 32px;
  height: auto;
  display: block;
  pointer-events: none;
}

.cf-cta:hover .cf-cta-arrow {
  transform: translateX(6px);
  opacity: 0.8;
}

.cf-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  border-left: 1px solid var(--gray-line);
  padding-left: 60px;
}

.cf-group-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cf-contact-list { display: flex; flex-direction: column; gap: 16px; }

.cf-contact-list li { display: flex; align-items: center; gap: 14px; color: var(--black); }

.cf-contact-list svg { flex-shrink: 0; color: var(--text-muted); }

.cf-contact-list a,
.cf-contact-list span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
  transition: color var(--transition);
}

.cf-contact-list a:hover { color: var(--yellow); }

.cf-social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; }

.cf-social-grid a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  transition: color var(--transition);
}

.cf-social-grid a:hover { color: var(--yellow); }

/* ================================================================
   FOOTER BAR
   ================================================================ */
#site-footer {
  background: #0A0A0A;
  border-top: 1px solid var(--gray-mid);
  padding: 24px var(--section-px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-credit { font-size: 11px; color: var(--text-muted); }
.footer-credit a { color: var(--yellow); font-weight: 600; transition: color var(--transition); }
.footer-credit a:hover { color: var(--white); }

/* ================================================================
   CONTACT POPUP
   ================================================================ */
.ip-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.ip-popup-overlay.active { opacity: 1; pointer-events: all; }

.ip-popup {
  background: var(--black);
  border: 1px solid var(--gray-mid);
  width: 100%;
  max-width: 70%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 52px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s var(--ease-out);
}

.ip-popup-overlay.active .ip-popup { transform: translateY(0); }

.ip-popup-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.ip-popup-close:hover { color: var(--yellow); }

.ip-popup-tag { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }

.ip-popup-title { font-family: 'Open Sans', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 48px); text-transform: uppercase; color: var(--white); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 12px; }

.ip-popup-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

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

.ip-popup-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.ip-popup-group:last-of-type { margin-bottom: 0; }
.ip-popup-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.ip-popup-group label span { color: var(--yellow); }

.ip-popup-group input,
.ip-popup-group textarea,
.ip-popup-group select {
  background: var(--gray-dark);
  border: 1.5px solid var(--gray-mid);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.ip-popup-group input::placeholder,
.ip-popup-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.ip-popup-group input:focus,
.ip-popup-group textarea:focus,
.ip-popup-group select:focus { border-color: var(--yellow); }

.ip-popup-group textarea { min-height: 110px; resize: vertical; }

.ip-popup-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.ip-popup-group select option { background: var(--gray-dark); }

.ip-popup-message { font-size: 13px; font-weight: 600; padding: 0; margin-bottom: 0; min-height: 0; transition: all 0.3s ease; }
.ip-popup-message.success { padding: 12px 16px; margin-bottom: 16px; background: rgba(245,200,0,0.1); border: 1px solid var(--yellow); color: var(--yellow); }
.ip-popup-message.error { padding: 12px 16px; margin-bottom: 16px; background: rgba(255,80,80,0.1); border: 1px solid #ff5050; color: #ff5050; }

.ip-popup-submit {
  background: var(--yellow);
  color: var(--black);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--yellow);
  cursor: pointer;
  margin-top: 20px;
  transition: background var(--transition), color var(--transition);
}
.ip-popup-submit:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.ip-popup-submit:disabled { opacity: 0.5; cursor: default; }

body.popup-open { overflow: hidden; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* ================================================================
   WP ADMIN BAR
   ================================================================ */
.admin-bar #site-nav   { top: 32px; }
.admin-bar .nav-drawer { top: calc(var(--nav-h) + 32px); }

/* ================================================================
   TYPOGRAPHY SCALE (design-matched)
   ================================================================ */
.hero-title {
  font-size: 124px;
  font-weight: 800;
  letter-spacing: -6.4px;
  width: 961px;
  height: 256px;
}

h1.hero-title.is-visible {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 124px;
  line-height: 128px;
  letter-spacing: -6.4px;
  vertical-align: middle;
}

.section-title  { font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; }
.architects-title { font-size: clamp(40px, 5.5vw, 68px); font-weight: 800; }
.cap-title      { font-size: clamp(36px, 3.5vw, 52px); font-weight: 800; }
.testi-quote    { font-family: var(--font-display); font-size: 18px; font-weight: 500; }
.sol-title      { font-family: var(--font-body); font-size: clamp(16px, 1.8vw, 22px); font-weight: 700; }
.cap-card-title { font-family: var(--font-body); font-size: 16px; font-weight: 700; letter-spacing: 0.02em; }
.nav-menu a     { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; }
.btn            { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; }

.hero-desc {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
}
.section-desc    { font-size: 15px; }
.cap-desc        { font-size: 14px; }
.service-desc    { font-size: 14px; }
.cap-card-desc   { font-size: 14px; }
.cta-band-title {
    width: 833px;
    height: 154px;
    opacity: 1;
    font-family: Open Sans;
    font-weight: 800;
    font-style: ExtraBold !important;
    font-size: 72px;
    line-height: 76.8px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

.tp-title        { font-size: clamp(40px, 4.5vw, 62px); font-weight: 800; }

.stat-num    { font-family: var(--font-display); font-size: 52px; }
.tp-stat     { font-family: var(--font-display); }
.sol-num     { font-family: var(--font-display); font-size: 26px; }
.arch-number { font-family: var(--font-display); font-size: 13px; }
.service-number { font-family: var(--font-display); font-size: 40px; }
/* .section-tag { font-size: 10px; letter-spacing: 0.22em; } */
.section-tag {
    font-family: 'Inconsolata', monospace;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    vertical-align: middle;
    text-transform: uppercase;
}
.footer-copy    { font-size: 13px; }
.footer-links a { font-size: 12px; }
.footer-credit  { font-size: 12px; }

/* ================================================================
   FEATURED CASE STUDIES
   ================================================================ */
#case-studies {
  background: var(--black);
  height: 1892.75px;
  opacity: 1;
  padding-top: 128px;
  padding-bottom: 128px;
}

#case-studies .container.cs-inner {
  height: 1636.75px;
  gap: 80px;
  display: flex;
  opacity: 1;
  padding-right: 48px;
  padding-left: 48px;
  flex-direction: column;
}

p.cs-desc {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  width: 428px;
  height: 59px;
  opacity: 1;
}

.cs-inner { margin: 0 auto; }

.cs-header {
  display: flex;
  height: 188px;
  justify-content: space-between;
  align-items: center;
  opacity: 1;
}

.cs-title {
  color: var(--white);
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: -3.6px;
  text-transform: uppercase;
  width: 457px;
  height: 144px;
  opacity: 1;
}

.cs-desc { color: var(--text-muted); }

.cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.cs-card { position: relative; overflow: hidden; cursor: pointer; }

.cs-card-image { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; background: #1a1a2e; height: 671.6px;}
article.cs-card.is-visible {
    width: 100%;
    height: 671.6px;
    opacity: 1;
    border-radius: 4px;
}
.cs-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); filter: brightness(0.85); }

.cs-card:hover .cs-card-image img { transform: scale(1.05); filter: brightness(1); }

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

.cs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.cs-card:hover .cs-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%); }

.cs-tag {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.cs-card:hover .cs-tag { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

.cs-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px; z-index: 3; }

.cs-card-title { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color var(--transition); }

.cs-card:hover .cs-card-title { color: var(--white); }

.cs-card-image::after {
  content: '↗'; position: absolute; bottom: 20px; right: 22px; z-index: 3;
  font-size: 20px; color: var(--white); opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cs-card:hover .cs-card-image::after { opacity: 1; transform: translate(0, 0); }

/* ================================================================
   CAPABILITIES / SERVICES
   ================================================================ */
/* #services {
  width: 1920px;
  height: 1439.5px;
  opacity: 1;
  padding-top: 128px;
  padding-bottom: 128px;
} */

#services {
  width: 100%;
  height: auto;
  opacity: 1;
  padding: 128px 35px;
  box-sizing: border-box;
}

/* .capabilities-inner { display: flex; opacity: 1; } */
.capabilities-inner {
    display: flex;
    opacity: 1;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    gap: 96px;
}
/* h2.cap-title.is-visible {
  width: 554px; height: 144px; opacity: 1;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800; font-size: 72px; line-height: 72px;
  letter-spacing: -3.6px; vertical-align: middle; text-transform: uppercase;
} */

h2.cap-title.is-visible {
    width: 100%;
    height: auto;
    opacity: 1;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -0.03em;
    vertical-align: middle;
    text-transform: uppercase;
}

p.cap-desp.cap-desc.is-visible {
    width: 100% !important;
    height: auto;
}

/* .capabilities-panel {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: var(--nav-h);
  align-self: start;
  width: 554px;
  opacity: 1;
} */

.capabilities-panel {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: var(--nav-h);
    align-self: start;
    width: 554px;
    flex-shrink: 0;
    /* padding: 60px 40px; */
    opacity: 1;
}

.cap-logomark { margin-bottom: 24px; }

.cap-logomark__grid { width: 75.3px; height: 77.0px; opacity: 1; }
.cap-logomark__grid span    { display: block; }
.cap-logomark__grid .filled { background: var(--black); }
.cap-logomark__grid .empty  { background: var(--gray-line); }
.cap-logomark__grid .yellow { background: var(--yellow); }

.cap-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 2.8vw, 44px);
  text-transform: uppercase;
  color: var(--black);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  word-break: normal;
  hyphens: none;
  overflow-wrap: normal;
}

p.cap-desc.is-visible {
  width: 554px !important; height: 66.25px; opacity: 1; padding-top: 7.25px;
  font-family: 'Open Sans', sans-serif; 
  font-size: 18px; line-height: 29.25px;
  letter-spacing: 0%; vertical-align: middle;
  color: #525252;
}

/* .capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 1174px; height: 1183.5px;
  gap: 48px;
  opacity: 1;
}

.cap-card {
  width: 563px; height: 362.5px;
  opacity: 1;
  border-radius: 4px;
  background: #FAFAFA;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  justify-content: center;
} */

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    min-width: 0;
    width: auto;
    height: auto;
    gap: 28px;
    opacity: 1;
}

.cap-card {
    width: 100%;
    height: 362.5px;
    min-height: 280px;
    opacity: 1;
    border-radius: 4px;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    justify-content: center;
    padding: 40px 36px;
}
.cap-card:nth-child(even)      { border-right: none; }
.cap-card:nth-last-child(-n+2) { border-bottom: none; }
.cap-card:hover                { background: var(--gray-light); }

/* .cap-card-top { display: flex; width: 467px; height: 40px; justify-content: space-between; opacity: 1; } */
.cap-card-top { display: flex; width: 100%; justify-content: space-between; opacity: 1; }
.cap-card-icon svg { width: 40px; height: 40px; opacity: 1; }

.cap-card-num {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800; font-size: 36px;
  color: #BBBBBB; letter-spacing: 0; line-height: 40px; vertical-align: middle;
}

.cap-card-icon { color: var(--black); opacity: 0.45; display: flex; align-items: center; flex-shrink: 0; transition: opacity var(--transition), color var(--transition); }
.cap-card:hover .cap-card-icon { opacity: 1; color: var(--yellow); }

/* .cap-card-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700; font-size: 16px;
  text-transform: uppercase; color: var(--black);
  letter-spacing: 0.02em; line-height: 1.2;
  width: 467px; height: 36px; opacity: 1;
}

.cap-card-desc {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400; font-size: 18px;
  line-height: 29.25px; letter-spacing: 0%;
  color: var(--text-body);
  width: 467px; height: 59px; opacity: 1;
} */
.cap-card-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700; font-size: 16px;
    text-transform: uppercase; color: var(--black);
    letter-spacing: 0.02em; line-height: 1.2;
    width: 100%; height: auto; opacity: 1;
}

.cap-card-desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400; font-size: 18px;
    line-height: 29.25px; letter-spacing: 0%;
    color: var(--text-body);
    width: 100%; height: auto; opacity: 1;
}
/* ================================================================
   CASE STUDY PAGE
   ================================================================ */
.csp-hero { width: 100%; margin-top: var(--nav-h); background: linear-gradient(135deg, #3DBEF5 0%, #50FFEA 100%); overflow: hidden; }
.csp-hero-bg { width: 100%; }
.csp-hero-image { width: 100%; display: block; max-height: 793.2px; object-fit: contain; margin: 0 auto; margin-top: 4rem; }

.csp-intro { background: var(--white); border-bottom: 1.5px solid var(--gray-line); }

.csp-intro-left { padding: 80px 48px; border-right: 1.5px solid var(--gray-line); display: flex; flex-direction: column; align-items: flex-start; gap: 0; }

.csp-label { display: inline-block; background: var(--yellow); color: var(--black); font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 12px; margin-bottom: 20px; }

.csp-title { font-family: 'Open Sans', sans-serif; font-weight: 800; font-size: clamp(52px, 7vw, 96px); text-transform: uppercase; color: var(--black); line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 24px; }

.csp-tagline { font-size: 18px; line-height: 1.75; color: var(--text-body); padding-left: 16px; border-left: 3px solid var(--yellow); margin-bottom: 36px; }

.csp-live-btn { display: inline-flex; }

.csp-intro-right { padding: 80px 48px; }

.csp-meta-cols { display: grid; grid-template-columns: 200px 1fr; gap: 32px; }
.csp-meta-col { display: flex; flex-direction: column; gap: 0; }
.csp-meta-item { display: flex; flex-direction: column; gap: 6px; padding: 20px 0; border-bottom: 1px solid var(--gray-line); }
.csp-meta-item:first-child { padding-top: 0; }
.csp-meta-item:last-child  { border-bottom: none; }
.csp-meta-label { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.csp-meta-value { font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 18px; color: var(--black); line-height: 1.5; }
.csp-services-list { display: flex; flex-direction: column; gap: 2px; }
.csp-services-list span { font-size: 14px; font-weight: 500; color: var(--black); line-height: 1.7; }
.csp-meta-col--desc { display: flex; flex-direction: column; gap: 16px; padding-top: 20px; }
.csp-meta-desc { font-size: 18px; line-height: 1.8; color: var(--text-body); }

.csp-challenge { background: #1A1A1A; padding: var(--section-py) var(--section-px); }
.csp-challenge-header { margin-bottom: 56px; }
.csp-section-tag { display: inline-block; font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.csp-section-title { font-family: 'Open Sans', sans-serif; font-weight: 800; font-size: clamp(44px, 6vw, 72px); text-transform: uppercase; color: var(--white); line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 40px; }
.csp-challenge-quote { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.75); border-left: 3px solid var(--yellow); padding-left: 20px; max-width: 860px; }

.csp-problems-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 101px; }
.csp-problem-card { background: #222222; padding: 36px 32px; display: flex; flex-direction: column; gap: 16px; transition: background var(--transition); }
.csp-problem-card:hover { background: #2C2C2C; }
.csp-problem-num { font-family: 'Open Sans', sans-serif; font-weight: 800; font-size: 36px; color: var(--yellow); letter-spacing: -0.02em; line-height: 1; }
.csp-problem-title { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); }
.csp-problem-desc { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.55); }

.csp-research { background: var(--white); padding: var(--section-py) var(--section-px); }
.csp-research-header { margin-bottom: 48px; }
.csp-section-tag--dark { color: var(--black); }
.csp-section-title--dark { color: var(--black); }

.csp-survey-card { background: #1A1A1A; padding: 52px 56px; display: flex; flex-direction: column; gap: 40px; }
.csp-survey-label { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); }

.csp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.csp-stat { display: flex; flex-direction: column; gap: 8px; }
.csp-stat-num { font-family: 'Open Sans', sans-serif; font-weight: 800; font-size: clamp(48px, 5vw, 72px); color: var(--yellow); line-height: 1; letter-spacing: -0.03em; }
.csp-stat-label { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.csp-survey-quote { font-size: 18px; line-height: 1.8; color: #fff; border-left: 3px solid var(--yellow); padding-left: 20px; }

.csp-swot { background: var(--white); padding: var(--section-py) var(--section-px);}
.csp-swot-title { font-family: 'Open Sans', sans-serif; font-weight: 800; font-size: clamp(22px, 2.5vw, 24px); text-transform: uppercase; color: var(--black); letter-spacing: -0.02em; margin-bottom: 48px; }
.csp-swot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.csp-swot-card { padding: 40px 48px; border-left: 4px solid transparent; }
.csp-swot-card--green  { border-left-color: #22C55E; }
.csp-swot-card--orange { border-left-color: #F97316; }
.csp-swot-card--blue   { border-left-color: #3B82F6; }
.csp-swot-card--red    { border-left-color: #EF4444; }
.csp-swot-label { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); margin-bottom: 20px; }
.csp-swot-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.csp-swot-list li { font-size: 18px; line-height: 1.6; color: var(--text-body); padding-left: 14px; position: relative; }
.csp-swot-list li::before { content: '•'; position: absolute; left: 0; color: var(--text-muted); }

.csp-competitor { background: var(--white); padding: var(--section-py) var(--section-px); }
.csp-competitor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 40px; }
.csp-competitor-left { display: flex; flex-direction: column; gap: 16px; }
.csp-competitor-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.csp-competitor-list li { font-size: 18px; line-height: 1.6; color: var(--text-body); padding-left: 14px; position: relative; }
.csp-competitor-list li::before { content: '•'; position: absolute; left: 0; color: var(--text-muted); }
.csp-competitor-quote { font-size: 18px; line-height: 1.8; color: var(--text-body); border-left: 3px solid var(--yellow); padding-left: 20px; }

.csp-design-process { background: #1A1A1A; padding: var(--section-py) var(--section-px); }
.csp-sub-title { font-family: 'Open Sans', sans-serif; font-weight: 800; font-size: clamp(18px, 2vw, 24px); text-transform: uppercase; color: var(--white); letter-spacing: -0.01em; margin-bottom: 28px; margin-top: 64px; }
.csp-steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 48px; margin-bottom: 64px; }
.csp-step { background: #222222; padding: 28px 24px; border-top: 3px solid var(--yellow); display: flex; flex-direction: column; gap: 14px; }
.csp-step-title { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow); }
.csp-step-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.csp-step-list li { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.6); }

.csp-persona-card { background: #222222; display: grid; grid-template-columns: 280px 1fr; gap: 0; border: 1px solid rgba(255,255,255,0.08); }
.csp-persona-left { padding: 32px 28px; border-right: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 20px; }
.csp-persona-photo-placeholder { width: 100%; aspect-ratio: 1; background: #333; border-radius: 2px; }
.csp-persona-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top; border-radius: 2px; display: block; }
.csp-persona-name { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; color: var(--white); margin-bottom: 4px; }
.csp-persona-meta { font-size: 18px; color: var(--text-muted); margin-bottom: 12px; }
.csp-persona-quote { font-size: 18px; font-style: italic; color: rgba(255,255,255,0.45); line-height: 1.6; }
.csp-persona-right { padding: 32px 36px; display: flex; flex-direction: column; gap: 28px; }
.csp-persona-about { border-left: 3px solid rgba(255,255,255,0.15); padding-left: 16px; }
.csp-persona-section-label { display: block; font-size: 18px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.csp-persona-about p { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.7); }
.csp-persona-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.csp-persona-motivations, .csp-persona-frustrations { display: flex; flex-direction: column; gap: 12px; }
.csp-persona-motivations h4 { font-size: 18px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #22C55E; }
.csp-persona-frustrations h4 { font-size: 18px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #F97316; }
.csp-persona-motivations ul, .csp-persona-frustrations ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.csp-persona-motivations li, .csp-persona-frustrations li { font-size: 18px; color: rgba(255,255,255,0.6); padding-left: 12px; position: relative; }
.csp-persona-motivations li::before, .csp-persona-frustrations li::before { content: '•'; position: absolute; left: 0; color: var(--text-muted); }

.csp-matrix-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.csp-matrix-card { padding: 36px 32px; display: flex; flex-direction: column; gap: 10px; }
.csp-matrix-card--red    { background: #3D1A1A; }
.csp-matrix-card--blue   { background: #1A2A3D; }
.csp-matrix-card--olive  { background: #2A2D1A; }
.csp-matrix-card--purple { background: #2A1A3D; }
.csp-matrix-label { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
.csp-matrix-card--red    .csp-matrix-label { color: #F87171; }
.csp-matrix-card--blue   .csp-matrix-label { color: #60A5FA; }
.csp-matrix-card--olive  .csp-matrix-label { color: #A3B54A; }
.csp-matrix-card--purple .csp-matrix-label { color: #A78BFA; }
.csp-matrix-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 8px; }
.csp-matrix-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.csp-matrix-list li { font-size: 18px; color: rgba(255,255,255,0.65); padding-left: 14px; position: relative; line-height: 1.5; }
.csp-matrix-list li::before { content: '•'; position: absolute; left: 0; color: var(--text-muted); }

.csp-impact { background: var(--white); padding: var(--section-py) var(--section-px); border-top: 1.5px solid var(--gray-line); }
.csp-impact-header { margin-bottom: 48px; }
.csp-impact-stats { background: var(--yellow); display: grid; grid-template-columns: repeat(4, 1fr); padding: 52px 56px; gap: 32px; margin-bottom: 64px; }
.csp-impact-stat { display: flex; flex-direction: column; gap: 12px; }
.csp-impact-num { font-family: 'Open Sans', sans-serif; font-weight: 800; font-size: clamp(44px, 5vw, 72px); color: var(--black); line-height: 1; letter-spacing: -0.04em; }
.csp-impact-label { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0,0,0,0.6); }
.csp-achieved-title { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); margin-bottom: 32px; }
.csp-achieved-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1.5px solid var(--gray-line); margin-bottom: 48px; }
.csp-achieved-item { padding: 28px 0; padding-right: 60px; border-bottom: 1.5px solid var(--gray-line); border-left: 3px solid var(--yellow); padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }
.csp-achieved-item:nth-child(even) { padding-right: 0; padding-left: 40px; }
.csp-achieved-item:nth-last-child(-n+2) { border-bottom: none; }
.csp-achieved-label { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); }
.csp-achieved-desc { font-size: 18px; line-height: 1.75; color: var(--text-body); }
.csp-transformation { background: #1A1A1A; padding: 52px 56px; display: flex; flex-direction: column; gap: 20px; }
.csp-transformation-label { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.csp-transformation-text { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.75);}

/* .csp-designs { background: #1A1A1A; padding: var(--section-py) var(--section-px); border-top: 1.5px solid rgba(255,255,255,0.06); } */
.csp-designs {
    background: #1A1A1A;
    padding: var(--section-py) var(--section-px);
    border-top: 1.5px solid rgba(255,255,255,0.06);
    width: 100%;
    height: 3348px;
    gap: 73px;
    opacity: 1;
    padding-top: 120px;
    padding-right: 48px;
    padding-bottom: 120px;
    padding-left: 48px;
}
.csp-designs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
/* .csp-design-card { display: flex; flex-direction: column; gap: 20px; } */
.csp-design-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 1400px;
    gap: 24px;
    opacity: 1;
}
/* .csp-design-image { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #2C2C2C; } */
.csp-design-image {
    width: 798px;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #2C2C2C;
    height: 1216.5px;
}
.csp-design-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2C2C2C 0%, #222222 100%); }
.csp-design-image img { object-fit: cover; object-position: top; display: block; transition: transform 0.6s var(--ease-out); }
.csp-design-card:hover .csp-design-image img { transform: scale(1.03); }
.csp-design-info { display: flex; flex-direction: column; gap: 8px; border-left: 3px solid var(--yellow); padding-left: 16px; }
.csp-design-label { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); }
.csp-design-desc { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.55); }

/* ================================================================
   RESPONSIVE BREAKPOINTS — ONLY LAYOUT FIXES, NO DESIGN CHANGES
   ================================================================ */

/* ---- 1100px ---- */
@media (max-width: 1100px) {
  :root { --section-px: 40px; }

  /* Capabilities */
  #services              { width: 100%; height: auto; }
  .capabilities-panel    { width: 300px; padding: 52px 32px; position: sticky; }
  .capabilities-grid     { width: auto; flex: 1; height: auto; }
  h2.cap-title.is-visible { font-size: 36px; width: 100%; height: auto; }
  p.cap-desc.is-visible  { width: 100% !important; height: auto; }
  .cap-card              { width: 100%; height: auto; min-height: 280px; }
  .cap-card-top          { width: 100%; }
  .cap-card-title        { width: 100%; height: auto; }
  .cap-card-desc         { width: 100%; height: auto; }

  /* Testimonials */
  .testimonials-inner { grid-template-columns: 300px 1fr; }
  .testi-card         { padding: 40px; }
  .testi-divider      { margin: 0 40px; }

  /* Case studies */
  #case-studies            { height: auto; }
  #case-studies .container.cs-inner { height: auto; }
  .cs-header               { height: auto; }
  .cs-title                { width: 100%; height: auto; font-size: 40px; line-height: 1; letter-spacing: -0.03em; }
  p.cs-desc                { width: 100%; height: auto; }
}

/* ---- 900px ---- */
@media (max-width: 900px) {
  a.nav-back-btn {
    background: #f5f5f5;
    padding: 12px;
    color: #171717;
    border-radius: 33px;
    display: flex;
}
  .csp-competitor {
    padding: 0 var(--section-px);
}
.csp-design-process {
    margin-top: 50px;
}
  .nav-drawer.open a.btn.btn--primary {
    color: #fff;
    width: fit-content;
    padding: 10px;
}
  .csp-design-image {
    width: 100%;
    aspect-ratio: unset;
    height: auto;
}
section.csp-designs {
    height: auto;
}
.btn {
    width: 100%;
    display: flex;
    justify-content: center;
}
.csp-design-card {
    height: auto;
}
section.csp-designs {
    padding: var(--section-py) var(--section-px);
}
#services {
    padding: 0;
}
  :root { --section-px: 24px; --section-py: 70px; }

  /* Nav */
  .nav-menu        { display: none; }
  .nav-cta-desktop { display: none !important; }
  .nav-hamburger   { display: flex; }
  .nav-inner       { height: 76px; }
  .nav-right       { gap: 16px; }

  /* Hero — core fix: remove all fixed widths/heights */
  .hero-inner             { height: auto; flex-direction: column; align-items: flex-start; padding: 40px var(--section-px) 60px; }
  .hero-content           { width: 100%; height: auto; }
  .hero-content-container { width: 100%; height: auto; }
  .hero-title             { width: 100%; height: auto; font-size: clamp(48px, 10vw, 96px); letter-spacing: -0.04em; line-height: 1; }
  h1.hero-title.is-visible{ width: 100%; height: auto; font-size: clamp(48px, 10vw, 96px); letter-spacing: -0.04em; line-height: 1; }
  .hero-desc              { width: 100%; height: auto; font-size: 16px; }
  .hero-visual            { width: 100%; height: auto; margin: 50px 0 0 0; }

  /* Clients */
  #clients               { height: auto; padding-bottom: 48px; }
  section#clients        { padding: 48px var(--section-px); }
  /* h2.section-title.is-visible { width: 100%; height: auto; } */
  h2.section-title.is-visible {
    width: 100%;
    height: auto;
    font-size: 44px;
    line-height: unset;
}
p.section-desc.is-visible {
    height: unset;
}
img.custom-logo {
    max-width: 200px;
}
article.testi-card.is-visible {
    margin: 0;
}
  /* Testimonials */
  .testimonials-inner { grid-template-columns: 1fr; margin: 2rem 1rem; }
  .testimonials-panel { padding: 48px var(--section-px); flex-direction: row; flex-wrap: wrap; gap: 24px; margin-bottom: 10px;}
  .tp-stat            { font-size: 80px; margin-top: 0; padding-top: 0; }
  .testi-card         { padding: 36px var(--section-px); margin: 0; }
  .testi-divider      { margin: 0 var(--section-px); }

  /* Architects */
  .architects-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .arch-card         { flex: 0 0 calc(50% - 1px); }

  /* Solutions */
  .solution-item { grid-template-columns: 48px 1fr 48px; gap: 16px; }
  .sol-tag       { display: none; }

  /* Capabilities */
  #services              { width: 100%; height: auto; }
  .capabilities-inner    { flex-direction: column; gap: 0;}
  .capabilities-panel    { position: static; width: 100%; border-bottom: 1.5px solid var(--gray-line); padding: 52px var(--section-px); }
  .capabilities-grid     { width: 100%; height: auto; grid-template-columns: 1fr 1fr; padding: 40px var(--section-px); }
  .cap-card              { width: 100%; height: auto; min-height: 240px; }
  .cap-card-top          { width: 100%; }
  .cap-card-title        { width: 100%; height: auto; }
  .cap-card-desc         { width: 100%; height: auto; }
  h2.cap-title.is-visible { width: 100%; height: auto; }
  p.cap-desc.is-visible  { width: 100% !important; height: auto; }

  /* Case Studies */
  #case-studies            { height: auto; padding-top: 80px; padding-bottom: 80px; }
  #case-studies .container.cs-inner { height: auto; padding-left: var(--section-px); padding-right: var(--section-px); gap: 48px; }
  .cs-header               { height: auto; flex-direction: column; align-items: flex-start; gap: 20px; }
  .cs-title                { width: 100%; height: auto; font-size: 44px; line-height: 1; letter-spacing: -0.03em; }
  p.cs-desc                { width: 100%; height: auto; }
  .cs-grid                 { grid-template-columns: 1fr; }

  /* Contact */
  .contact-footer-inner  { grid-template-columns: 1fr; gap: 48px; padding: 0;}
  .cf-right              { border-left: none; padding-left: 0; border-top: 1px solid var(--gray-line); padding-top: 48px; }

  /* Footer */
  .footer-inner  { flex-direction: column; text-align: center; }
  .footer-links  { flex-wrap: wrap; justify-content: center; }

  /* CSP */
  .csp-intro-inner  { grid-template-columns: 1fr; }
  .csp-intro-left   { border-right: none; border-bottom: 1.5px solid var(--gray-line); padding: 48px var(--section-px); }
  .csp-intro-right  { padding: 48px var(--section-px); }
  .csp-meta-cols    { grid-template-columns: 1fr; }
  .csp-problems-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .csp-survey-card  { padding: 36px 28px; }
  .csp-stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .csp-competitor-grid { grid-template-columns: 1fr; gap: 40px; }
  .csp-steps-grid   { grid-template-columns: repeat(3, 1fr); }
  .csp-persona-card { grid-template-columns: 1fr; }
  .csp-persona-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .csp-matrix-grid  { grid-template-columns: 1fr; }
  .csp-impact-stats { grid-template-columns: repeat(2, 1fr); padding: 36px 28px; }
  .csp-achieved-grid { grid-template-columns: 1fr; }
  .csp-achieved-item:nth-child(even) { padding-left: 20px; }
  .csp-achieved-item:nth-last-child(-n+2) { border-bottom: 1.5px solid var(--gray-line); }
  .csp-achieved-item:last-child { border-bottom: none; }
  .csp-transformation { padding: 36px 28px; }
}

/* ---- 600px ---- */
@media (max-width: 600px) {
  .ip-popup     { padding: 32px 24px; max-width: 100%;}
  .ip-popup-row { grid-template-columns: 1fr; }
  .ip-cf7-group.Project-Budget {
    flex-direction: column !important;
}
input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-number {
    width: 100% !important;
}
.ip-cf7-group.Project-Budget p {
    width: 100% !important;
}
}

/* ---- 500px ---- */
@media (max-width: 500px) {
  .hero-title    { font-size: clamp(40px, 11vw, 56px); letter-spacing: -0.03em; }
  h1.hero-title.is-visible { font-size: clamp(40px, 14vw, 56px); letter-spacing: -0.03em; }

  .capabilities-grid             { grid-template-columns: 1fr; }
  .cap-card                      { border-right: none; }
  .cap-card:nth-last-child(-n+2) { border-bottom: 1.5px solid var(--gray-line); }
  .cap-card:last-child           { border-bottom: none; }

  .arch-card { flex: 0 0 85%; }

  .csp-stats-grid    { grid-template-columns: 1fr 1fr; }
  .csp-steps-grid    { grid-template-columns: 1fr 1fr; }
  .csp-persona-cols  { grid-template-columns: 1fr; }
  .csp-impact-stats  { grid-template-columns: 1fr 1fr; }
}

/* ---- 700px (swot/designs) ---- */
@media (max-width: 700px) {
  .csp-swot-grid    { grid-template-columns: 1fr; }
  .csp-swot-card    { padding: 32px 28px; }
  .csp-designs-grid { grid-template-columns: 1fr; }
  h2.cap-title.is-visible {
    font-size: 40px;
}
}

/* Budget field — currency selector + input side by side */
.ip-budget-field {
  display: flex;
  gap: 0;
}

.ip-budget-currency {
  flex-shrink: 0;
   width: 130px;
  background: var(--gray-mid);
  border: 1.5px solid var(--gray-mid);
  border-right: none;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 12px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.ip-budget-currency:focus { border-color: var(--yellow); outline: none; }
.ip-budget-currency option { background: var(--gray-dark); }

select#popup-currency {
    width: 8rem;
}
.ip-budget-field input[type="number"] {
  flex: 1;
  min-width: 0;
  background: var(--gray-dark);
  border: 1.5px solid var(--gray-mid);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-appearance: textfield;
}

.ip-budget-field input[type="number"]::-webkit-outer-spin-button,
.ip-budget-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ip-budget-field input[type="number"]::placeholder { color: rgba(255,255,255,0.2); }
.ip-budget-field input[type="number"]:focus { border-color: var(--yellow); }

/* Joined border highlight when either is focused */
.ip-budget-field:focus-within .ip-budget-currency,
.ip-budget-field:focus-within input[type="number"] {
  border-color: var(--yellow);
}

/* ================================================================
   CASE STUDY 2 — PLATFORM ZERO
   ================================================================ */
.cs2-page { padding-top: var(--nav-h); }

.cs2-hero { background: var(--white); }

.cs2-hero-inner {
  padding: 48px var(--section-px) 40px;
}

/* Meta row */
.cs2-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cs2-meta-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs2-meta-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cs2-meta-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
}

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

.cs2-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  white-space: nowrap;
}

/* Title */
.cs2-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  color: var(--black);
  line-height: 0.97;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

/* Description */
.cs2-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-body);
  /* max-width: 900px; */
  margin-bottom: 40px;
}

/* Full width image */
.cs2-hero-image {
  width: 100%;
  overflow: hidden;
}

.cs2-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
      padding: 0 48px;
}

@media (max-width: 900px) {
  .cs2-meta-row  { gap: 32px; }
  .cs2-hero-inner { padding: 36px var(--section-px) 32px; }
  .cs2-hero-image { max-height: 400px; }
}

/* CS2 — PROJECT OVERVIEW */
.cs2-overview { background: var(--white); }

.cs2-overview-inner {
  padding: 64px var(--section-px) 48px;
}

.cs2-section-num {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}

.cs2-overview-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.cs2-section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 0.97;
  margin-bottom: 24px;
}

.cs2-body-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 16px;
}
.cs2-body-text:last-child { margin-bottom: 0; }

.cs2-objectives-label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cs2-objectives-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs2-objectives-list li {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-body);
  padding: 12px 0 12px 16px;
  border-left: 3px solid var(--yellow);
  margin-bottom: 12px;
}

/* Full width image */
.cs2-full-image {
  width: 100%;
  max-height: 1152px;
  overflow: hidden;
}

.cs2-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 0 48px;
  padding-bottom: var(--section-py);
}

@media (max-width: 900px) {
  .cs2-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  /* .cs2-full-image { max-height: 400px; } */
}

/* CS2 — THE PROBLEM */
.cs2-problem {
  background: #1A1A1A;
  padding: var(--section-py) var(--section-px);
}


.cs2-section-title--white { color: var(--white); }

.cs2-body-text--muted {
  color: rgba(255,255,255,0.6);
  margin-bottom: 56px;
}

.cs2-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  margin-top: 48px;
}

.cs2-problem-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs2-problem-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}

.cs2-dash {
  color: var(--yellow);
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.cs2-problem-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  padding-left: 32px;
}

@media (max-width: 900px) {
  .cs2-problem-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* CS2 — THE STRATEGY */
.cs2-strategy {
  background: var(--white);
  padding-top: var(--section-py);
}

.cs2-strategy-inner {
  padding: 0 var(--section-px) var(--section-py);
}

.cs2-body-text--wide { max-width: 760px; margin-bottom: 64px; }

.cs2-pillars-label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cs2-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}

.cs2-pillar-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs2-pillar-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  width: fit-content;
}

.cs2-pillar-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-body);
}

@media (max-width: 900px) {
  .csp-swot {padding-top: 0;}
  .cs2-pillars-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* CS2 — CORE FEATURES */
.cs2-features {
  background: #111111;
  padding: var(--section-py) 0;
}

.cs2-features-inner {
  padding: 0 var(--section-px);
}

.cs2-feature-block {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs2-feature-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 28px);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cs2-feature-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 680px;
}

.cs2-feature-image {
  width: 100%;
  margin-top: 8px;
  overflow: hidden;
  /* max-height: 560px; */
}

.cs2-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .cs2-feature-image { max-height: 340px; }
}

/* CS2 — DESIGN SYSTEM */
.cs2-design-system {
  background: var(--white);
  padding: var(--section-py) 0;
}

.cs2-design-system-inner {
  padding: 0 var(--section-px);
}

/* Feature row — label left + image right */
.cs2-ds-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px 0;
  border-top: 1.5px solid var(--gray-line);
}

.cs2-ds-row:first-of-type { margin-top: 56px; }

/* Flip layout — image left + content right */

.cs2-ds-row--flip > * { direction: ltr; }

.cs2-ds-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs2-ds-image {
  width: 100%;
  overflow: hidden;
  background: var(--gray-light);
  aspect-ratio: 16/10;
}

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

/* Placeholder when no image */
.cs2-ds-image:not(:has(img[src])) {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .cs2-ds-row       { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .cs2-ds-row--flip { direction: ltr; }
}

/* CS2 — RESULTS & IMPACT */
.cs2-results {
  background: #111111;
  padding: var(--section-py) 0;
}

.cs2-results-inner {
  padding: 0 var(--section-px);
}

/* 2x2 stats grid */
.cs2-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  margin: 56px 0 72px;
}

.cs2-result-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs2-result-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cs2-result-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.cs2-result-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Impact blocks */
.cs2-impact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px;
}

.cs2-impact-block:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }

.cs2-impact-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cs2-impact-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-bottom: 8px;
}

.cs2-impact-image {
  width: 100%;
  overflow: hidden;
  margin-top: 16px;
}

.cs2-impact-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .csp-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 48px;
    margin-bottom: 64px;
}
  .csp-problems-grid {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
}

.csp-problems-grid > * {
    flex: 0 0 280px;
    scroll-snap-align: start;
}
h2.cta-band-title {
    width: 100%;
    font-size: 44px;
    height: unset;
    line-height: 50px;
}

section#cta-band {
    width: 100%;
    padding: 0;
}

.cta-band-inner.is-visible {
    width: 100% !important;
}

p.cta-band-desc {
    width: 100%;
    font-size: 18px;
    line-height: unset;
}
  .cs2-results-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* CS2 — REFLECTION */
.cs2-reflection {
  background: var(--white);
  padding: var(--section-py) var(--section-px);
}



.cs2-reflection-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
  margin-bottom: 64px;
}

.cs2-reflection-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs2-reflection-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Takeaways list */
.cs2-takeaways-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.cs2-takeaway {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-line);
}

.cs2-takeaway:last-child { border-bottom: none; }

.cs2-takeaway-num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 11px;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.cs2-takeaway-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs2-takeaway-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  letter-spacing: -0.01em;
}

.cs2-takeaway-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body);
}

/* Closing paragraph */
.cs2-closing-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 860px;
  padding-top: 40px;
  border-top: 1.5px solid var(--gray-line);
}

@media (max-width: 900px) {
  article.cs-card.is-visible {
    height: 300px;
}
.cs-card-image {
    height: 300px;
}
  .cs2-reflection-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ================================================================
   CF7 POPUP STYLING
   ================================================================ */
.wpcf7 form { width: 100%; }
.wpcf7 br   { display: none; }
.wpcf7 p    { margin: 0; }

/* Label styling */
.wpcf7 .wpcf7-form-control-wrap { display: block; width: 100%; }

/* Row — first name + last name side by side */
.wpcf7 .ip-popup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* All inputs, textareas, selects */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
  background: var(--gray-dark) !important;
  border: 1.5px solid var(--gray-mid) !important;
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  width: 100%;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition);
  margin-bottom: 16px;
  box-shadow: none !important;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: var(--yellow) !important;
  outline: none;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: rgba(255,255,255,0.2); }

.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}

/* Budget field */
.wpcf7 .ip-budget-field {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}

.wpcf7 .ip-budget-field select {
  flex-shrink: 0;
  width: 130px;
  margin-bottom: 0;
  border-right: none !important;
  background: var(--gray-mid) !important;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
}

.ip-cf7-group.Project-Budget {
    display: flex;
    flex-direction: row;
}
.ip-cf7-group.Project-Budget p {
    width: 50%;
}

.ip-budget-field {
    width: 100%;
}

.wpcf7 .ip-budget-field input[type="number"] {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  -moz-appearance: textfield;
  width: 25rem;
}

.wpcf7 .ip-budget-field input[type="number"]::-webkit-outer-spin-button,
.wpcf7 .ip-budget-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Submit button */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--yellow) !important;
  cursor: pointer;
  margin-top: 8px;
  width: auto;
  transition: background var(--transition), color var(--transition);
}

.wpcf7 input[type="submit"]:hover {
  background: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
}

/* Response messages */
.wpcf7-response-output {
  display: none !important;
}

/* Toast notification */
.ip-toast {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  z-index: 99999;
  background: var(--black);
  border: 1.5px solid var(--yellow);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  white-space: nowrap;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
  opacity: 0;
  pointer-events: none;
}

.ip-toast.ip-toast--show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.ip-toast.ip-toast--error {
  border-color: #ff5050;
  color: #ff5050;
}

.wpcf7-not-valid-tip {
  color: #ff5050;
  font-size: 11px;
  margin-top: -12px;
  margin-bottom: 8px;
  display: block;
}

@media (max-width: 600px) {
  .wpcf7 .ip-popup-row { grid-template-columns: 1fr; }
}

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

.ip-cf7-group label {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ip-required { color: var(--yellow); }

.ip-cf7-group .wpcf7-form-control-wrap,
.ip-cf7-group input,
.ip-cf7-group textarea,
.ip-cf7-group select { width: 100%; margin-bottom: 0 !important; margin-top: 6px;}

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

.ip-popup-row .ip-cf7-group { margin-bottom: 0; }
.wpcf7 .ip-budget-field p {
    display: flex;
    width: 100%;
}

.calendly-badge-widget {
  bottom: 80px !important;
}

@media (max-width: 900px) {
    .budget-p {
    width: 100% !important;
}
  .tp-desc {
    max-width: 100%;
}
  .calendly-badge-widget {
    bottom: 100px !important;
  }
}

.arch-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-top: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out), max-height 0.4s var(--ease-out), margin-top 0.4s var(--ease-out);
}

.arch-card:hover .arch-desc {
  opacity: 1;
  max-height: 120px;
  margin-top: 10px;
}

/* ================================================================
   CASE STUDY 3 — SUPER PHOENIX DAO
   ================================================================ */
.cs3-page { background: #171717; }

.cs3-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1355px;
  margin-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #171717;
}

/* Background image */
.cs3-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cs3-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradient overlays matching Figma */
.cs3-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(10,10,10,0.5) 50%,
      rgba(10,10,10,0.95) 100%
    ),
    radial-gradient(ellipse at center,
      rgba(10,10,10,0) 0%,
      rgba(10,10,10,0.3) 100%
    );
}

/* Content */
.cs3-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--section-px) 64px;
}

.cs3-hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.cs3-hero-title {
  font-weight: 800;
  font-size: 124px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.cs3-hero-desc {
  font-size: 24px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
  max-width: 936px;
  margin-bottom: 36px;
}

.cs3-hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.cs3-hero-meta span {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.cs3-hero-meta strong {
  color: var(--yellow);
  font-weight: 700;
}

/* Logo centered */
.cs3-hero-logo {
  position: absolute;
  bottom: 64px;
  right: var(--section-px);
  z-index: 2;
}

.cs3-hero-logo img {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 900px) {
  /* .cs3-hero         { height: 85vh; min-height: 560px; } */
  .cs3-hero-content { padding: 0 var(--section-px) 48px; }
  .cs3-hero-meta    { gap: 20px; flex-direction: column; }
  .cs3-hero-logo    { display: none; }
}

/* CS3 — EXECUTIVE SUMMARY */
.cs3-summary {
  background: var(--white);
  padding: var(--section-py) var(--section-px);
}

.cs3-summary-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
    max-width: 1690px;
}

.cs3-summary-title {
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.cs3-summary-right {
    border-left: 3px solid var(--yellow);
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 880px;
}

.cs3-body-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
}

/* CS3 — THE PROBLEM */
.cs3-problem {
  background: #1C1C1C;
  padding: var(--section-py) var(--section-px);
}

.cs3-problem-inner {
  max-width: 1690px;
  margin: 0 auto;
}

.cs3-problem-title {
  font-weight: 800;
  font-size: 64px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.cs3-problem-quote {
    font-size: 20px;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    border-left: 3px solid var(--yellow);
    padding-left: 20px;
    max-width: 733px;
    margin-bottom: 56px;
}

.cs3-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cs3-problem-card {
  background: #252525;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 4px;
  transition: background var(--transition);
}

.cs3-problem-card:hover { background: #2C2C2C; }

.cs3-problem-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,200,0,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}

.cs3-problem-name {
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.cs3-problem-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  /* .cs3-summary-inner  { grid-template-columns: 1fr; gap: 40px; } */
  .cs3-summary-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: start;
    max-width: 100%;
}
  .cs3-summary-right  { padding-left: 20px; min-width: 100%;}
  .cs3-problem-grid   { grid-template-columns: 1fr; }
}

/* CS3 — PRODUCT & USER CONTEXT */
.cs3-context {
  background: var(--white);
  padding: var(--section-py) var(--section-px);
}

.cs3-context-inner { max-width: var(--max-w); margin: 0 auto; }

.cs3-context-top {
    display: flex;
    margin-bottom: 64px;
    min-width: 1344px;
}

.cs3-context-left {
    min-width: 416px;
}

.cs3-segments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-top: 1.5px solid var(--gray-line);
}

.cs3-segment {
  padding: 36px 40px 36px 0;
  border-bottom: 1.5px solid var(--gray-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs3-segment:nth-child(even) {
  padding-left: 40px;
  border-left: 1.5px solid var(--gray-line);
}

.cs3-segment:nth-last-child(-n+2) { border-bottom: none; }

.cs3-segment-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  letter-spacing: -0.01em;
}

.cs3-segment-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cs3-segment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.cs3-segment-list li {
  font-size: 14px;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}

.cs3-segment-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 8px;
  top: 3px;
}

/* CS3 — DESIGN STRATEGY */
.cs3-strategy {
  background: #1C1C1C;
  padding: var(--section-py) var(--section-px);
}

.cs3-strategy-inner { max-width: var(--max-w); margin: 0 auto; }

.cs3-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 20px;
  width: fit-content;
}

.cs3-strategy-title {
  font-weight: 800;
  font-size: 64px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.cs3-strategy-quote {
    font-size: 20px;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    border-left: 3px solid var(--yellow);
    padding-left: 20px;
    max-width: 730px;
    margin-bottom: 64px;
}

.cs3-strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 64px;
}

.cs3-strategy-card {
  background: #252525;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--transition);
}

.cs3-strategy-card:hover { background: #2C2C2C; }

.cs3-strategy-num {
    font-weight: 800;
    font-size: 96px;
    color: #ffd70033;
    line-height: 1;
    letter-spacing: -0.04em;
}

.cs3-strategy-name {
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.cs3-strategy-desc {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

.cs3-strategy-closing {
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  max-width: 860px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .cs3-context-top    { grid-template-columns: 1fr; gap: 40px; min-width: 100%;}
  .cs3-segments-grid  { grid-template-columns: 1fr; }
  .cs3-segment:nth-child(even) { padding-left: 0; border-left: none; }
  .cs3-segment:nth-last-child(-n+2) { border-bottom: 1.5px solid var(--gray-line); }
  .cs3-segment:last-child { border-bottom: none; }
  .cs3-strategy-grid  { grid-template-columns: 1fr; }
}

/* CS3 — INFORMATION ARCHITECTURE */
.cs3-ia {
  background: var(--white);
  padding: var(--section-py) var(--section-px);
}

.cs3-ia-inner { max-width: var(--max-w); margin: 0 auto; }

.cs3-ia-header {
  display: flex;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
  min-width: 1344px;
}
.cs3-ia-header-left {
    min-width: 416px;
}
.cs3-ia-subtitle {
  font-weight: 700;
  font-size: 32px;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* Flow rows */
.cs3-flows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
}

.cs3-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 28px 28px 24px;
  border-left: 3px solid var(--yellow);
  background: var(--gray-light);
  margin-bottom: 12px;
  transition: background var(--transition);
}

.cs3-flow:hover { background: #ebebeb; }

.cs3-flow-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs3-flow-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  letter-spacing: -0.01em;
}

.cs3-flow-path {
  font-size: 16px;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.02em;
}

.cs3-flow-tag {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Image grid */
.cs3-ia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cs3-ia-image {
  position: relative;
  overflow: hidden;
  background: var(--gray-dark);
  cursor: default;
}

.cs3-ia-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: opacity 0.5s var(--ease-out);
  z-index: 1;
}

.cs3-ia-image:hover::after { opacity: 0; }

.cs3-ia-image img {
  width: 100%;
  height: 492px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.cs3-ia-image:hover img { transform: scale(1.04); }

.cs3-ia-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  z-index: 2;
  transition: opacity 0.5s var(--ease-out);
}

.cs3-ia-image:hover .cs3-ia-label { opacity: 0; }

@media (max-width: 900px) {
  .cs3-ia-header { grid-template-columns: 1fr; gap: 40px; }
  .cs3-ia-grid   { grid-template-columns: 1fr; }
  .cs3-flow      { flex-direction: column; align-items: flex-start; }
}

/* CS3 — FEATURE ECOSYSTEM */
.cs3-features {
  background: #1C1C1C;
  padding: var(--section-py) var(--section-px);
}

.cs3-features-inner { max-width: var(--max-w); margin: 0 auto; }

/* Alternating feature rows */
.cs3-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cs3-feature-row:first-of-type { border-top: none; padding-top: 0; }

.cs3-feature-row--flip .cs3-feature-content { order: 2; }
.cs3-feature-row--flip .cs3-feature-img     { order: 1; }

.cs3-feature-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs3-feature-title {
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
}

.cs3-feature-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

.cs3-feature-impact {
  background: rgba(245,200,0,0.06);
  border-left: 3px solid var(--yellow);
  padding: 14px 16px;
  margin-top: 4px;
}

.cs3-feature-impact p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.cs3-feature-impact strong {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
}

.cs3-feature-impact span {
  color: var(--yellow);
  font-weight: 600;
}

.cs3-feature-img {
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #252525;
  border-radius: 4px;
  position: relative;
}

.cs3-feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: opacity 0.5s var(--ease-out);
  z-index: 1;
}

.cs3-feature-img:hover::after { opacity: 0; }

.cs3-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.cs3-feature-img:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .cs3-feature-row { grid-template-columns: 1fr; gap: 32px; padding: 15px 0;}
  .cs3-feature-row--flip .cs3-feature-content { order: 1; }
  .cs3-feature-row--flip .cs3-feature-img     { order: 2; }
}

/* CS3 — DESIGN SYSTEM THINKING */
.cs3-design-system {
  background: var(--white);
  padding: var(--section-py) var(--section-px);
}

.cs3-ds-inner { max-width: var(--max-w); margin: 0 auto; }

.cs3-ds-image {
  width: 100%;
  /* aspect-ratio: 16/9; */
  overflow: hidden;
  background: var(--gray-light);
  margin: 48px 0 56px;
  border-radius: 4px;
  position: relative;
}

.cs3-ds-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: opacity 0.5s var(--ease-out);
  z-index: 1;
}

.cs3-ds-image:hover::after { opacity: 0; }

.cs3-ds-image img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.cs3-ds-image:hover img { transform: scale(1.03); }

.cs3-ds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 56px;
}

.cs3-ds-item {
  padding: 32px 48px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs3-ds-item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
}

.cs3-ds-item:nth-last-child(-n+2) { border-bottom: none; }

.cs3-ds-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  letter-spacing: -0.01em;
}

.cs3-ds-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
}

.cs3-ds-closing {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 854px;
    padding-top: 40px;
}

.cs3-ds-closing strong {
  color: var(--black);
  font-weight: 800;
}

@media (max-width: 900px) {
  .cs3-ds-grid { grid-template-columns: 1fr; }
  .cs3-ds-item:nth-child(even) { padding-left: 0; border-left: none; }
  .cs3-ds-item:nth-last-child(-n+2) { border-bottom: 1.5px solid var(--gray-line); }
  .cs3-ds-item:last-child { border-bottom: none; }
}

/* CS3 — UI EXCELLENCE */
.cs3-ui {
  background: #1C1C1C;
  padding: var(--section-py) var(--section-px);
}

.cs3-ui-inner { max-width: var(--max-w); margin: 0 auto; }

/* 4-col principles */
.cs3-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}

.cs3-principle {
  background: #252525;
  padding: 28px 24px;
  border-top: 2px solid var(--yellow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
}

.cs3-principle:hover { background: #2C2C2C; }

.cs3-principle-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cs3-principle-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* 3-col image grid */
.cs3-ui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cs3-ui-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #252525;
  border-radius: 4px;
  cursor: default;
}

.cs3-ui-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: opacity 0.5s var(--ease-out);
  z-index: 1;
}

.cs3-ui-image:hover::after { opacity: 0; }

.cs3-ui-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.cs3-ui-image:hover img { transform: scale(1.04); }

.cs3-ui-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  transition: opacity 0.5s var(--ease-out);
}

.cs3-ui-image:hover .cs3-ui-label { opacity: 0; }

.cs3-ui-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs3-ui-label h4 {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cs3-ui-label p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cs3-principles-grid { grid-template-columns: 1fr 1fr; }
  .cs3-ui-grid         { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .cs3-principles-grid { grid-template-columns: 1fr; }
}

/* CS3 — OUTCOMES & IMPACT */
.cs3-outcomes {
  background: var(--white);
  padding: var(--section-py) var(--section-px);
}

.cs3-outcomes-inner { max-width: var(--max-w); margin: 0 auto; }

/* 4-col stat cards */
.cs3-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.cs3-stat-card {
  background: var(--gray-light);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 4px;
}

.cs3-stat-icon {
  color: var(--black);
  opacity: 0.6;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
}

.cs3-stat-num {
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cs3-stat-label {
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.cs3-stat-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Key achievements dark card */
.cs3-achievements {
  background: #1C1C1C;
  padding: 44px 48px;
  border-radius: 4px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cs3-achievements-title {
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cs3-achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cs3-achievements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs3-achievements-list li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  padding-left: 20px;
  position: relative;
}

.cs3-achievements-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 8px;
  top: 5px;
}

/* Closing paragraph */
.cs3-outcomes-closing {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 893px;
    font-weight: 500;
}

@media (max-width: 900px) {
  .cs3-stats-grid       { grid-template-columns: 1fr 1fr; }
  .cs3-achievements     { padding: 32px 28px; }
  .cs3-achievements-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .cs3-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* CS3 — REFLECTION */
.cs3-reflection {
    position: relative;
    background: #171717;
    padding: var(--section-py) var(--section-px);
    overflow: hidden;
    height: auto;
}

.cs3-reflection-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cs3-reflection-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  transition: opacity 0.5s var(--ease-out);
  z-index: 1;
}

.cs3-reflection-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.8;
  transition: opacity 0.5s var(--ease-out);
}

.cs3-reflection-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* 3-col insight cards */
.cs3-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cs3-insight-card {
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(8px);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 4px;
}

.cs3-insight-title {
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.cs3-insight-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

/* What this demonstrates */
.cs3-demonstrates {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 50px;
}

.cs3-demonstrates-title {
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cs3-demonstrates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cs3-demonstrates-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs3-demonstrates-list li {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  padding-left: 24px;
  position: relative;
}

.cs3-demonstrates-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
  font-size: 13px;
}

/* Future enhancements */
.cs3-future {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 50px 0;
}

.cs3-future-title {
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cs3-future-intro {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.cs3-future-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs3-future-list li {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  padding-left: 24px;
  position: relative;
}

.cs3-future-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* Closing */
.cs3-reflection-closing {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 680px;
}

.cs3-closing-bold {
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.cs3-closing-body {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
  .cs3-insights-grid      { grid-template-columns: 1fr; }
  .cs3-demonstrates-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 900px){
  .cs3-hero-title {
    font-size: 65px;
}
.cs3-hero-desc {
    font-size: 18px;
}
.cs3-body-text {
    font-size: 18px;
}
.cs3-ia-header {
    display: flex;
    flex-direction: column;
    min-width: 100%;
}
.cs3-context-top {
    flex-direction: column;
}
.cs3-insight-card-inner {
    flex-direction: column;
}
.cs3-insight-card-inner-left {
  width: 100% !important;
  padding-top: 0 !important;
  height: 8rem !important;
  margin-bottom: 2rem;
}
.cs3-context-left {
    min-width: 100%;
}
.cs3-ia-header-left {
    min-width: 100%;
}
}
  .cs3-insight-card-inner {
    display: flex;
    width: 100%;
}

.cs3-insight-card-inner-right {
    width: 100%;
}

.cs3-insight-card-inner-left {
    width: 92%;
    display: flex;
    padding-top: 2rem;
}
/* ============================================================
   CS4 · HERO
   ============================================================ */

.cs4-main {
  background: var(--black);
  color: var(--white);
}

.cs4-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-py) var(--section-px);
}

.cs4-hero__inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Left column ── */
.cs4-hero__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cs4-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cs4-tag {
  display: inline-block;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid #3a3a3a;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
}

.cs4-hero__title {
  font-size: 100px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

/* Reuses cs3-summary-right for the yellow left-border quote */
.cs4-hero__quote.cs3-summary-right {
  font-size: 24px;
  line-height: 1.6;
  color: #aaaaaa;
  max-width: 500px;
}

.cs4-hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
}

.cs4-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs4-hero__meta-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cs4-hero__meta-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.cs4-hero__cta {
  display: inline-block;
  align-self: flex-start;
  padding: 18px 32px;
  background: var(--gray-dark);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: background var(--transition);
}

.cs4-hero__cta:hover {
  background: var(--yellow);
  color: var(--black);
}

/* ── Right column — image card ── */
.cs4-hero__right {
  display: flex;
  justify-content: center;
}

.cs4-hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
}

.cs4-hero__img-wrap:hover::after {
  opacity: 0;
}

.cs4-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cs4-hero__inner {
    grid-template-columns: 1fr;
  }

  .cs4-hero__right {
    justify-content: center;
  }

  .cs4-hero__img-wrap {
    max-width: 100%;
  }
}

/* ============================================================
   CS4 · EXECUTIVE SUMMARY
   ============================================================ */

.cs4-exec {
    position: relative;
    background: 
        radial-gradient(circle at center, 
            rgb(0 0 0 / 51%) 40%, 
            rgb(0 0 0) 100%
        ),
        url(/wp-content/uploads/2026/04/267efc06dfff54cb551e954afdaaee628c5dc17c-scaled.png);
    
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 841.75px;
    padding: 128px;
}

/* Decorative background image — right side bleed */
.cs4-exec__bg-img-wrap {
  position: absolute;
  /* top: 0;
  right: -40px; */
  width: 100%;
  /* height: 100%;
  pointer-events: none; */
  z-index: 0;
}

.cs4-exec__bg-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    rgba(17, 17, 17, 0.72) 40%,
    rgba(17, 17, 17, 0.30) 100%
  );
  z-index: 1;
}

.cs4-exec__bg-img-wrap:hover::after {
  opacity: 0;
}

.cs4-exec__bg-img {
  width: 100%;
  /* height: 100%;
  object-fit: cover;
  object-position: center;
  display: block; */
  opacity: 0.55;
}

/* Content layer sits above bg */
.cs4-exec__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cs4-exec__eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.cs4-exec__title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0;
    max-width: 878px;
}

/* Two-column body text */
.cs4-exec__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  max-width: 1000px;
}

.cs4-exec__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Override cs3-body-text color for dark bg context */
.cs4-exec .cs3-body-text {
  color: #999999;
  line-height: 1.75;
}

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

  .cs4-exec__bg-img-wrap {
    width: 100%;
    right: 0;
  }
}

/* ============================================================
   CS4 · THE PROBLEM
   ============================================================ */

.cs4-problem {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

/* Full-bleed background image — sits behind header only */
.cs4-problem__bg-wrap {
  position: absolute;
  inset: 0;
  bottom: 42%; /* fades out before the card grid */
  z-index: 0;
  pointer-events: none;
}

.cs4-problem__bg-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.55) 0%,
    rgba(17, 17, 17, 0.80) 60%,
    var(--black) 100%
  );
  z-index: 1;
}

.cs4-problem__bg-wrap:hover::after {
  opacity: 0;
}

.cs4-problem__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: 0.6;
}

/* Content */
.cs4-problem__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 128px 0;
}

.cs4-problem__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.cs4-problem__title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0;
    max-width: 1172px;
}
/* 2×2 card grid */
.cs4-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.cs4-problem__card {
    position: relative;
    padding: 30px 48px 30px;
    background: #0A0A0A;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Remove right border on even cards (right column) */
.cs4-problem__card:nth-child(even) {
  border-right: none;
}

.cs4-problem__num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: rgba(180, 140, 30, 0.45); /* muted gold */
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 4px;
}

.cs4-problem__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

.cs4-problem .cs3-body-text {
  color: #888888;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
.cs4-problem__grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

  .cs4-problem__card {
    border-right: none;
  }

  .cs4-problem__bg-wrap {
    bottom: 55%;
  }
}

/* ============================================================
   CS4 · DESIGN STRATEGY
   ============================================================ */

.cs4-strategy {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
}

.cs4-strategy__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ── Header ── */
.cs4-strategy__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs4-strategy__title-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs4-strategy__title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0;
}

/* Quote overlaps flush below title, indented left */
.cs4-strategy__quote.cs3-summary-right {
  margin-top: -6px;
  margin-left: 2px;
  max-width: 820px;
  font-size: 24px;
  line-height: 1.72;
  color: #888888;
  /* override cs3-summary-right border color to yellow */
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
}

/* ── 3-column pillars ── */
.cs4-strategy__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.cs4-strategy__pillar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cs4-strategy__dash {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.cs4-strategy__pillar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.cs4-strategy .cs3-body-text {
  color: #777777;
  font-size: 16px;
  line-height: 1.78;
  margin: 0;
}

@media (max-width: 900px) {
  .cs4-strategy__pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   CS4 · CORE FEATURE — NFT TIERS
   ============================================================ */

/* Tier color tokens */
.cs4-tier-card--gold  { --tier-color: #C9A227; --tier-color-dim: rgba(201,162,39,0.18); --num-bg: linear-gradient(145deg, #2a2000 0%, #C9A227 60%, #ffe680 100%); }
.cs4-tier-card--silver{ --tier-color: #A0A0A0; --tier-color-dim: rgba(160,160,160,0.14); --num-bg: linear-gradient(145deg, #2a2a2a 0%, #9E9E9E 55%, #e8e8e8 100%); }
.cs4-tier-card--bronze{ --tier-color: #C47A3A; --tier-color-dim: rgba(196,122,58,0.18); --num-bg: linear-gradient(145deg, #2a1200 0%, #C47A3A 55%, #f0a060 100%); }

.cs4-tiers {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
}

.cs4-tiers__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ── Header ── */
.cs4-tiers__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs4-tiers__title {
  font-size: 60px;
  font-weight: 900;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cs4-tiers__subtitle {
  color: #888;
  max-width: 770px;
  line-height: 1.7;
}

/* ── Cards row ── */
.cs4-tiers__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cs4-tier-card {
  background: #181818;
  border: 1px solid var(--tier-color-dim);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

/* Top row: logo + barcode */
.cs4-tier-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs4-tier-card__logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--tier-color);
}

.cs4-tier-card__logo-o {
  font-weight: 400;
}

/* Barcode: 7 thin vertical bars */
.cs4-tier-card__barcode {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 22px;
}

.cs4-tier-card__barcode span {
  display: block;
  width: 3px;
  height: 100%;
  background: var(--tier-color);
  opacity: 0.7;
  border-radius: 1px;
}

.cs4-tier-card__barcode span:nth-child(2),
.cs4-tier-card__barcode span:nth-child(4),
.cs4-tier-card__barcode span:nth-child(6) {
  height: 65%;
  opacity: 0.45;
}

/* Mid: number card + meta side by side */
.cs4-tier-card__mid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Number card — glossy gradient square */
.cs4-tier-card__num-wrap {
  flex-shrink: 0;
  width: 130px;
  aspect-ratio: 3 / 4;
  background: var(--num-bg);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.cs4-tier-card__level-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

.cs4-tier-card__num {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.75);
  letter-spacing: -0.04em;
}

.cs4-tier-card__tier-name {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.50);
}

/* Meta column */
.cs4-tier-card__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}

.cs4-tier-card__meta-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cs4-tier-card__meta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
}

.cs4-tier-card__meta-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.cs4-tier-card__meta-val--accent {
  color: var(--tier-color);
}

/* Projects list */
.cs4-tier-card__projects {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs4-tier-card__projects li {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs4-tier-card__projects li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tier-color);
  flex-shrink: 0;
}

/* Footer */
.cs4-tier-card__footer {
  border-top: 1px solid var(--tier-color-dim);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.cs4-tier-card__brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tier-color);
}

.cs4-tier-card__pass {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #666;
}

/* ── Bottom insights 2-col ── */
.cs4-tiers__insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 18px;
}

.cs4-tiers__insight-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs4-tiers__insight-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

.cs4-tiers__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs4-tiers__bullets li {
  font-size: 16px;
  color: #888;
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}

.cs4-tiers__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
}

@media (max-width: 900px) {
  .cs4-tiers__cards {
    grid-template-columns: 1fr;
  }

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

/* .cs4-tier-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  border-radius: inherit;
  transition: opacity var(--transition);
  pointer-events: none;
} */

.cs4-tier-card__img-wrap:hover::after {
  opacity: 0;
}

.cs4-tier-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   CS4 · BRAND POSITIONING
   ============================================================ */

.cs4-brand {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
}

.cs4-brand__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cs4-brand__title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

/* ── 2-image row ── */
.cs4-brand__imgs {
  display: flex;
  gap: 8px;
}

.cs4-brand__img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000000;
    aspect-ratio: 16 / 10;
    height: 627.3px;
    display: flex;
    justify-content: center;
}

.cs4-ia .cs4-brand__img-wrap {
    aspect-ratio: auto !important;
    height: 100%;
}

.cs4-brand__img-wrap:hover::after {
  opacity: 0;
}

.cs4-brand__img {
  width: 85%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Quote ── */
.cs4-brand__quote.cs3-summary-right {
  max-width: 680px;
  font-size: 20px;
  line-height: 1.75;
  color: #888888;
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
}

@media (max-width: 768px) {
.cs4-brand__imgs {
    flex-direction: column;
    height: 44rem;
}
}

/* ============================================================
   CS4 · COMMUNITY BUILDING
   ============================================================ */

.cs4-community {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
}

.cs4-community__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Equal 50/50 image split (vs 45/55 in brand section) */
.cs4-community__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* 2-col text below */
.cs4-community__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 5px;
}

.cs4-community__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs4-community .cs3-body-text {
  color: #888;
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .cs4-community__imgs,
  .cs4-community__cols {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CS4 · INFORMATION ARCHITECTURE
   ============================================================ */

.cs4-ia {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
}
.cs4-community .cs4-brand__img-wrap {
    height: 100%;
}
.cs4-ia__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ── Asymmetric 2-col layout ── */
.cs4-ia__layout {
  display: flex;
  gap: 24px;
  align-items: start;
}

/* ── Left col ── */
.cs4-ia__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.cs4-ia__decor-wrap {
    width: 100%;
}
/* Tall image — portrait ratio */
.cs4-ia__img-wrap--tall {
  aspect-ratio: 3 / 4 !important;
}

/* ── Right col ── */
.cs4-ia__right {
    position: relative;
    display: flex;
    gap: 24px;
    width: 100%;
    flex-direction: column;
}

.cs4-ia__right-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Half-height image — landscape ratio */
.cs4-ia__img-wrap--half {
  aspect-ratio: 16 / 9 !important;
}

/* Decorative 3D render — large, bleeds left, positioned absolute */

.cs4-ia__decor-wrap:hover::after {
  opacity: 0;
}

.cs4-ia__decor-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── Captions ── */
.cs4-ia__caption {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs4-ia__caption-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

.cs4-ia .cs3-body-text {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .cs4-ia__layout {
    flex-direction: column;
  }

  .cs4-ia__decor-wrap {
    display: none;
  }
}

/* ============================================================
   CS4 · SYSTEM DESIGN
   ============================================================ */

.cs4-sysdesign {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
}

.cs4-sysdesign__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cs4-sysdesign__title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* ── 4-col grid ── */
.cs4-sysdesign__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cs4-sysdesign__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Shared preview box */
.cs4-sysdesign__preview {
  border-radius: 8px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c1c1c;
}

/* Col 1 — Color swatch: full yellow fill */
.cs4-sysdesign__preview--color {
  background: #e6b021;
  padding: 0;
}
.contact-area {
    display: flex;
    width: 100%;
    gap: 16px;
}

.capabilities-panel {
  top: 160px;
}
.capabilities-inner {
  align-items: flex-start;
}

section#services,
.capabilities-inner {
  overflow: visible !important;
}

.contact-area .ip-cf7-group {
    width: 50%;
}

input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel {
    background: var(--gray-dark) !important;
    border: 1.5px solid var(--gray-mid) !important;
    color: var(--white) !important;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    outline: none;
    width: 100%;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color var(--transition);
    margin-bottom: 16px;
    box-shadow: none !important;
}
.cs4-sysdesign__color-swatch {
  display: none; /* yellow bg IS the swatch */
}

/* Col 2 — Typography: "Aa" */
.cs4-sysdesign__type-sample {
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* Col 3 — Components: yellow ring */
.cs4-sysdesign__ring {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  background: transparent;
}

/* Col 4 — Spacing: 3 gray lines of different widths */
.cs4-sysdesign__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 70%;
}

.cs4-sysdesign__lines span {
  display: block;
  height: 3px;
  background: #555;
  border-radius: 2px;
}

.cs4-sysdesign__lines span:nth-child(1) { width: 100%; }
.cs4-sysdesign__lines span:nth-child(2) { width: 72%; }
.cs4-sysdesign__lines span:nth-child(3) { width: 48%; }

/* Labels & body */
.cs4-sysdesign__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

.cs4-sysdesign .cs3-body-text {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

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

@media (max-width: 480px) {
  .cs4-sysdesign__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CS4 · IMPACT
   ============================================================ */

.cs4-impact {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
}

.cs4-impact__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.cs4-impact__title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

/* ── 3-col stat grid ── */
.cs4-impact__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #2a2a2a;
}

.cs4-impact__stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 48px 40px 0;
  border-right: 1px solid #2a2a2a;
}

.cs4-impact__stat:last-child {
  border-right: none;
  padding-right: 0;
}

.cs4-impact__stat:not(:first-child) {
  padding-left: 48px;
}

.cs4-impact__stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.03em;
  line-height: 1;
}

.cs4-impact__stat-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

.cs4-impact .cs3-body-text {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* ── Large quote ── */
.cs4-impact__quote-wrap.cs3-summary-right {
  border-left: 3px solid var(--yellow);
  padding-left: 24px;
  max-width: 860px;
}

.cs4-impact__quote {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  color: #777;
  line-height: 1.75;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .cs4-impact__stats {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .cs4-impact__stat {
    border-right: none;
    border-top: 1px solid #2a2a2a;
    padding: 32px 0;
  }

  .cs4-impact__stat:not(:first-child) {
    padding-left: 0;
  }
}

/* ============================================================
   CS4 · REFLECTION
   ============================================================ */

.cs4-reflection {
  background: var(--black);
  padding: var(--section-py) var(--section-px);
}

.cs4-reflection__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cs4-reflection__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

/* 2-col bullet layout */
.cs4-reflection__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.cs4-reflection__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs4-reflection__col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Reuse cs4-tiers__bullets — yellow dots already defined */

/* Divider */
.cs4-reflection__divider {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin: 0;
}

/* Closing statement — centered, muted */
.cs4-reflection__closing {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.75;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.budget-p {
    width: 50%;
}
@media (max-width: 768px) {
  .ip-popup-submit {
    width: 100% !important;
}
  span.wpcf7-list-item-label {
    font-size: 14px !important;
}
  section.cs4-hero {
    height: 100%;
}

h1.cs4-hero__title {
    font-size: 56px;
}

p.cs4-hero__quote.cs3-summary-right {
    font-size: 16px;
}

span.cs4-hero__meta-value {
    font-size: 16px;
}

a.cs4-hero__cta {
    font-size: 14px;
}

.cs4-hero__left {
    margin-top: 4rem;
}

section.cs4-exec {
    height: auto;
    padding: 48px var(--section-px);
}

h2.cs4-exec__title {
    font-size: 44px;
}

.cs4-problem__inner {
    padding: 48px var(--section-px);
}

h2.cs4-problem__title {
    max-width: fit-content;
    font-size: 44px;
}

h2.cs4-strategy__title {
    font-size: 44px;
}

p.cs4-strategy__quote.cs3-summary-right {
    font-size: 16px;
    margin-top: 22px;
}

h2.cs4-tiers__title {
    font-size: 44px;
}

h2.cs4-brand__title {
    font-size: 44px;
}
  .cs4-reflection__cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   CS4 · CTA FOOTER
   ============================================================ */

.cs4-cta-footer {
  background: var(--gray-dark);
  padding: var(--section-py) var(--section-px);
}

.cs4-cta-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}

.cs4-cta-footer__title {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.cs4-cta-footer__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cs4-cta-footer__btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

/* Yellow filled */
.cs4-cta-footer__btn--primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
}

.cs4-cta-footer__btn--primary:hover {
  background: transparent;
  color: var(--yellow);
}

/* White outline */
.cs4-cta-footer__btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cs4-cta-footer__btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

@media (max-width: 480px) {
  .cs4-cta-footer__btns {
    flex-direction: column;
    width: 100%;
  }

  .cs4-cta-footer__btn {
    text-align: center;
  }
}
.arch-btn--prev {
  left: 5px;
  right: auto;
}
@media (max-width: 768px) {
  .arch-btn--prev {
    display: none !important;
  }
}

/* ================================================================
   PRIVACY POLICY PAGE
   ================================================================ */

.privacy-page {
  background: var(--white);
  padding-top: var(--nav-h);
  min-height: 100vh;
}

.privacy-inner {
  max-width: 1238px;
  margin: 0 auto;
  padding: 80px var(--section-px) 120px;
}

.privacy-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 56px;
}

.privacy-content h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}

.privacy-content p {
    font-size: 18px;
    line-height: 32px;
    color: var(--text-body);
    margin-bottom: 12px;
}

.privacy-content ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-content ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}

.privacy-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

.privacy-content a {
  color: var(--black);
  font-weight: 600;
  border-bottom: 1px solid var(--yellow);
  transition: color var(--transition);
}

.privacy-content a:hover {
  color: var(--yellow);
}

@media (max-width: 768px) {
  .privacy-inner {
    padding: 48px var(--section-px) 80px;
  }
  .arch-card:hover .arch-desc {
    max-height: 100%;
}
.arch-btn-float {
    width: 50px;
    height: 50px;
}
}

/* ================================================================
   CF7 VALIDATION — tip always below its field
   ================================================================ */

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.wpcf7-not-valid-tip {
  display: block;
  color: #ff5050;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 6px;
  margin-bottom: 0;
  text-align: end;
}

/* Budget field — tip sits below the whole row, not inside flex */
.ip-budget-field {
  flex-wrap: wrap;
}

.ip-budget-field .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ip-budget-field .wpcf7-not-valid-tip {
  width: 100%;
}

/* Project-Budget row — stack tips below each field */
.ip-cf7-group.Project-Budget .wpcf7-not-valid-tip {
  display: block;
  width: 100%;
}

/* On mobile — prev sits on left of the LAST visible card */
@media (max-width: 768px) {
  .arch-btn--prev {
    display: none !important;
  }

  /* Show prev only when slider has moved — handled via JS class */
  .arch-slider-outer.has-prev .arch-btn--prev {
    display: flex !important;
    left: 5px;
    right: auto;
  }
}

/* ================================================================
   CF7 — TERMS OF SERVICE CHECKBOX
   ================================================================ */

.ip-tos-wrap {
  margin-top: 12px;
  margin-bottom: 4px;
}

.ip-tos-wrap .wpcf7-form-control-wrap {
  display: inline;
}

.ip-tos-wrap .wpcf7-acceptance {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ip-tos-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}

.ip-tos-checkbox input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  accent-color: var(--yellow);
  cursor: pointer;
  margin: 0 !important;
  padding: 0 !important;
  border: 1.5px solid var(--gray-mid) !important;
  background: var(--gray-dark) !important;
  flex-shrink: 0;
}

.ip-tos-link {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.ip-tos-link:hover {
  color: var(--white);
}

/* Validation tip for acceptance field */
.ip-tos-wrap .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #ff5050;
  font-size: 11px;
  font-weight: 600;
}
.wpcf7-list-item {
    margin: 0;
}

span.wpcf7-list-item-label {
    color: #fff;
    font-size: 18px;
}

.ip-tos-wrap .wpcf7-form-control-wrap label {
    display: flex;
    gap: 14px;
}