/* ============================================================
   SCOVILLE DESIGN SYSTEM
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ---- Custom Properties ---- */
:root {
  /* Colors */
  --color-text:        #333333;
  --color-text-muted:  #979797;
  --color-text-light:  #a9a9a9;
  --color-dark:        #2b2b2b;
  --color-darker:      #1e1e1e;
  --color-gray:        #7b7b7b;
  --color-border:      #e1e1e1;
  --color-border-light:#c8c8c8;
  --color-bg-light:    #f8f8f8;
  --color-accent:      #f74636;
  --color-accent-2:    #fd5005;
  --color-cyan:        #53b4fc;
  --color-white:       #ffffff;

  /* Gradients */
  --gradient-red:      linear-gradient(135deg, #ff0000 0%, #ffc49a 100%);
  --gradient-salmon:   linear-gradient(135deg, #ffc3a0 0%, #ffafbd 100%);
  --gradient-blue:     linear-gradient(135deg, #51abff 0%, #65f0e8 100%);
  --gradient-purple:   linear-gradient(180deg, #b261ff 0%, #ffa7a7 100%);
  --gradient-green:    linear-gradient(315deg, #c0e8a0, #50c9c3);
  --gradient-yellow:   linear-gradient(135deg, #ffe465 0%, #ffc49a 100%);
  --gradient-dark:     linear-gradient(90deg, #393939 0%, #7d7d7d 100%);
  --gradient-teal:     linear-gradient(90deg, #50c9c3 0%, #c0e8a0 100%);

  /* Typography */
  --font-mono:   'IBM Plex Mono', monospace;
  --font-body:   'Inter', sans-serif;
  --font-jp:     'Noto Sans JP', sans-serif;

  /* Spacing */
  --nav-height-top: 50px;
  --nav-height-main: 74px;
  --nav-total: 124px;

  /* Layout */
  --max-width: 1400px;
  --gutter: 40px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0.4, 0, 1);
  --transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ---- Scroll-triggered fade-in animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.4, 0, 1),
              transform 0.6s cubic-bezier(0.4, 0.4, 0, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.from-left {
  transform: translateX(-60px);
}

.animate-on-scroll.from-right {
  transform: translateX(60px);
}

.animate-on-scroll.from-left.is-visible,
.animate-on-scroll.from-right.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.bounce-in {
  transform: scale(0.85) translateY(30px);
}

.animate-on-scroll.bounce-in.is-visible {
  transform: scale(1) translateY(0);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-on-scroll.stagger-1 { transition-delay: 0.05s; }
.animate-on-scroll.stagger-2 { transition-delay: 0.1s; }
.animate-on-scroll.stagger-3 { transition-delay: 0.15s; }
.animate-on-scroll.stagger-4 { transition-delay: 0.2s; }
.animate-on-scroll.stagger-5 { transition-delay: 0.25s; }
.animate-on-scroll.stagger-6 { transition-delay: 0.3s; }
.animate-on-scroll.stagger-7 { transition-delay: 0.35s; }
.animate-on-scroll.stagger-8 { transition-delay: 0.4s; }
.animate-on-scroll.stagger-9 { transition-delay: 0.45s; }

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-fade-in {
  animation: heroFadeIn 0.6s cubic-bezier(0.4, 0.4, 0, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-fade-in {
    animation: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-label--dark {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   TOP BAR
   ============================================================ */

.top-bar {
  background: var(--color-dark);
  height: var(--nav-height-top);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top-bar__brand {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgb(169, 169, 169);
  letter-spacing: normal;
}

.top-bar__lang {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar__lang a {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.top-bar__lang a:hover,
.top-bar__lang a.active {
  color: var(--color-white);
}

.top-bar__lang-sep {
  display: none;
}

.top-bar__globe {
  width: 19px;
  height: 19px;
  color: var(--color-white);
}

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */

.nav {
  background: var(--color-white);
  height: var(--nav-height-main);
  display: flex;
  align-items: center;
  position: fixed;
  top: var(--nav-height-top);
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 22px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 4px;
  transition: var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

.nav__link:hover {
  background: var(--color-bg-light);
  color: var(--color-accent);
}

.nav__link .chevron {
  width: 14px;
  height: 14px;
  opacity: 0.4;
  transition: var(--transition-fast);
}

.nav__item:hover .chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  min-width: 260px;
  padding: 8px;
  padding-top: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: var(--transition-fast);
}

.nav__item:hover .nav__dropdown,
.nav__item.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.nav__dropdown-item:hover {
  background: var(--color-bg-light);
}

.nav__dropdown-category {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.nav__dropdown-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.nav__dropdown-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

.nav__dropdown-icon {
  width: 20px;
  height: 20px;
  grid-row: 1 / 20;
  align-self: center;
}

.nav__dropdown-item:has(.nav__dropdown-icon) {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 10px;
}

.nav__dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: 6px 0;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-inquiry {
  background: linear-gradient(135deg, #ff0000, #ffc49a);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 400;
  height: 40px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-inquiry:hover {
  background: var(--color-white);
  border-color: #ff0000;
  color: #ff0000;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  width: 28px;
  height: 28px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
}

.nav__hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger span:nth-child(1) { top: 6px; }
.nav__hamburger span:nth-child(2) { top: 13px; }
.nav__hamburger span:nth-child(3) { top: 20px; }

/* ============================================================
   PAGE OFFSET (for fixed nav)
   ============================================================ */

.page-content {
  padding-top: var(--nav-total);
}

.page-content--dark {
  background: var(--color-dark);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: #f8f8f8;
}

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

.hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__body {
  font-size: 17px;
  color: var(--color-gray);
  line-height: 1.65;
  max-width: 480px;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: calc(-1 * var(--gutter));
  margin-right: calc((100vw - var(--max-width)) / -2 - var(--gutter));
}

.hero__image img {
  width: auto;
  max-width: none;
  height: auto;
  max-height: 600px;
}

/* Client logos bar */
.client-logos-section {
  background: var(--color-white);
  padding: 48px 0;
}

.client-logos {
  margin-top: 0;
  padding-top: 0;
}

.client-logos__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.client-logo {
  border-radius: 20px;
  overflow: visible;
}

.client-logo h2 {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  margin: 10px 0 0;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 10px 0px;
}

.client-logo--jt       { background: var(--gradient-blue); }
.client-logo--toyota   { background: #f74636; }
.client-logo--smbc     { background: var(--gradient-purple); }
.client-logo--dentsu   { background: var(--gradient-green); }
.client-logo--mizuho   { background: var(--gradient-yellow); }

/* ============================================================
   DARK TRANSFORM SECTION
   ============================================================ */

.section-transform {
  background: var(--color-dark);
  padding: 80px 0;
  overflow: hidden;
}

.section-transform__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
}

.section-transform__label {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: none;
  margin-bottom: 20px;
}

.section-transform__subtitle {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.section-transform__rotate {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.3;
}

.section-transform__rotate .rotating-text {
  display: block;
  color: var(--color-white);
}

.section-transform__arrow-link {
  display: inline-block;
  margin-top: 40px;
}

.section-transform__arrow {
  width: 185px;
  height: auto;
  animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(12px); }
}

.section-transform__illustration {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: -80px 0;
}

.section-transform__illustration img {
  width: auto;
  max-height: calc(100% + 160px);
  height: auto;
  max-width: 100%;
  display: block;
  opacity: 0.4;
  transition: opacity var(--transition), transform var(--transition);
}

.section-transform__illustration img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* ============================================================
   COMPETENCIES SECTION
   ============================================================ */

.section-competencies {
  padding: 80px 0;
  background: var(--color-bg-light);
  text-align: center;
}

.section-competencies .section-label {
  display: inline-block;
}

.section-competencies .section-label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  margin: 0 auto 8px;
}

.section-competencies__title {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 auto 48px;
}

.overview-cone {
  margin-bottom: 48px;
}

.overview-cone img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

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

.service-card {
  padding: 32px;
  text-align: left;
  border-top: none;
  position: relative;
}

.service-card::before {
  content: '';
  display: block;
  width: 1px;
  height: 69px;
  margin: 0 auto 32px;
  background: #2B2B2B;
}

.service-card:nth-child(1)::before { background: #50c9c3; }
.service-card:nth-child(2)::before { background: #51abff; }
.service-card:nth-child(3)::before { background: #ffc49a; }

.service-card__illustration {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

.service-card__tag {
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 12px;
}

.service-card__title {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 12px;
}

.service-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ============================================================
   CONSULTING SECTION
   ============================================================ */

.section-consulting {
  padding: 80px 0 100px;
  text-align: center;
}

.section-consulting .section-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fd5005;
}

.section-consulting .section-label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  margin: 0 auto 8px;
}

.section-consulting__title {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1.3;
  margin-bottom: 40px;
  white-space: nowrap;
}

.consulting-cards {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 16px;
  align-items: stretch;
  max-height: 460px;
}

.consulting-cards__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consulting-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
}

.consulting-card--main {
  background: linear-gradient(135deg, #50c9c3 0%, #c0e8a0 100%);
  padding: 40px;
  justify-content: flex-end;
  align-items: flex-start;
}

.consulting-card--main .consulting-card__img {
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
  margin: 0 auto 24px;
}

.consulting-card--secondary {
  flex: 1;
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 24px;
  border-radius: 16px;
}

.consulting-card--secondary .consulting-card__img {
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.consulting-card__label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  padding: 0;
}

.consulting-card--main .consulting-card__label {
  color: var(--color-text);
  font-size: 14px;
  align-self: flex-start;
}

.consulting-card--secondary .consulting-card__label {
  margin-top: 16px;
  text-align: center;
}

.consulting-card {
  transition: transform var(--transition), box-shadow var(--transition);
}

.consulting-card:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */

.section-products {
  padding: 100px 0;
  background: var(--color-bg-light);
}

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

.section-products__title {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  max-width: 560px;
}

.link-see-all {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.link-see-all:hover {
  opacity: 0.7;
}

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

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 24px;
  transition: var(--transition);
  display: block;
}

.product-card:hover {
  border-color: var(--color-cyan);
  box-shadow: 0 4px 20px rgba(83, 180, 252, 0.12);
  transform: translateY(-2px);
}

.product-card__category {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-card__title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.product-card__body {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
}

/* ============================================================
   APPROACH SECTION
   ============================================================ */

.section-approach {
  padding: 100px 0;
  background: var(--color-dark);
}

.section-approach__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 8px;
}

.section-approach__label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto 8px;
}

.section-approach__heading {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 60px;
}

.section-approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-approach .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-approach__title {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--color-white);
}

.section-approach__body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.section-approach__arrow {
  margin-top: 32px;
  display: block;
  width: 240px;
  height: auto;
  transition: transform var(--transition);
}

.section-approach__arrow:hover {
  transform: translateX(16px) scale(1.05);
}

.approach-quote {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  border-left: 3px solid var(--color-accent);
  padding-left: 24px;
  margin-top: 32px;
}

.section-approach__illustration {
  order: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-approach__illustration img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}

/* ============================================================
   CUSTOMER SUCCESS SECTION
   ============================================================ */

.section-success {
  padding: 0 0 80px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
  background: transparent;
}

.section-success__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.section-success__inner > div:first-child {
  padding: 56px;
}

.section-success .section-label {
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
}

.section-success__title {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  color: #393939;
  line-height: 1.3;
}

.section-success__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #979797;
  line-height: 1.7;
  margin-top: 24px;
}

.section-success__brand {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  color: #979797;
  margin-top: 32px;
}

.section-success__illustration {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  height: 100%;
}

.section-success__illustration img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  display: block;
  margin-left: 20px;
}

/* ============================================================
   CASE STUDIES SECTION
   ============================================================ */

.section-case-studies {
  padding: 80px 0;
  overflow: visible;
}

.section-label--white {
  color: rgba(255, 255, 255, 0.7);
}

.case-studies-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  width: 1200px;
  height: 450px;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(135deg, #b261ff, #ffa7a7);
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.case-studies-left {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.case-studies-heading {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}

.case-studies-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  flex: 1;
}

.case-studies-divider {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: auto;
}

.case-studies-right {
  position: relative;
  overflow: visible;
}

.case-studies-right__bg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 90%;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
}

.case-study-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  width: 510px;
  height: 281px;
  display: block;
  transition: var(--transition);
  position: absolute;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.case-studies-right .case-study-card:nth-child(2) {
  top: -60px;
  left: -40px;
}

.case-study-card--offset {
  top: 220px;
  right: -20px;
  left: auto;
}

.case-study-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.case-study-card__mesh {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 140px;
  height: auto;
  opacity: 0.9;
}

.case-study-card__category {
  display: none;
}

.case-study-card__title {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 400;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.case-study-card__subtitle {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  color: #2b2b2b;
}

/* ============================================================
   COMPANY STATS SECTION
   ============================================================ */

.section-brand-story {
  padding: 100px 0 280px;
  background: var(--color-bg-light);
}

.brand-story-header {
  margin-bottom: 40px;
  text-align: left;
  margin-left: 50%;
}

.brand-story-header__title {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #393939;
}

.brand-story-header__body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1.65;
  max-width: 600px;
}

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

.brand-story-grid > :nth-child(2) {
  transform: translateY(120px);
}

.brand-story-card {
  display: block;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-white);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.brand-story-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.brand-story-card--plain {
  cursor: default;
}

.brand-story-card--plain:hover {
  border-color: var(--color-border);
  box-shadow: none;
}

.brand-story-card__label {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.brand-story-card__title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--color-text);
}

.brand-story-card__body {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.65;
}

.brand-story-card--large {
  position: relative;
  padding-left: 180px;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.brand-story-card__illustration {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  height: 110%;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.35;
}

.brand-story-card--history {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.brand-story-card__comma {
  width: 54px;
  height: auto;
  opacity: 0.85;
}

.brand-story-card__text {
  display: flex;
  flex-direction: column;
}

/* ============================================================
   DIFFERENTIATORS SECTION
   ============================================================ */

.section-diff {
  padding: 100px 0;
  background: var(--color-dark);
  background-image: url('../assets/images/diff-watermark.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 var(--gutter);
}

.section-diff__header {
  margin-bottom: 56px;
}

.section-diff__heading {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #ffffff;
}

.section-diff__subheading {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.5;
}

.section-diff__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.diff-item {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
}

.diff-item:nth-child(2) {
  margin-top: 40px;
}

.diff-item:nth-child(3) {
  margin-top: 80px;
}

.diff-item__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.diff-item__tag {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 12px;
}

.diff-item__title {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.3;
  color: #393939;
}

.diff-item__body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #979797;
  line-height: 1.65;
}

/* ============================================================
   TEAM / TESTIMONIAL SECTION
   ============================================================ */

.section-team {
  padding: 100px 0;
  background: var(--color-white);
}

.section-team__heading {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  color: #393939;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-team__intro {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1.65;
}

.team-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.testimonial {
  background: var(--color-dark);
  background-image: url('../assets/images/diff-watermark.png');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}

.testimonial__quote {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial__meta {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #979797;
  margin-bottom: 4px;
}

.testimonial__author {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #979797;
}

.team-bottom {
  display: flex;
  gap: 24px;
  align-items: start;
}

.team-card {
  display: block;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  width: 542px;
  height: 280px;
}

.team-bottom .team-card:nth-child(2) {
  margin-top: 40px;
}

.team-card--has-photo {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
  width: 542px;
  height: 280px;
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__content {
  padding: 28px;
}

.team-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-card__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 10px;
}

.team-card__title {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 400;
  color: #393939;
  line-height: 1.3;
  margin-bottom: 10px;
}

.team-card__body {
  font-size: 18px;
  font-weight: 400;
  color: #979797;
  line-height: 1.65;
}

/* ============================================================
   HIRING CTA SECTION
   ============================================================ */

.section-hiring {
  padding: 100px 0;
  background: var(--gradient-red);
  position: relative;
  overflow: hidden;
}

.section-hiring::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.05) 40px, rgba(255,255,255,0.05) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.05) 40px, rgba(255,255,255,0.05) 41px);
}

.section-hiring__inner {
  position: relative;
}

.section-hiring__label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-hiring__title {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-hiring__subtitle {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.btn-positions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition-fast);
}

.btn-positions:hover {
  background: #000;
  color: var(--color-white);
}

/* ============================================================
   JOIN US / WE'RE HIRING
   ============================================================ */

.section-join {
  padding: 80px 0;
}

.section-join__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.section-join__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-join__title {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-join__subtitle {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--color-text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--color-darker);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.footer__globe {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 500px;
  height: 500px;
  opacity: 0.12;
  pointer-events: none;
  filter: invert(1);
}

.footer__container {
  padding: 0 40px;
}

.footer__top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer__company {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 32px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__row {
  display: grid;
  grid-template-columns: 20px 100px 1fr;
  gap: 12px;
  align-items: start;
}

.footer__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  position: relative;
  margin-top: 1px;
}

.footer__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.footer__label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  color: #979797;
  padding-top: 2px;
}

.footer__value {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.7;
}

.footer__value a {
  color: var(--color-white);
}

.footer__value a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__privacy {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  transition: var(--transition-fast);
}

.footer__privacy:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer__copy {
  font-size: 12px;
  color: var(--color-white);
  font-family: var(--font-mono);
  font-weight: 700;
}

.footer__tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
}

/* ============================================================
   PAGE HEROES (inner pages)
   ============================================================ */

.page-hero {
  max-width: 1200px;
  margin: 60px auto 0;
  border-radius: 20px;
  padding: 64px 80px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero--green {
  background: var(--gradient-green);
}

.page-hero--red {
  background: var(--gradient-red);
}

.page-hero--salmon {
  background: var(--gradient-salmon);
}

.page-hero--dark {
  background: var(--color-dark);
}

.page-hero--about {
  background: #f8f8f8;
  max-width: 100%;
  border-radius: 0;
  min-height: 500px;
  padding: 80px 0;
  margin-top: 0;
}

.page-hero--about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.page-hero--about .page-hero__breadcrumb {
  position: static;
  color: #979797;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
}

.page-hero--about .page-hero__title {
  color: #f74636;
  font-size: 50px;
  max-width: 900px;
}

.page-hero--about .page-hero__subtitle {
  color: #f74636;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.15;
  max-width: 900px;
}

.page-hero--about::after {
  display: none;
}

.page-hero--about .page-hero__wireframe {
  right: -250px;
  bottom: -150px;
  width: 800px;
  opacity: 0.45;
}

.page-hero--approach {
  background: #393939;
  max-width: 100%;
  border-radius: 0;
  margin-top: 0;
  padding: 120px 0 100px;
  min-height: auto;
}

.page-hero--approach .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.page-hero--approach .page-hero__breadcrumb {
  position: static;
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 40px;
}

.page-hero--approach .page-hero__title {
  font-size: 50px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  max-width: 900px;
}

.page-hero--approach::after {
  display: none;
}

.page-hero--approach .page-hero__wireframe {
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  width: 600px;
  opacity: 0.25;
}

.page-hero__breadcrumb {
  position: absolute;
  top: 32px;
  left: 80px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.page-hero__breadcrumb-parent {
  color: #393939;
}

.page-hero__title {
  font-family: var(--font-mono);
  font-size: 50px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  max-width: 700px;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 36px;
  left: 80px;
  width: 40px;
  height: 3px;
  background: #ffffff;
}

.page-hero__subtitle {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
  max-width: 700px;
  margin-top: 8px;
}

.page-hero__body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 600px;
  margin-top: 20px;
}

.page-hero__wireframe {
  position: absolute;
  right: -180px;
  bottom: -120px;
  width: 700px;
  height: auto;
  pointer-events: none;
  opacity: 0.55;
}

.page-hero__pattern {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 360px;
  height: 360px;
  opacity: 0.15;
  pointer-events: none;
}

/* ============================================================
   404 ERROR PAGE
   ============================================================ */

.error-section {
  display: flex;
  justify-content: center;
  padding: 40px 24px 60px;
  background: var(--color-white);
}

.error-card {
  width: 100%;
  max-width: 80%;
  background: var(--gradient-red);
  border-radius: 30px;
  padding: 0 30px 30px;
  overflow: hidden;
  position: relative;
}

.error-code {
  font-family: var(--font-mono);
  font-size: 200px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1;
  text-align: center;
  margin: 0;
  padding-top: 30px;
}

.error-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.error-message {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
  white-space: nowrap;
  text-align: center;
}

.error-pepper {
  width: 550px;
  height: auto;
  align-self: flex-end;
  margin-right: -30px;
  margin-top: 10px;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */

.thankyou-section {
  display: flex;
  justify-content: center;
  padding: 40px 24px 60px;
  background: var(--color-white);
}

.thankyou-card {
  width: 100%;
  max-width: 750px;
  background: linear-gradient(135deg, #ff0000, #ffc49a);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.thankyou-plane {
  width: 180px;
  height: auto;
  margin-bottom: 32px;
}

.thankyou-heading {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 20px;
}

.thankyou-message {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 480px;
}

.thankyou-btn {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #ff0000;
  background: var(--color-white);
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
}

.thankyou-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.pp-section {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 80px 24px 120px;
  background-color: #f4f4f4;
}

.pp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/privacy-policy-bg.png');
  background-size: contain;
  background-position: center top;
  background-repeat: repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.pp-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 90%;
  background: var(--color-white);
  border-radius: 30px;
  padding: 100px;
}

.pp-lang-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.pp-lang-toggle a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  padding: 10px 30px;
  border-radius: 10px;
  background: #393939;
  text-decoration: none;
  transition: var(--transition-fast);
}

.pp-lang-toggle a.active {
  background: #f74636;
}

.pp-lang-toggle a:hover {
  opacity: 0.85;
}

.pp-title {
  font-family: var(--font-body);
  font-size: 45px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 40px;
}

.pp-subtitle {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 48px;
  margin-bottom: 24px;
}

.pp-card p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pp-card p strong {
  font-weight: 700;
  color: var(--color-text);
}

.pp-card p a,
.pp-card p a:visited {
  color: #f74636;
  text-decoration: underline;
}

.pp-card p a:hover {
  text-decoration: none;
}

/* ============================================================
   INQUIRY PAGE
   ============================================================ */

/* Inquiry page */
.inquiry-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px 120px;
  overflow: hidden;
}

.inquiry-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #f4f4f4;
  background-image: url('../assets/images/inquiry-watermark.png');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-blend-mode: lighten;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.inquiry-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
}

.inquiry-heading {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 70px;
}

.inquiry-card {
  width: 100%;
  background: var(--color-white);
  border: 1px solid #000;
  border-radius: 20px;
  padding: 60px;
}

.inquiry-card__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.inquiry-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.inquiry-form-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.inquiry-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 calc(50% - 15px);
}

.inquiry-input {
  width: 100%;
  height: 50px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid #eee;
  border-radius: 0;
  transition: border-color var(--transition-fast);
  appearance: none;
}

.inquiry-input::placeholder {
  color: #999;
}

.inquiry-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.inquiry-textarea {
  flex: 1;
  min-height: 230px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid #eee;
  border-radius: 0;
  resize: vertical;
  transition: border-color var(--transition);
  appearance: none;
}

.inquiry-textarea::placeholder {
  color: #999;
}

.inquiry-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.inquiry-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 177px;
  height: 54px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  border: 2px solid var(--color-white);
  border-radius: 7px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.inquiry-send:hover {
  background: #e03020;
  transform: translateY(-1px);
}

/* ============================================================
   SERVICE PAGES (consulting / industries / technologies)
   ============================================================ */

.section-service-intro {
  padding: 80px 0;
}

.service-intro__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-intro__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.service-intro__title {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 24px;
}

.service-intro__body {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

.service-intro__cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
}

.service-intro__cta:hover {
  opacity: 0.75;
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-highlight {
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
}

.service-highlight__title {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.service-highlight__body {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
}

.section-service-cards {
  padding: 0 0 100px;
}

.section-service-cards__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

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

.service-detail-card {
  background: var(--color-white);
  padding: 40px 32px;
}

.service-detail-card__number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.service-detail-card__title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-detail-card__body {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
}

/* ============================================================
   TECHNOLOGIES PAGE
   ============================================================ */

/* Technologies Hero */
.tech-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 50px 80px;
  text-align: center;
}

.tech-hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 40px;
}

.tech-hero__title {
  font-family: var(--font-mono);
  font-size: 60px;
  font-weight: 400;
  color: #50C9C3;
  line-height: 1;
  margin-bottom: 40px;
}

.tech-hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Tech Category Sections */
.section-tech-category {
  padding: 80px 0;
}

.tech-category__intro {
  margin-bottom: 60px;
}

.tech-category__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 20px;
}

.tech-category__heading {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  margin-bottom: 16px;
  max-width: 700px;
}

.tech-category__desc {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  max-width: 700px;
}

/* Tech Grid */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* AI grid: illustration in col 1 spanning rows 1-2 */
.tech-grid .tech-grid__illustration--ai {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* IoT grid: illustration in col 2 spanning rows 1-2 */
.tech-grid--iot .tech-grid__illustration--iot {
  grid-column: 2;
  grid-row: 1 / 3;
}

/* Tech Illustration */
.tech-grid__illustration {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: linear-gradient(135deg, #50C9C3, #C0E8A0);
}

.tech-grid__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.tech-grid__illustration-label {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

/* Tech Cards */
.tech-card {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 40px;
}

.tech-card__title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 20px;
  text-align: center;
}

.tech-card__body {
  font-size: 17px;
  color: #979797;
  line-height: 1.6;
}

.tech-card__image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.tech-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   DIGITAL CONSULTING PAGE
   ============================================================ */

.dc-intro {
  padding: 80px 0;
}

.dc-intro__subtitle {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  color: #393939;
  line-height: 1.3;
  max-width: 1100px;
  margin-left: 100px;
  margin-bottom: 80px;
}

.dc-feature-rows {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin-left: auto;
}

.dc-feature-row {
  display: grid;
  grid-template-columns: 60px 200px 1fr;
  align-items: center;
  gap: 0 40px;
}

.dc-feature-row__icon {
  width: 60px;
  height: auto;
  opacity: 0.7;
}

.dc-feature-rows__sep {
  padding-left: 22px;
  margin: 12px 0;
}

.dc-feature-rows__sep img {
  width: 14px;
  height: 54px;
  display: block;
}

.dc-feature-row__title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: #393939;
}

.dc-feature-row__body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: #393939;
  line-height: 1.65;
}

.dc-callout {
  padding: 100px 0;
  background: #ffffff;
}

.dc-callout__text {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 400;
  color: #393939;
  line-height: 1.35;
  max-width: 1000px;
}

.dc-benefits {
  padding: 80px 0;
  background: #ffffff;
}

.dc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 372px);
  gap: 40px;
  justify-content: center;
}

.dc-benefit {
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.dc-benefit__title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: #393939;
  margin-bottom: 20px;
  line-height: 1.3;
}

.dc-benefit__img {
  width: 285px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.dc-benefit__body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: #a9a9a9;
  line-height: 1.65;
  text-align: left;
}

.dc-links {
  padding: 0;
  background: #f7f7f7;
}

.dc-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #e0e0e0;
}

.dc-link-card {
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
  padding: 48px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
  border: 1px solid #e0e0e0;
}

.dc-link-card:hover {
  background: #f0f0f0;
}

.dc-link-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.dc-link-card__icon {
  width: 56px;
  height: 56px;
}

.dc-link-card__title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: #393939;
  line-height: 1.3;
}

.dc-link-card__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #a9a9a9;
  line-height: 1.65;
  flex: 1;
}

.dc-link-card__arrow {
  display: block;
  width: 134px;
  height: 19px;
  margin-top: 32px;
  margin-left: auto;
  transition: transform var(--transition);
}

.dc-link-card:hover .dc-link-card__arrow {
  transform: translateX(12px);
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */

/* Industries Hero */
.ind-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 50px 80px;
  text-align: center;
}

.ind-hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 40px;
}

.ind-hero__title {
  font-family: var(--font-mono);
  font-size: 60px;
  font-weight: 400;
  color: #50C9C3;
  line-height: 1;
  margin-bottom: 40px;
}

.ind-hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Industries Cards */
.ind-section {
  padding: 40px 0 100px;
}

.ind-card {
  border: 1px solid #979797;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 90%;
}

.ind-card:nth-child(2) {
  margin-left: auto;
  margin-right: 5%;
}

.ind-card:last-child {
  margin-bottom: 0;
}

.ind-card__left {
  flex: 0 0 220px;
}

.ind-card__title {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: #50C9C3;
  line-height: 1.2;
  margin-bottom: 24px;
}

.ind-card__intro {
  font-size: 16px;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1.6;
}

.ind-card__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ind-card__image {
  border-radius: 20px;
  overflow: hidden;
}

.ind-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ind-card__features {
  display: flex;
  gap: 40px;
}

.ind-card__feature {
  flex: 1;
}

.ind-card__feature-title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.ind-card__feature-body {
  font-size: 15px;
  font-weight: 400;
  color: #979797;
  line-height: 1.6;
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

.section-about-hr {
  padding: 100px 0;
  border-bottom: 1px solid var(--color-border);
}

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

.about-hr__diagram img {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.about-hr__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.about-hr__title {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text);
}

.section-about-clients {
  padding: 60px 0;
}

.about-clients__card {
  max-width: 1400px;
  margin: 0 auto;
  background: #2b2b2b;
  border-radius: 20px;
  padding: 60px 80px 70px;
  text-align: center;
}

.about-clients__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-clients__heading {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 48px;
}

.about-clients__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-clients__row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-client {
  width: 300px;
  height: 130px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.about-client:hover {
  transform: translateY(-4px);
}

.about-client::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.about-client span {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.about-client--smbc::before {
  background: linear-gradient(135deg, #b261ff, #ffa7a7);
}

.about-client--jt::before {
  background: linear-gradient(135deg, #51abff, #65f0e8);
}

.about-client--toyota::before {
  background: linear-gradient(135deg, #ff0000, #ffc49a);
}

.about-client--dentsu::before {
  background: linear-gradient(135deg, #c0e8a0, #50c9c3);
}

.about-client--mizuho::before {
  background: linear-gradient(135deg, #ffe465, #ffc49a);
}

.section-about-offices {
  padding: 100px 0 120px;
}

.about-offices__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 20px;
}

.about-offices__title {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: #393939;
  margin-bottom: 80px;
}

.about-office-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-office-block:last-child {
  margin-bottom: 0;
}

.about-office__name {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
}

.about-office__address {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: #2b2b2b;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-office__address p {
  margin: 0;
}

.about-office__phone {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: #2b2b2b;
}

.about-office__map-img {
  width: 100%;
  border-radius: 12px;
}

.about-office__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.about-office__photos img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* ============================================================
   OUR PEOPLE PAGE
   ============================================================ */

/* OUR PEOPLE — Hero */

.page-hero--people {
  background: #f8f8f8;
  max-width: 100%;
  border-radius: 0;
  min-height: 500px;
  padding: 80px 0;
  margin-top: 0;
}

.page-hero--people::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/people/hero-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black calc(100% - 40px), transparent 100%);
}

.page-hero--people .container {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  padding: 0 80px;
}

.page-hero--people .page-hero__title {
  color: #f74636;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 900px;
}

.page-hero--people .page-hero__wireframe {
  right: -35px;
  bottom: -176px;
  width: 550px;
  opacity: 1;
  z-index: 1;
}

.page-hero--people::after {
  display: none;
}

/* OUR PEOPLE — Stat sections */

.section-people-stat {
  padding: 80px 0;
}

.people-stat__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 16px;
}

.people-stat__title {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  color: #2b2b2b;
  max-width: 700px;
}

.section-people-stat--centered {
  text-align: center;
}

.section-people-stat--centered .people-stat__title {
  max-width: none;
}

/* OUR PEOPLE — World Map */

.section-people-map {
  padding: 20px 0 60px;
}

.people-map__img {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 0 0 auto;
}

/* OUR PEOPLE — Venn Diagram */

.section-people-venn {
  padding: 0 0 80px;
}

.people-venn__card {
  overflow: hidden;
}

.people-venn__img {
  width: 100%;
  height: auto;
  display: block;
}

/* OUR PEOPLE — Team Members */

.section-people-members {
  padding: 80px 0 100px;
}

.people-members__intro {
  margin-bottom: 56px;
  max-width: 800px;
}

.people-members__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 16px;
}

.people-members__title {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  color: #393939;
  margin-bottom: 20px;
  line-height: 1.2;
}

.people-members__desc {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  margin-bottom: 4px;
}

.people-members__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 60px;
  max-width: 1090px;
}

.person-card {
  width: 322px;
}

.people-members__grid::before {
  content: "";
  grid-row: 1;
  grid-column: 3;
}

.person-card__photo {
  margin-bottom: 16px;
  height: 153px;
}

.person-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(100%);
}

.person-card__role {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #828282;
  margin-bottom: 6px;
}

.person-card__name {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.person-card__country {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.person-card__flag {
  width: 24px;
  height: auto;
  flex-shrink: 0;
}

/* OUR CULTURE — Hero */

.page-hero--culture {
  background: #f8f8f8;
  background-image: url('../assets/images/culture-hero-bg.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  max-width: 100%;
  border-radius: 0;
  min-height: 550px;
  padding: 80px 0;
  margin-top: 0;
  overflow: hidden;
}

.page-hero--culture::before {
  display: none;
}

.page-hero--culture .container {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  padding: 0 80px;
}

.page-hero--culture .page-hero__title {
  color: #f74636;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 960px;
}

.page-hero--culture .page-hero__wireframe {
  right: 0;
  bottom: -40px;
  width: 450px;
  opacity: 1;
  z-index: 1;
  transform: none;
}

.page-hero--culture::after {
  display: none;
}

/* OUR CULTURE — Vision */

.section-culture-vision {
  padding: 100px 0;
  text-align: center;
}

.culture-vision__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 40px;
}

.culture-vision__title {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: #2b2b2b;
  max-width: 900px;
  margin: 0 auto 40px;
}

.culture-vision__body {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #979797;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 80px;
}

.culture-aims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 48px;
  text-align: left;
}

.culture-aim {
  padding: 0;
}

.culture-aim__number {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  color: #f74636;
  margin-bottom: 16px;
}

.culture-aim__number::after {
  content: "";
  display: block;
  margin-top: 16px;
  height: 3px;
  background: linear-gradient(to right, #f74636, #fd5005);
}

.culture-aim__title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 20px;
  line-height: 1.4;
}

.culture-aim__body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #979797;
  line-height: 1.7;
}

/* OUR CULTURE — Core Values */

.section-culture-values {
  padding: 100px 0;
}

.culture-values__layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.culture-values__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 4px;
}

.culture-values__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.culture-pillar {
  padding-left: 24px;
  position: relative;
}

.culture-pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f74636;
}

.culture-pillar__title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.culture-pillar__body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #979797;
  line-height: 1.7;
}

/* OUR CULTURE — Unique Culture */

.section-culture-unique {
  background: #2b2b2b;
  border-radius: 20px 20px 0 0;
  padding: 80px 0 120px;
}

.culture-unique__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 16px;
}

.culture-unique__title {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 60px;
  line-height: 1.25;
}

.culture-unique-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.culture-unique-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  width: auto;
  height: 322px;
  box-sizing: border-box;
  transition: transform var(--transition);
}

.culture-unique-card:hover {
  transform: scale(1.03);
}

.culture-unique-card:last-child {
  margin-top: 40px;
}

.culture-unique-card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  display: block;
}

.culture-unique-card__label {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}

.culture-unique-card__body {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
}

.culture-unique-quote {
  background: linear-gradient(135deg, #ff0000, #ffc49a);
  border-radius: 16px;
  padding: 24px 32px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: auto;
  height: 322px;
  box-sizing: border-box;
  margin-top: 40px;
  overflow: hidden;
}

.culture-unique-quote__text {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.culture-unique-quote__attr {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-direction: row-reverse;
  flex: 1;
}

.culture-unique-quote__photo {
  width: 130px;
  height: auto;
  border-radius: 0;
  filter: grayscale(30%);
  align-self: flex-end;
  margin-right: -32px;
}

.culture-unique-quote__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  white-space: nowrap;
}

.culture-unique-quote__role {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}

.culture-unique-quote__name {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}

/* OUR CULTURE — Benefits */

.section-culture-benefits {
  padding: 100px 0;
}

.culture-benefits__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 24px;
}

.culture-benefits__title {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  color: #393939;
  max-width: 700px;
  margin-bottom: 60px;
}

.culture-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.culture-benefit {
  padding: 40px 32px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.culture-benefit__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f74636 0%, #fd5005 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.culture-benefit__icon svg,
.culture-benefit__icon img {
  width: 28px;
  height: 28px;
}

.culture-benefit__title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

/* ============================================================
   OUR APPROACH PAGE
   ============================================================ */

.section-approach-intro {
  padding: 80px 0 100px;
  border-bottom: none;
}

.approach-intro__label {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.approach-intro__heading {
  font-family: var(--font-mono);
  font-size: 33px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 50px;
}

.approach-intro__body {
  font-family: Inter, sans-serif;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
  max-width: calc(100% - 150px);
  margin-left: 150px;
}

.section-approach-focus {
  padding: 80px 0 100px;
  background: none;
  border-bottom: none;
}

.approach-focus__layout {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.approach-focus__card-white {
  background: #ffffff;
  border-radius: 20px;
  padding: 100px 50px 50px;
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-focus__venn {
  width: 350px;
  height: 350px;
}

.approach-focus__card-dark {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 400px;
  background: var(--color-dark);
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 30px;
}

.approach-focus__heading {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.approach-focus__body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4;
}

.section-approach-steps {
  padding: 0 0 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.approach-step-pair {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 100px;
}

.approach-step-pair--left {
  flex-direction: row;
}

.approach-step-pair--right {
  flex-direction: row-reverse;
}

.approach-step-pair__card {
  background: var(--color-dark);
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 30px;
  width: 500px;
  flex-shrink: 0;
  z-index: 1;
}

.approach-step-pair__diagram {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approach-step-pair__diagram img {
  max-width: 100%;
  height: auto;
}

/* Per-step sizing: Prioritization */
.approach-step-pair:nth-child(1) .approach-step-pair__card { width: 500px; }
.approach-step-pair:nth-child(1) .approach-step-pair__diagram { width: 700px; }

/* Per-step sizing: Hypothesis */
.approach-step-pair:nth-child(2) .approach-step-pair__card { width: 500px; }
.approach-step-pair:nth-child(2) .approach-step-pair__diagram { width: 500px; }

/* Per-step sizing: Refinement */
.approach-step-pair:nth-child(3) .approach-step-pair__card { width: 500px; }
.approach-step-pair:nth-child(3) .approach-step-pair__diagram { width: 500px; height: 440px; }

/* Per-step sizing: Product Market Fit */
.approach-step-pair:nth-child(4) .approach-step-pair__card { width: 300px; }
.approach-step-pair:nth-child(4) .approach-step-pair__diagram { width: 600px; }

/* Per-step sizing: Discovery and Delivery */
.approach-step-pair:nth-child(5) .approach-step-pair__card { width: 500px; }
.approach-step-pair:nth-child(5) .approach-step-pair__diagram { width: 700px; }

.approach-step__title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.approach-step__body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4;
}

/* ============================================================
   SCOVILLE BRAND PAGE
   ============================================================ */

/* -- Dark section base -- */
.sb-dark {
  background-color: #2b2b2b;
  color: #ffffff;
}

/* -- Hero -- */
.sb-hero {
  padding: 120px 0 80px;
}

.sb-hero__logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.sb-hero__logo {
  height: 140px;
  width: auto;
}

.sb-hero__brand-img {
  height: 140px;
  width: auto;
}

.sb-hero__logo {
  animation: brand-shake-left 0.6s ease-out 0.3s both;
}

.sb-hero__brand-img {
  animation: brand-shake-right 0.6s ease-out 0.5s both;
}

@keyframes brand-shake-left {
  0% { transform: translateX(-30px); opacity: 0; }
  40% { transform: translateX(8px); opacity: 1; }
  70% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}

@keyframes brand-shake-right {
  0% { transform: translateX(30px); opacity: 0; }
  40% { transform: translateX(-8px); opacity: 1; }
  70% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

/* -- Intro -- */
.sb-intro {
  padding: 80px 0 100px;
}

.sb-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sb-intro__col p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.sb-intro__col p.sb-jp {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
}

/* -- Vision -- */
.sb-vision {
  padding: 80px 0;
}

.sb-vision__card {
  background: linear-gradient(167deg, #ff0000, #ffc49a);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  color: #ffffff;
}

.sb-vision__label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}

.sb-vision__title {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
}

.sb-vision__body-jp {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
}

/* -- Mission -- */
.sb-mission {
  padding: 100px 0;
  text-align: center;
}

.sb-mission__label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  display: block;
}

.sb-mission__title {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 32px;
}

.sb-mission__body-jp {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
}

/* -- Values -- */
.sb-values {
  padding: 100px 0;
}

.sb-values__heading {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
  text-align: center;
}

.sb-value {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sb-value:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sb-value__title {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}

.sb-value__title-jp {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.sb-value__desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.sb-value__desc-jp {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

/* -- Principles -- */
.sb-principles {
  padding: 100px 0;
}

.sb-principles__heading {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
  text-align: center;
}

.sb-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sb-principle {
  text-align: center;
}

.sb-principle__dash {
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.sb-principle__title {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 8px;
}

.sb-principle__title-jp {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* -- Pillar sections (Digital, Diverse, Dynamic) -- */
.sb-pillar {
  padding: 100px 0;
}

.sb-pillar__title {
  font-family: var(--font-mono);
  font-size: 120px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 24px;
}

.sb-pillar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.sb-pillar__tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  color: var(--color-text);
}

.sb-pillar__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-gray);
  max-width: 700px;
  margin-bottom: 12px;
}

.sb-pillar__body-jp {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-muted);
  max-width: 700px;
  margin-bottom: 60px;
}

.sb-pillar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sb-pillar__card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.sb-pillar__card-text {
  display: flex;
  flex-direction: column;
}

.sb-pillar__card-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #f74636;
  margin-bottom: 4px;
}

.sb-pillar__card-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.sb-pillar__card-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.sb-pillar__card-body-jp {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #979797;
}

.sb-pillar__card-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* -- Showcase sections (Corporate Website, Deck, Charts, Cards) -- */
.sb-showcase {
  padding: 80px 0;
}

.sb-showcase__title {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

.sb-showcase__grid {
  display: grid;
  gap: 24px;
}

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

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

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

.sb-showcase__placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 60px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  font-size: 13px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-showcase__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* -- Section heading (red accent, used in Identity/Colors/Typefaces) -- */
.sb-section-heading {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 60px;
}

/* -- Identity Design -- */
.sb-identity {
  padding: 100px 0;
}

.sb-identity__logo-display {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.sb-identity__logo-display img {
  height: 60px;
  width: auto;
}

.sb-identity__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.sb-identity__subsection-title {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 4px;
}

.sb-identity__subsection-title-jp {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #979797;
  margin-bottom: 16px;
}

.sb-identity__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
}

.sb-identity__detail-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.sb-identity__subsection-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.sb-identity__subsection-body-jp {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: #979797;
}

.sb-identity__subsection-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

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

.sb-identity__misuse-item {
  text-align: center;
}

img.sb-identity__misuse-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* -- Colors -- */
.sb-colors {
  padding: 100px 0;
}

.sb-colors__group-title {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 8px;
}

.sb-colors__group-title-jp {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 40px;
}

.sb-colors__row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sb-colors__swatch {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.sb-colors__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sb-colors__bar {
  width: 3px;
  height: 60px;
  background: #FF0000;
  flex-shrink: 0;
}

.sb-colors__row--brand {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.sb-colors__row--secondary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  justify-items: start;
}

.sb-colors__meta strong {
  font-weight: 600;
  color: var(--color-text);
}

.sb-colors__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-gray);
  line-height: 1.6;
}

.sb-colors__meta span {
  color: var(--color-text-muted);
  margin-right: 4px;
}

.sb-colors__prohibited {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
}

.sb-colors__prohibited-img {
  flex-shrink: 0;
}

.sb-colors__prohibited-text {
  text-align: left;
}

.sb-colors__prohibited-title {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}

.sb-colors__prohibited-title-jp {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.sb-colors__prohibited-body {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 8px;
}

.sb-colors__prohibited-body-jp {
  font-size: 12px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* -- Typefaces -- */
.sb-typefaces {
  padding: 100px 0;
}

.sb-typeface {
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sb-typeface__role {
  font-size: 14px;
  color: var(--color-text-muted);
  padding-top: 8px;
}

.sb-typeface__name {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.sb-typeface__link {
  font-size: 13px;
  color: var(--color-accent);
  text-decoration: underline;
  margin-left: 12px;
}

.sb-typeface__weights {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.sb-typeface__weight {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 4px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  color: var(--color-text);
}

.sb-typeface__sample {
  font-size: 24px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 8px;
}

.sb-typeface__sample--mono {
  font-family: var(--font-mono);
}

.sb-typeface__sample--body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
}

.sb-typeface__sample--jp {
  font-family: "Noto Sans JP", sans-serif;
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */

/* --- Hero --- */

.page-hero--careers {
  background: linear-gradient(315deg, #c0e8a0, #50c9c3);
  border-radius: 16px;
  width: 90%;
  max-width: none;
  margin: 0 auto;
  padding: 160px 80px 150px;
  position: relative;
  overflow: hidden;
  min-height: 550px;
  box-sizing: border-box;
}

.page-hero--careers__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--careers__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--careers__spirograph {
  position: absolute;
  bottom: -100px;
  right: -130px;
  width: 620px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.page-hero--careers .page-hero__title {
  font-family: var(--font-mono);
  font-size: 50px;
  font-weight: 400;
  color: #ffffff;
  max-width: 700px;
  margin-left: -20px;
  margin-top: -30px;
}

.page-hero--careers .page-hero__body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  max-width: 480px;
  line-height: 1.5;
  margin-top: 60px;
  margin-left: -20px;
}

.page-hero--careers .page-hero__breadcrumb {
  display: none;
}

.page-hero--careers::after {
  display: none;
}

.page-hero--careers .container {
  position: relative;
  z-index: 1;
}

.page-hero--careers__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.page-hero--careers__watermark span {
  font-family: var(--font-mono);
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1.1;
  white-space: nowrap;
}

/* --- Intro + Pitch Cards --- */

.section-careers-intro {
  padding: 100px 0 80px;
}

.careers-intro__lead {
  max-width: 600px;
  margin-bottom: 80px;
}

.careers-intro__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 20px;
}

.careers-intro__title {
  font-family: var(--font-mono);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  color: #333333;
  margin-bottom: 24px;
  white-space: nowrap;
}

.careers-intro__body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
}

.careers-pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.careers-pitch-card {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.careers-pitch-card:nth-child(2) {
  margin-top: 30px;
}

.careers-pitch-card:nth-child(3) {
  margin-top: 60px;
}

.careers-pitch-card__icon {
  width: 51px;
  height: 51px;
  margin-bottom: 24px;
}

.careers-pitch-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #f74636;
  margin-bottom: 16px;
}

.careers-pitch-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #979797;
  line-height: 1.6;
}

/* --- CTA Card --- */

.section-careers-cta {
  padding: 40px 0;
}

.careers-cta__card {
  display: flex;
  align-items: flex-start;
  background: #2b2b2b;
  border-radius: 16px 0 0 16px;
  padding: 60px 80px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: calc(-1 * (100vw - 100%) / 2);
  width: 1200px;
  min-height: 337px;
  box-sizing: border-box;
  transition: background var(--transition-fast);
  cursor: pointer;
}

.careers-cta__card:hover {
  background: #d9d9d9;
}

.careers-cta__label,
.careers-cta__title {
  transition: color var(--transition-fast);
}

.careers-cta__card:hover .careers-cta__label,
.careers-cta__card:hover .careers-cta__title {
  color: #555555;
}

.careers-cta__content {
  position: relative;
  z-index: 1;
}

.careers-cta__label {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 40px;
}

.careers-cta__title {
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 60px;
}

.careers-cta__arrow img {
  width: 171px;
  height: 19px;
}

.careers-cta__spirograph {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 620px;
  height: auto;
  pointer-events: none;
}

.section-careers-cta--bottom {
  margin-bottom: 120px;
}

.section-careers-cta--bottom .careers-cta__card {
  background: #2b2b2b;
  width: 1200px;
  max-width: 100%;
  min-height: 340px;
  margin-left: 0;
  margin-right: auto;
  border-radius: 0 16px 16px 0;
}

.section-careers-cta--bottom .careers-cta__card:hover {
  background: #d9d9d9;
}

.section-careers-cta--bottom .careers-cta__card:hover .careers-cta__label,
.section-careers-cta--bottom .careers-cta__card:hover .careers-cta__title {
  color: #555555;
}

/* --- Why Scoville --- */

.section-why-scoville {
  padding: 100px 0;
  background: #ffffff;
}

.why-scoville__header {
  margin-bottom: 60px;
}

.why-scoville__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 20px;
}

.why-scoville__title {
  font-family: var(--font-mono);
  font-size: 50px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 20px;
}

.why-scoville__quote {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  max-width: 560px;
  line-height: 1.5;
}

.careers-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 550px);
  gap: 32px;
  justify-content: center;
}

.careers-value-card {
  border: none;
  border-radius: 16px;
  padding: 40px;
  width: 550px;
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.careers-value-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.careers-value-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  margin-top: auto;
  max-width: 320px;
  margin-left: auto;
}

.careers-value-card__decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transition: transform var(--transition);
}

.careers-value-card:hover .careers-value-card__decoration {
  transform: scale(1.12);
}

.careers-value-card__decoration--wireframe {
  width: 183px;
  height: 171px;
}

.careers-value-card__decoration--globe {
  width: 250px;
  height: auto;
  bottom: -20px;
  left: -20px;
}

.careers-value-card--red {
  background: linear-gradient(132deg, #ff0000, #ffc49a);
}

.careers-value-card--green {
  background: linear-gradient(317deg, #c0e8a0, #50c9c3);
  margin-top: -40px;
}

.careers-value-card--green .careers-value-card__decoration {
  bottom: -80px;
  left: -70px;
}

.careers-value-card--blue {
  background: linear-gradient(135deg, #51abff, #65f0e8);
}

.careers-value-card--peach {
  background: linear-gradient(315deg, #ffe465, #ff7d34);
  margin-top: -40px;
}

/* --- Testimonials --- */

.section-testimonials {
  padding: 100px 0;
  background: #ffffff;
}

.section-testimonials .container {
  max-width: 1440px;
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.testimonial-card {
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  transition: background-color var(--transition), transform var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  background-color: #2b2b2b;
  border-color: #2b2b2b;
  transform: scale(1.03);
}

.testimonial-card:hover .testimonial-card__text {
  color: #ffffff;
}

.testimonial-card:hover .testimonial-card__name {
  color: #ffffff;
}

.testimonial-card:hover .testimonial-card__role {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-card:nth-child(2),
.testimonial-card:nth-child(4) {
  margin-top: 80px;
}

.testimonial-card__quote-icon {
  width: 28px;
  height: 25px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-card__link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #f74636;
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
}

.testimonial-card__link:hover {
  text-decoration: underline;
}

.testimonial-card__footer {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-left: -32px;
  margin-bottom: -32px;
  margin-right: -32px;
}

.testimonial-card__photo {
  width: 120px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
}

.testimonial-card__footer > div {
  padding-bottom: 32px;
}

.testimonial-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2b2b2b;
}

.testimonial-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #979797;
}

/* --- Hiring Process Staircase --- */

.section-process {
  padding: 100px 0;
}

.process__header {
  margin-bottom: 60px;
}

.process__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 20px;
}

.process__title {
  font-family: var(--font-mono);
  font-size: 50px;
  font-weight: 400;
  color: #333333;
}

.process-staircase__img {
  width: 100%;
  display: block;
}

/* --- Quick Guide --- */

.section-quick-guide {
  padding: 100px 0;
  background: #ffffff;
}

.quick-guide__header {
  margin-bottom: 60px;
}

.quick-guide__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 20px;
}

.quick-guide__title {
  font-family: var(--font-mono);
  font-size: 50px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 16px;
}

.quick-guide__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #333333;
  max-width: 560px;
  line-height: 1.5;
}

.quick-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 48px;
}

.quick-guide-card {
  padding: 24px;
  border: 2px solid transparent;
  border-radius: 16px;
  transition: border-color var(--transition), background-color var(--transition);
}

.quick-guide-card:hover {
  border-color: rgba(247, 70, 54, 0.3);
  background-color: #fff;
}

.quick-guide-card:hover .quick-guide-card__title {
  color: #f74636;
}

.quick-guide-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.quick-guide-card__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.quick-guide-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0;
}

.quick-guide-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #5b5b5b;
  line-height: 1.6;
}

/* --- Fun Facts --- */

.section-fun-facts {
  padding: 0;
  margin-top: 120px;
  margin-bottom: 120px;
  background: none;
  display: flex;
  justify-content: center;
}

.section-fun-facts > .container {
  width: 90%;
  max-width: none;
  background: #2b2b2b;
  border-radius: 16px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.fun-facts__bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
  opacity: 0.15;
}

.fun-facts__title {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.fun-facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.fun-fact {
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border-left: none;
  height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fun-fact--white {
  background: #ffffff;
}

.fun-fact--gray {
  background: #f5f5f5;
}

.fun-fact__number {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #333333;
  line-height: 1.1;
  margin-bottom: 12px;
}

.fun-fact__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
}

.fun-fact__emoji {
  display: block;
  margin: 0 auto;
}

/* --- Floating CTA --- */

.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #2b2b2b;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 40px;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: background var(--transition-fast);
}

.floating-cta:hover {
  background: #000;
}

/* ============================================================
   OPEN POSITIONS + JOB LISTINGS
   ============================================================ */

.section-jobs {
  padding: 64px 0 100px;
}

.jobs-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}

.jobs-header__title {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-text);
}

.jobs-header__count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text-muted);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--color-border);
}

.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--color-white);
  padding: 28px 32px;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.job-card:hover {
  background: var(--color-bg-light);
}

.job-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.job-card__title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 6px;
}

.job-card__meta {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  gap: 16px;
}

.job-card__arrow {
  font-size: 20px;
  color: var(--color-text-muted);
}

/* ============================================================
   OPEN POSITIONS PAGE
   ============================================================ */

.op-page {
  background: #ffffff;
}

/* Hero */
.op-hero-image {
  background: #ffffff;
  text-align: center;
  padding: 40px 0 0;
  margin-bottom: -280px;
  position: relative;
  z-index: 0;
}

.op-hero-image img {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  width: 60%;
  height: auto;
}

.op-hero {
  text-align: center;
  padding: 60px 40px 80px;
  position: relative;
  overflow: visible;
  border-radius: 24px 24px 0 0;
  z-index: 1;
  background: #2b2b2b;
}

.op-hero__decoration {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 450px;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.op-hero__decoration img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
}

.op-hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.op-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.op-hero__breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.op-hero__title {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Job Listings */
.op-jobs {
  padding: 0 0 80px;
  background: #2b2b2b;
}

.op-jobs__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.op-job-card {
  display: block;
  background: #eeeeee;
  border-radius: 10px;
  padding: 20px 30px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.op-job-card:hover {
  background: #1a1a1a;
  border-color: #ffffff;
}

.op-job-card__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  color: #979797;
  margin-bottom: 6px;
  transition: color var(--transition-fast);
}

.op-job-card:hover .op-job-card__label {
  color: #999999;
}

.op-job-card__title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
  transition: color var(--transition-fast);
}

.op-job-card:hover .op-job-card__title {
  color: #ffffff;
}

/* Get to Know Us */
.op-guide {
  padding: 80px 0;
  background: #2b2b2b;
}

.op-guide__title {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
}

.op-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.op-guide__col-title {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 16px;
}

.op-guide__link {
  display: block;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  padding: 4px 0;
  transition: opacity var(--transition-fast);
}

.op-guide__link:hover {
  opacity: 0.7;
}

/* ============================================================
   JOB DETAIL PAGE (jd- prefix) — template for all positions
   ============================================================ */

.jd-page {
  background: #ffffff;
}

/* Hero */
.jd-hero {
  text-align: left;
  padding: 0;
  position: relative;
}

.jd-hero__decoration {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
}

.jd-hero__decoration img {
  max-width: 960px;
  height: auto;
  opacity: 0.7;
}

.jd-hero__decoration-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  z-index: 1;
}

.jd-hero .container {
  padding-top: 48px;
  padding-bottom: 40px;
}

.jd-hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  color: #393939;
  margin-bottom: 40px;
}

.jd-hero__breadcrumb a {
  color: #393939;
  transition: color var(--transition-fast);
}

.jd-hero__breadcrumb a:hover {
  color: #000000;
}

.jd-hero__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #f74636;
  margin-bottom: 20px;
}

.jd-hero__title {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 500;
  color: #333333;
  line-height: 1.2;
}

/* Summary section */
.jd-summary {
  padding: 60px 0 0;
}

.jd-summary__intro {
  max-width: none;
  margin: 0 0 48px;
}

.jd-summary__intro p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}

.jd-summary__intro p:last-child {
  margin-bottom: 0;
}

/* Summary header */
.jd-summary__header {
  margin-bottom: 48px;
}

.jd-summary__label {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #979797;
  margin-bottom: 12px;
}

.jd-summary__divider {
  height: 3px;
  background: linear-gradient(90deg, #f74636, #fd5005);
  border-radius: 2px;
}

/* Summary grid */
.jd-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.jd-summary__cell-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #979797;
  margin-bottom: 20px;
}

.jd-summary__item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.jd-summary__item img {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.jd-summary__item span {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #393939;
  line-height: 1.4;
}

.jd-summary__item--sub {
  padding-left: 42px;
}

/* Tags */
.jd-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.jd-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #f74636;
  background: transparent;
  border: 1px solid #f74636;
  padding: 6px 16px;
  border-radius: 20px;
}

/* Content sections */
.jd-section {
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.jd-section .container {
  max-width: var(--max-width);
}

.jd-section__header {
  margin-bottom: 48px;
}

.jd-section__label {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #979797;
  margin-bottom: 12px;
}

.jd-section__divider {
  height: 3px;
  background: linear-gradient(90deg, #f74636, #fd5005);
  border-radius: 2px;
}

.jd-section__title {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
  color: #393939;
  margin-bottom: 24px;
}

.jd-section__lead {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.65;
  margin-bottom: 24px;
}

.jd-section__list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jd-section__list li {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

.jd-section__list ul {
  list-style: circle;
  padding-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Application form */
.jd-apply {
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.jd-apply .container {
  max-width: 800px;
}

.jd-apply__title {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: #393939;
  margin-bottom: 16px;
  text-align: center;
}

.jd-apply__intro {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.6;
}

.jd-form__honeypot {
  display: none;
}

.jd-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.jd-form__fieldset {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jd-form__legend {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: #393939;
  padding: 0 8px;
}

.jd-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.jd-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jd-form__label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.jd-form__input,
.jd-form__select,
.jd-form__textarea {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: #333333;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.jd-form__input::placeholder,
.jd-form__textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.jd-form__input:focus,
.jd-form__select:focus,
.jd-form__textarea:focus {
  outline: none;
  border-color: #f74636;
}

.jd-form__select {
  appearance: none;
  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 1.5l5 5 5-5' stroke='rgba(0,0,0,0.4)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.jd-form__select option {
  background: #ffffff;
  color: #333333;
}

.jd-form__file {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.jd-form__file::file-selector-button {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  color: #333333;
  font-family: var(--font-mono);
  cursor: pointer;
  margin-right: 12px;
  transition: background var(--transition-fast);
}

.jd-form__file::file-selector-button:hover {
  background: #e8e8e8;
}

.jd-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.jd-form__submit {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: #2b2b2b;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.jd-form__submit:hover {
  background: #444444;
  transform: translateY(-1px);
}

/* Interview process */
.jd-process {
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.jd-process__title {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
  color: #393939;
  text-align: center;
  margin-bottom: 48px;
}

.jd-process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.jd-process__step {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 32px;
}

.jd-process__number {
  display: block;
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 600;
  color: #f74636;
  margin-bottom: 16px;
}

.jd-process__step-title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: #393939;
  margin-bottom: 12px;
}

.jd-process__step-text {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.65;
}

/* Company summary */
.jd-company {
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.jd-company__title {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
  color: #393939;
  text-align: center;
  margin-bottom: 48px;
}

.jd-company__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.jd-company__col {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 28px;
}

.jd-company__col-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 8px;
  display: block;
}

.jd-company__col-title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: #f74636;
  margin-bottom: 16px;
}

.jd-company__list {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.jd-company__list li {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

.jd-company__col-text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.6;
  margin-bottom: 16px;
}

.jd-company__link {
  font-family: var(--font-mono);
  font-size: 14px;
  color: #f74636;
  transition: opacity var(--transition-fast);
}

.jd-company__link:hover {
  opacity: 0.7;
}

.jd-company__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   DIGITAL PRODUCTS HUB
   ============================================================ */

.section-intro {
  padding: 48px 0 0;
}

.section-intro__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-intro__body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 640px;
}

.section-intro__body--large {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
  max-width: 100%;
}

.section-products-hub {
  padding: 60px 0 100px;
}

.products-unit {
  border: 1px solid var(--color-cyan);
  border-radius: 22px;
  padding: 60px;
  margin-bottom: 60px;
}

.products-unit:last-child {
  margin-bottom: 0;
}

.products-unit__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.products-unit__tag {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-accent);
}

.products-unit__title {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.products-unit__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.products-hub-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.product-hub-card {
  background: var(--color-white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  border-radius: 20px;
  box-shadow: rgba(225, 225, 225, 0.4) 0px 0px 18px 8px;
  min-height: 200px;
  width: 340px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-hub-card:hover {
  box-shadow: rgba(200, 200, 200, 0.5) 0px 0px 24px 12px;
  transform: translateY(-2px);
}

.product-hub-card__name {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-cyan);
  margin-bottom: 16px;
}

.product-hub-card__desc {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.4;
}

/* ============================================================
   PRODUCT DETAIL PAGES
   ============================================================ */

.product-page-breadcrumb {
  padding: 70px 0 20px;
}

.product-page-breadcrumb a {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

.product-page-breadcrumb a:hover {
  color: var(--color-text);
}

.product-page-breadcrumb__sep {
  color: var(--color-gray);
  margin: 0 8px;
}

.product-page-breadcrumb span {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
}

.product-banner {
  border-radius: 30px;
  padding: 60px;
  max-width: 1400px;
  margin: 0 auto;
  color: var(--color-white);
}

.product-banner--blue-cyan {
  background: linear-gradient(45deg, #51ABFF 0%, #65F0E8 100%);
}

.product-banner--teal-green {
  background: linear-gradient(45deg, #50C9C3 0%, #C0E8A0 100%);
}

.product-banner--orange-yellow {
  background: linear-gradient(45deg, #FF7D34 0%, #FFE465 100%);
}

.product-banner--purple-pink {
  background: linear-gradient(45deg, #C48CF9 0%, #FDA7FF 100%);
}

.product-banner--pink-peach {
  background: linear-gradient(45deg, #FFAFBD 0%, #FFDAA1 100%);
}

.product-banner__headline {
  font-family: var(--font-mono);
  font-size: 45px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-white);
  margin-bottom: 40px;
}

.product-banner__meta {
  max-width: 800px;
}

.product-banner__category {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.product-banner__name {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
}

.product-banner__desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.product-features-section {
  padding: 80px 0 100px;
}

.product-features-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.product-features-section__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #51ABFF 0%, #65F0E8 100%);
  margin: 0 auto 24px;
}

.product-features-section__title {
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 24px;
}

.product-features-section__intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-gray);
}

.product-features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-feature-card {
  text-align: center;
}

.product-feature-card__icon {
  display: block;
  margin: 0 auto 24px;
  width: 48px;
  height: 48px;
}

.product-feature-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 24px;
}

.product-feature-card__number--blue-cyan {
  background: linear-gradient(135deg, #51ABFF 0%, #65F0E8 100%);
}

.product-feature-card__number--teal-green {
  background: linear-gradient(135deg, #50C9C3 0%, #C0E8A0 100%);
}

.product-feature-card__number--orange-yellow {
  background: linear-gradient(135deg, #FF7D34 0%, #FFE465 100%);
}

.product-feature-card__number--purple-pink {
  background: linear-gradient(135deg, #C48CF9 0%, #FDA7FF 100%);
}

.product-feature-card__number--pink-peach {
  background: linear-gradient(135deg, #FFAFBD 0%, #FFDAA1 100%);
}

.product-feature-card__title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 16px;
}

.product-feature-card__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray);
}

/* Dot gradient variants */
.product-features-section__dot--teal-green {
  background: linear-gradient(135deg, #50C9C3 0%, #C0E8A0 100%);
}

.product-features-section__dot--orange-yellow {
  background: linear-gradient(135deg, #FF7D34 0%, #FFE465 100%);
}

.product-features-section__dot--purple-pink {
  background: linear-gradient(135deg, #C48CF9 0%, #FDA7FF 100%);
}

.product-features-section__dot--pink-peach {
  background: linear-gradient(135deg, #FFAFBD 0%, #FFDAA1 100%);
}

/* Product CTA section */
.product-cta-section {
  padding: 80px 0;
  text-align: center;
}

.product-cta-section__title {
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 16px;
}

.product-cta-section__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-gray);
  margin-bottom: 40px;
}

.product-cta-section__btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-text);
  transition: opacity var(--transition-fast);
}

.product-cta-section__btn:hover {
  opacity: 0.8;
}

/* ============================================================
   CASE STUDY PAGES
   ============================================================ */

.section-case-intro {
  padding: 80px 0;
}

.case-intro__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.case-intro__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.case-intro__title {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 24px;
}

.case-intro__body {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.75;
}

.case-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-meta__item {
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
}

.case-meta__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.case-meta__value {
  font-size: 15px;
  color: var(--color-text);
}

.section-case-body {
  padding: 0 0 100px;
}

.case-sections {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--color-border);
  margin-bottom: 60px;
}

.case-section {
  background: var(--color-white);
  padding: 48px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
}

.case-section__heading {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-top: 4px;
}

.case-section__body {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.75;
}

.case-section__body p + p {
  margin-top: 16px;
}

.case-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-dark);
  margin-top: 48px;
}

.case-result {
  background: #333333;
  padding: 40px 32px;
  text-align: center;
}

.case-result__value {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 12px;
}

.case-result__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   CASE STUDY DETAIL — RICH LAYOUT
   ============================================================ */

/* --- Dentsu Case Study Hero --- */
.case-hero--dentsu {
  background: linear-gradient(135deg, #C48CF9 0%, #FDA7FF 100%);
  padding: 60px 100px 100px;
}

.case-hero--dentsu__breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: #393939;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-hero--dentsu__sep {
  font-size: 10px;
}

.case-hero--dentsu__breadcrumb-active {
  color: var(--color-white);
}

.case-hero--dentsu__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.case-hero--dentsu__text {
  flex: 1;
  max-width: 540px;
}

.case-hero--dentsu__title {
  font-family: var(--font-mono);
  font-size: 37px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.case-hero--dentsu__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 0 24px;
}

.case-hero--dentsu__body {
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.75;
  margin-bottom: 32px;
}

.case-hero--dentsu__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.case-hero--dentsu__tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-hero--dentsu__tag img {
  width: 24px;
  height: 24px;
}

.case-hero--dentsu__image {
  flex-shrink: 0;
}

.case-hero--dentsu__image img {
  width: 496px;
  height: auto;
  border-radius: 16px;
}

/* --- Dentsu Case Study: Section Label (shared) --- */
.case-section-label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #C48CF9;
  text-align: center;
  margin-bottom: 16px;
}

/* --- Dentsu Case Study: Vision --- */
.case-vision {
  padding: 120px 100px 100px;
  background: var(--color-white);
}

.case-vision__heading {
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin-bottom: 56px;
  text-align: center;
}

.case-vision__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.case-vision__item {
  padding: 0;
}

.case-vision__num {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  color: #C48CF9;
  line-height: 1;
  margin-bottom: 24px;
}

.case-vision__item p {
  font-size: 16px;
  color: #333;
  line-height: 1.75;
}

/* --- Dentsu Case Study: External Link --- */
.case-external-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 480px;
  margin: 80px auto;
  padding: 32px 48px;
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  color: var(--color-text);
  text-decoration: none;
  transition: box-shadow var(--transition-fast);
}

.case-external-link:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.case-external-link__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-external-link__primary {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.case-external-link__secondary {
  font-size: 14px;
  color: var(--color-gray);
}

.case-external-link__icon {
  width: 24px;
  height: 19px;
  flex-shrink: 0;
}

/* --- Dentsu Case Study: Service Demands --- */
.case-demands {
  padding: 120px 100px 100px;
  background: var(--color-white);
}

.case-demands__subtitle {
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin-bottom: 56px;
  text-align: center;
}

.case-demands__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.case-demands__card {
  text-align: center;
}

.case-demands__category {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.case-demands__name {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 24px;
}

.case-demands__img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
}

.case-demands__card p {
  font-size: 16px;
  color: #333;
  line-height: 1.75;
  text-align: left;
}

/* --- Dentsu Case Study: Digital Values --- */
.case-values {
  padding: 120px 100px;
  background: var(--color-white);
}

.case-values__container {
  background: #2B2B2B;
  border-radius: 30px;
  padding: 80px 50px;
}

.case-values__subtitle {
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 56px;
  text-align: center;
}

.case-values .case-section-label {
  color: #C48CF9;
}

.case-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.case-values__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-values__card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
}

.case-values__card-title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
}

.case-values__card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  flex: 1;
}

.case-values__link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  margin-top: 4px;
}

.case-values__link:hover {
  color: #C48CF9;
}

/* --- Dentsu Case Study: Performance --- */
.case-performance {
  padding: 120px 100px 100px;
  background: var(--color-white);
}

.case-performance__label {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #C48CF9;
  margin-bottom: 16px;
}

.case-performance__heading {
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin-bottom: 56px;
  max-width: 640px;
}

.case-performance__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 640px;
}

.case-performance__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.case-stat {
  background: linear-gradient(135deg, #C48CF9 0%, #FDA7FF 100%);
  border-radius: 30px;
  padding: 50px;
}

.case-stat:nth-child(2) {
  margin-top: 60px;
}

.case-stat:nth-child(3) {
  margin-top: 120px;
}

.case-stat__value {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}

.case-stat__title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
}

.case-stat__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* --- Anytime Fitness Case Study: Performance variant --- */
.case-performance--af {
  padding: 0 100px 100px;
  background: var(--color-white);
}

.case-performance--af__inner {
  background: linear-gradient(135deg, #C48CF9 0%, #FDA7FF 100%);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.case-performance--af__text {
  flex: 0 0 45%;
}

.case-performance--af__text .case-performance__label {
  color: var(--color-white);
}

.case-performance--af__text .case-performance__heading {
  color: var(--color-white);
  margin-bottom: 24px;
}

.case-performance--af__image {
  flex: 1;
  min-width: 0;
}

.case-performance--af__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* --- Dentsu Case Study: Roadmap --- */
.case-roadmap {
  padding: 120px 100px 100px;
  background: var(--color-white);
}

.case-roadmap__subtitle {
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin-bottom: 56px;
}

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

.case-roadmap__item {
  background: #2B2B2B;
  border-radius: 30px;
  padding: 50px;
}

.case-roadmap__category {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: #C48CF9;
  margin-bottom: 8px;
}

.case-roadmap__title {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 24px;
}

.case-roadmap__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 24px;
}

.case-roadmap__item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

/* --- Dentsu Case Study: CTA --- */
.case-cta {
  background: #2B2B2B;
  padding: 80px 100px;
}

.case-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.case-cta__text {
  flex: 1;
}

.case-cta__title {
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.case-cta__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.case-cta__image {
  flex-shrink: 0;
  max-width: 480px;
  margin-top: -120px;
}

.case-cta__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

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

.section-privacy {
  padding: 80px 0 100px;
}

.privacy-content {
  max-width: 760px;
}

.privacy-content h2 {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.privacy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.privacy-content p {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-content ul li {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.65;
}

.privacy-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 98;
  padding: var(--nav-total) 24px 24px;
  overflow-y: auto;
  flex-direction: column;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile__item {
  border-bottom: none;
}

.nav-mobile__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
}

.nav-mobile__item.open .nav-mobile__link {
  color: #f74636;
}

.nav-mobile__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav-mobile__item.open .nav-mobile__chevron {
  transform: rotate(180deg);
  stroke: #f74636;
}

.nav-mobile__sub {
  padding: 24px 24px;
  display: none;
  flex-direction: column;
  gap: 24px;
  background: #f5f5f5;
  border-radius: 0;
  margin: 0 -24px;
}

.nav-mobile__item.open .nav-mobile__sub {
  display: flex;
}

.nav-mobile__sub a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--color-text);
  font-weight: 400;
}

.nav-mobile__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-mobile__sub-label {
  font-size: 13px;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.nav-mobile__inquiry {
  margin-top: 24px;
}

.nav-mobile__lang {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0 8px;
}

.nav-mobile__lang-globe {
  width: 20px;
  height: 20px;
  color: rgba(0, 0, 0, 0.35);
}

.nav-mobile__lang a {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 400;
  color: #979797;
  text-decoration: none;
  transition: var(--transition);
}

.nav-mobile__lang a:hover,
.nav-mobile__lang a.active {
  color: #2b2b2b;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1140px) {
  :root {
    --gutter: 32px;
  }

  .hero__title { font-size: 44px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  :root {
    --gutter: 24px;
  }

  /* --- Global: hide top bar, adjust nav position --- */
  .top-bar {
    display: none;
  }

  .nav {
    top: 0;
  }

  .page-content {
    padding-top: var(--nav-height-main);
  }

  .nav__menu,
  .nav__right .btn-inquiry {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

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

  .hero__image {
    margin-right: 0;
  }

  .hero__image img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .hero__title { font-size: 36px; }

  /* --- Homepage: tablet font sizes --- */
  .section-transform__label { font-size: 14px; }
  .section-transform__subtitle { font-size: 18px; }
  .section-transform__rotate { font-size: 32px; }
  .section-competencies__title { font-size: 30px; }
  .section-approach__heading { font-size: 34px; }
  .section-approach__title { font-size: 24px; }
  .section-success__title { font-size: 32px; }
  .case-studies-heading { font-size: 32px; }
  .brand-story-header__title { font-size: 32px; }
  .section-diff__heading { font-size: 32px; }
  .section-team__heading { font-size: 32px; }

  /* --- Client logos: 3 across --- */
  .client-logos__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-transform__inner,
  .section-approach__inner,
  .section-success__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* --- Consulting: allow heading to wrap --- */
  .section-consulting__title {
    white-space: normal;
    font-size: 32px;
  }

  .consulting-cards {
    grid-template-columns: 1fr;
    max-height: none;
  }

  /* --- Case studies: stack cards vertically --- */
  .case-studies-layout {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
  }

  .case-studies-left {
    padding: 40px;
  }

  .case-studies-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 40px 40px;
  }

  .case-study-card {
    position: static;
    width: 100%;
    height: auto;
    min-height: 120px;
  }

  .case-study-card:first-child {
    top: auto;
    left: auto;
  }

  .case-study-card--offset {
    top: auto;
    right: auto;
    left: auto;
  }

  .case-study-card:hover {
    transform: none;
  }

  /* --- Our Story: remove heading offset, card stagger --- */
  .brand-story-header {
    margin-left: 0;
  }

  .brand-story-grid {
    grid-template-columns: 1fr;
  }

  .brand-story-grid > :nth-child(2) {
    transform: none;
  }

  .section-brand-story {
    padding: 80px 0 100px;
  }

  /* --- Differentiator cards: remove stagger --- */
  .section-diff__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .diff-item:nth-child(2) {
    margin-top: 0;
  }

  .diff-item:nth-child(3) {
    margin-top: 0;
  }

  /* --- Team cards: stack, remove fixed dimensions --- */
  .team-top {
    grid-template-columns: 1fr;
  }

  .team-bottom {
    flex-direction: column;
  }

  .team-card {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .team-card--has-photo {
    width: 100%;
  }

  .team-bottom .team-card:nth-child(2) {
    margin-top: 0;
  }

  .team-card__label {
    font-size: 14px;
    font-weight: 500;
  }

  .team-card__title {
    font-size: 20px;
    font-weight: 500;
  }

  .team-card__body {
    font-size: 15px;
  }

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

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

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* --- Careers: tablet font sizes + layout --- */
  .careers-cta__title { font-size: 30px; }
  .careers-intro__title {
    font-size: 32px;
    white-space: normal;
  }
  .why-scoville__title { font-size: 32px; }
  .process__title { font-size: 32px; }
  .quick-guide__title { font-size: 32px; }
  .fun-facts__title { font-size: 28px; }
  .careers-intro__label { font-size: 15px; }
  .why-scoville__label { font-size: 15px; }
  .process__label { font-size: 15px; }
  .quick-guide__label { font-size: 15px; }

  .section-careers-intro { padding: 60px 0 40px; }
  .careers-intro__lead { margin-bottom: 48px; }

  .careers-pitch-card:nth-child(2),
  .careers-pitch-card:nth-child(3) {
    margin-top: 0;
  }

  .page-hero--careers .page-hero__title {
    margin-left: 0;
    margin-top: 0;
  }
  .page-hero--careers .page-hero__body {
    margin-left: 0;
    margin-top: 30px;
  }
  .page-hero--careers {
    min-height: auto;
  }

  .careers-cta__card {
    width: 100%;
    margin-right: 0;
    border-radius: 16px;
  }

  .careers-cta__spirograph {
    width: 400px;
  }

  .section-why-scoville { padding: 60px 0; }
  .why-scoville__header { margin-bottom: 40px; }

  .careers-value-card__body {
    max-width: none;
    margin-left: 0;
  }

  .section-testimonials { padding: 60px 0; }
  .section-process { padding: 60px 0; }
  .process__header { margin-bottom: 40px; }
  .section-quick-guide { padding: 60px 0; }
  .quick-guide__header { margin-bottom: 40px; }

  .section-careers-cta--bottom {
    padding: 0 24px;
  }

  .section-careers-cta--bottom .careers-cta__card {
    margin-left: auto;
    margin-right: auto;
  }

  /* --- Digital Consulting: tablet font sizes --- */
  .dc-intro__subtitle { font-size: 32px; }
  .dc-callout__text { font-size: 30px; }

  /* --- Our Approach: tablet font sizes --- */
  .page-hero--approach .page-hero__breadcrumb { font-size: 15px; }
  .page-hero--approach .page-hero__title { font-size: 40px; }
  .approach-intro__label { font-size: 15px; }
  .approach-intro__heading { font-size: 28px; }
  .approach-intro__body { font-size: 16px; }

  /* --- About Us: tablet font sizes --- */
  .page-hero--about .page-hero__breadcrumb { font-size: 16px; }
  .page-hero--about .page-hero__title { font-size: 40px; }
  .page-hero--about .page-hero__subtitle { font-size: 40px; }
  .about-hr__label { font-size: 16px; }
  .about-hr__title { font-size: 34px; }
  .about-clients__label { font-size: 16px; }
  .about-clients__heading { font-size: 32px; }
  .about-offices__label { font-size: 16px; }
  .about-offices__title { font-size: 32px; }
  .about-office__name { font-size: 20px; }
  .about-office__address { font-size: 16px; }
  .about-office__phone { font-size: 16px; }

  .careers-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .careers-value-card {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .careers-value-card--green,
  .careers-value-card--peach {
    margin-top: 0;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(4) {
    margin-top: 0;
  }

  .quick-guide-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

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

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

  .page-hero--careers {
    width: calc(100% - 32px);
    padding: 60px 40px 50px;
  }

  .page-hero--careers .page-hero__title {
    font-size: 36px;
  }

  .page-hero--careers__watermark span {
    font-size: 70px;
  }

  .page-hero--careers__spirograph {
    width: 400px;
    height: auto;
    bottom: -40px;
    right: -30px;
  }

  .section-fun-facts {
    margin: 80px 16px;
  }

  .section-fun-facts > .container {
    padding: 40px 32px;
  }

  .section-careers-cta--bottom {
    margin-bottom: 80px;
  }

  .section-careers-cta--bottom .careers-cta__card {
    width: 100%;
    border-radius: 16px;
  }

  .error-section {
    padding: 48px 16px 80px;
  }

  .error-card {
    max-width: 95%;
    padding: 0 24px 60px;
    border-radius: 20px;
  }

  .error-code {
    font-size: 120px;
    padding-top: 24px;
  }

  .error-message {
    font-size: 16px;
    white-space: normal;
  }

  .error-pepper {
    width: 400px;
  }

  .thankyou-card {
    padding: 40px 32px;
    border-radius: 20px;
  }

  .thankyou-plane {
    width: 140px;
  }

  .thankyou-heading {
    font-size: 36px;
  }

  .thankyou-message {
    font-size: 15px;
  }

  .pp-card {
    max-width: 95%;
    padding: 48px 32px;
    border-radius: 20px;
  }

  .pp-title {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .pp-subtitle {
    font-size: 22px;
  }

  .inquiry-heading {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .inquiry-card {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .inquiry-form-grid {
    flex-direction: column;
  }

  .inquiry-form-inputs {
    flex: none;
  }

  .service-intro__inner,
  .about-story__inner,
  .people-intro__inner,
  .case-intro__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-cards-grid,
  .about-values-grid,
  .products-features-grid {
    grid-template-columns: 1fr;
  }

  .products-unit {
    padding: 40px 30px;
    margin-bottom: 40px;
  }

  .products-unit__title {
    font-size: 30px;
  }

  .products-unit__tag {
    font-size: 15px;
  }

  .product-hub-card {
    width: 280px;
    min-height: 180px;
  }

  .product-hub-card__name {
    font-size: 20px;
  }

  .product-hub-card__desc {
    font-size: 15px;
  }

  .section-intro__body--large {
    font-size: 30px;
  }

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

  .service-cta__inner {
    flex-direction: column;
    gap: 24px;
  }

  .product-banner {
    padding: 40px;
    border-radius: 20px;
  }

  .product-banner__headline {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .product-banner__name {
    font-size: 22px;
  }

  .product-features-section__title {
    font-size: 28px;
  }

  .product-features-cards {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
  }

  .product-feature-card__title {
    font-size: 18px;
  }

  .case-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .case-hero--dentsu {
    padding: 40px 40px 60px;
  }

  .case-hero--dentsu__inner {
    flex-direction: column;
    gap: 40px;
  }

  .case-hero--dentsu__title {
    font-size: 28px;
  }

  .case-hero--dentsu__image img {
    width: 100%;
    max-width: 400px;
  }

  .case-vision,
  .case-demands,
  .case-performance,
  .case-roadmap {
    padding: 80px 40px;
  }

  .case-values {
    padding: 80px 40px;
  }

  .case-values__container {
    padding: 50px 30px;
  }

  .case-section-label {
    font-size: 15px;
  }

  .case-vision__heading,
  .case-demands__subtitle,
  .case-values__subtitle,
  .case-performance__heading,
  .case-roadmap__subtitle {
    font-size: 28px;
  }

  .case-vision__items,
  .case-values__grid,
  .case-performance__stats {
    grid-template-columns: 1fr;
  }

  .case-demands__grid,
  .case-roadmap__grid {
    grid-template-columns: 1fr;
  }

  .case-performance--af {
    padding: 0 40px 80px;
  }

  .case-performance--af__inner {
    flex-direction: column;
    padding: 40px;
  }

  .case-performance--af__text {
    flex: none;
  }

  .case-cta {
    padding: 60px 40px;
  }

  .case-cta__inner {
    flex-direction: column;
    gap: 40px;
  }

  .case-cta__image {
    max-width: 100%;
  }

  .approach-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 24px;
  }

  /* --- DC benefits: 2 columns instead of 3 --- */
  .dc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .dc-benefit__img {
    width: 100%;
  }

  /* --- Our Approach: hero mobile --- */
  .page-hero--approach .page-hero__breadcrumb {
    font-size: 14px;
    font-weight: 500;
  }
  .page-hero--approach .page-hero__title {
    font-size: 25px;
  }

  /* --- Our Approach: intro/mindset mobile --- */
  .approach-intro__label {
    font-size: 14px;
  }
  .approach-intro__heading {
    font-size: 20px;
  }
  .approach-intro__body {
    font-size: 15px;
    margin-left: 0;
    max-width: 100%;
  }

  /* --- Our Approach: focus section --- */
  .approach-focus__layout {
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
  .approach-focus__card-dark {
    position: static;
    width: 100%;
    border-radius: 20px 20px 0 0;
    order: -1;
  }
  .approach-focus__card-white {
    border-radius: 0 0 20px 20px;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
  }
  .approach-focus__venn {
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  /* --- Our Approach: step pairs stack vertically --- */
  .approach-step-pair {
    flex-direction: column !important;
    gap: 0;
  }
  .approach-step-pair__card,
  .approach-step-pair__diagram {
    width: 100% !important;
    border-radius: 0;
  }
  .approach-step-pair__card {
    border-radius: 20px 20px 0 0;
  }
  .approach-step-pair__diagram {
    border-radius: 0 0 20px 20px;
    height: auto !important;
  }

  /* Our People — tablet */
  .page-hero--people .page-hero__wireframe {
    width: 300px;
    right: -40px;
  }
  .page-hero--people .page-hero__title {
    font-size: 38px;
  }
  .page-hero--people .container {
    padding: 0 var(--gutter);
  }
  .people-stat__label { font-size: 16px; }
  .people-stat__title {
    font-size: 30px;
  }
  .people-members__label { font-size: 16px; }
  .people-members__title {
    font-size: 30px;
  }
  .people-members__desc { font-size: 16px; }
  .person-card__name { font-size: 16px; }
  .people-members__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
  .people-members__grid::before {
    display: none;
  }
  .person-card {
    width: auto;
  }
  .person-card:nth-child(1) {
    grid-column: auto;
  }
  .person-card:nth-child(2) {
    grid-column: auto;
  }
  .person-card__photo {
    height: auto;
  }
  .person-card__photo img {
    object-fit: cover;
  }

  /* Our Culture — tablet */
  .page-hero--culture .page-hero__title {
    font-size: 38px;
  }
  .page-hero--culture .page-hero__wireframe {
    width: 300px;
    right: -60px;
  }
  .page-hero--culture .container {
    padding: 0 var(--gutter);
  }
  .culture-vision__label { font-size: 16px; }
  .culture-vision__title {
    font-size: 30px;
  }
  .culture-vision__body { font-size: 16px; }
  .culture-aim__number { font-size: 34px; }
  .culture-aim__title { font-size: 16px; }
  .culture-values__label { font-size: 16px; }
  .culture-pillar__title { font-size: 16px; }
  .culture-unique__label { font-size: 16px; }
  .culture-unique__title { font-size: 32px; }
  .culture-unique-card__label { font-size: 18px; }
  .culture-unique-card__body { font-size: 16px; }
  .culture-unique-quote__text { font-size: 16px; }
  .culture-benefits__label { font-size: 16px; }
  .culture-benefit__title { font-size: 16px; }
  .culture-aims-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
  .culture-values__layout {
    flex-direction: column;
    gap: 32px;
  }
  .culture-unique-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .culture-unique-card,
  .culture-unique-quote {
    width: auto;
    height: auto;
  }
  .culture-unique-quote {
    margin-top: 0;
  }
  .culture-benefits__title {
    font-size: 30px;
  }
  .culture-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Open Positions */
  .op-hero {
    padding: 100px 32px 60px;
  }
  .op-hero__title {
    font-size: 32px;
    max-width: 90%;
  }
  .op-hero__decoration {
    max-width: 350px;
  }
  .op-jobs__list {
    padding: 0 32px;
  }
  .op-guide__grid {
    gap: 32px;
  }

  /* Job Detail */
  .jd-hero__title {
    font-size: 32px;
  }
  .jd-hero__decoration {
    height: 160px;
  }
  .jd-summary__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jd-process__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .jd-company__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .jd-form__row {
    grid-template-columns: 1fr;
  }

  /* Technologies */
  .tech-hero {
    padding: 120px 40px 60px;
  }
  .tech-hero__title {
    font-size: 40px;
  }
  .tech-hero__subtitle {
    font-size: 16px;
  }
  .section-tech-category {
    padding: 60px 0;
  }
  .tech-category__heading {
    font-size: 24px;
  }
  .tech-category__desc {
    font-size: 16px;
  }
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tech-grid .tech-grid__illustration--ai,
  .tech-grid--iot .tech-grid__illustration--iot {
    grid-column: 1;
    grid-row: auto;
    min-height: 280px;
  }
  .tech-grid__illustration-label {
    font-size: 32px;
  }
  .tech-card {
    padding: 32px;
  }
  .tech-card__title {
    font-size: 18px;
  }
  .tech-card__body {
    font-size: 15px;
  }

  /* Industries */
  .ind-hero {
    padding: 120px 40px 60px;
  }
  .ind-hero__title {
    font-size: 40px;
  }
  .ind-hero__subtitle {
    font-size: 16px;
  }
  .ind-card {
    flex-direction: column;
    gap: 24px;
    padding: 32px;
  }
  .ind-card__left {
    flex: none;
  }
  .ind-card__features {
    gap: 24px;
  }
}

@media (max-width: 540px) {
  :root {
    --gutter: 16px;
  }

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

  .hero__title { font-size: 28px; }

  .hero__image {
    margin-right: 0;
    justify-content: center;
  }

  .hero__image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* --- Dark transform: mobile font sizes --- */
  .section-transform__label {
    font-size: 13px;
  }

  .section-transform__subtitle {
    font-size: 15px;
  }

  .section-transform__rotate {
    font-size: 23px;
  }

  .section-transform__arrow-link {
    display: none;
  }

  /* --- Overview: hide tunnel, restyle services as horizontal rows --- */
  .overview-cone {
    display: none;
  }

  .service-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    padding: 24px 0;
  }

  .service-card::before {
    display: none;
  }

  .service-card__illustration {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    grid-row: 1 / -1;
    align-self: start;
  }

  .service-card__tag {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .service-card__title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .service-card__body {
    grid-column: 2;
    font-size: 15px;
  }

  /* --- Client logos: single column --- */
  .client-logos__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 280px;
    margin: 0 auto;
  }

  /* --- Homepage section titles: mobile --- */
  .section-competencies__title {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
  }
  .section-consulting__title {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
  }
  .section-approach__heading {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
  }
  .section-approach__title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
  }
  .section-success__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
  }

  /* --- Case studies padding --- */
  .case-studies-left {
    padding: 24px;
  }

  .case-studies-right {
    padding: 0 24px 24px;
  }

  .case-study-card {
    padding: 24px;
  }

  /* --- Brand story heading --- */
  .brand-story-header__title {
    font-size: 28px;
  }

  /* --- Case Studies heading --- */
  .case-studies-heading {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
  }

  /* --- Brand/History card images: hide at mobile --- */
  .brand-story-card__illustration,
  .brand-story-card__comma {
    display: none;
  }

  /* --- Diff heading --- */
  .section-diff__heading {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
  }

  /* --- Team heading --- */
  .section-team__heading {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
  }

  /* --- Brand story card: hide pepper overflow --- */
  .brand-story-card {
    padding-left: 32px;
  }

  .brand-story-card__pepper {
    display: none;
  }

  /* --- Careers: mobile font sizes + layout --- */
  .careers-cta__title { font-size: 24px; }
  .careers-cta__card { padding: 40px 32px; }
  .page-hero__title { font-size: 30px; }

  .page-hero--careers {
    width: calc(100% - 16px);
    padding: 40px 24px 36px;
  }

  .page-hero--careers .page-hero__title {
    font-size: 25px;
  }

  .page-hero--careers .page-hero__body {
    font-size: 15px;
    margin-top: 20px;
  }

  .page-hero--careers__spirograph {
    width: 250px;
    height: auto;
    bottom: -20px;
    right: -20px;
  }

  .page-hero--careers__watermark span {
    font-size: 48px;
  }

  .section-careers-intro { padding: 40px 0 24px; }
  .careers-intro__lead { margin-bottom: 32px; }
  .careers-intro__title {
    font-size: 25px;
    font-weight: 500;
  }
  .careers-intro__label { font-size: 14px; }

  .careers-pitch-grid { gap: 32px; }
  .careers-pitch-card__body { font-size: 15px; }

  .section-careers-cta { padding: 24px 0; }

  .section-why-scoville { padding: 40px 0; }
  .why-scoville__header { margin-bottom: 32px; }
  .why-scoville__title {
    font-size: 25px;
    font-weight: 500;
  }
  .why-scoville__label { font-size: 14px; }
  .why-scoville__quote { font-size: 15px; }

  .careers-value-card {
    padding: 32px;
  }
  .careers-value-card__title { font-size: 20px; }
  .careers-value-card__body { font-size: 15px; }

  .section-testimonials { padding: 40px 0; }
  .testimonial-card { padding: 24px; }
  .testimonial-card__photo { width: 90px; }
  .testimonial-card__footer {
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -24px;
  }
  .testimonial-card__footer > div { padding-bottom: 24px; }
  .testimonial-card__name { font-size: 14px; }
  .testimonial-card__role { font-size: 14px; }

  .section-process { padding: 40px 0; }
  .process__header { margin-bottom: 32px; }
  .process__title {
    font-size: 25px;
    font-weight: 500;
  }
  .process__label { font-size: 14px; }

  .section-quick-guide { padding: 40px 0; }
  .quick-guide__header { margin-bottom: 32px; }
  .quick-guide__title {
    font-size: 25px;
    font-weight: 500;
  }
  .quick-guide__label { font-size: 14px; }
  .quick-guide__subtitle { font-size: 15px; }

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

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

  .fun-facts__title { font-size: 24px; }
  .fun-fact__number { font-size: 32px; }
  .fun-fact { height: auto; min-height: 120px; padding: 24px 16px; }

  .section-fun-facts {
    margin: 60px 8px;
  }

  .section-fun-facts > .container {
    padding: 40px 24px;
  }

  .section-careers-cta--bottom {
    margin-bottom: 60px;
    padding: 0 16px;
  }

  .section-careers-cta--bottom .careers-cta__card {
    min-height: 280px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
  }

  /* --- DC intro + callout titles: mobile --- */
  .dc-intro__subtitle {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .dc-callout__text {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  /* --- DC benefits: single column --- */
  .dc-benefits-grid {
    grid-template-columns: 1fr;
  }

  /* --- DC feature rows: stack title above body --- */
  .dc-feature-row {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }
  .dc-feature-row__title {
    align-self: center;
  }
  .dc-feature-row__body {
    grid-column: 1 / -1;
  }

  /* --- DC links: single column --- */
  .dc-links-grid {
    grid-template-columns: 1fr;
  }

  /* --- About Us: mobile font sizes + layout --- */
  .page-hero--about .page-hero__breadcrumb { font-size: 14px; }
  .page-hero--about .page-hero__title { font-size: 30px; }
  .page-hero--about .page-hero__subtitle { font-size: 30px; }
  .about-hr__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-hr__label { font-size: 14px; }
  .about-hr__title {
    font-size: 28px;
  }
  .about-hr__diagram img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  /* --- About Us: offices mobile --- */
  .about-offices__label { font-size: 14px; }
  .about-offices__title {
    font-size: 26px;
  }
  .about-office-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-office__photos {
    grid-template-columns: 1fr;
  }
  .about-office__name { font-size: 18px; }
  .about-office__address { font-size: 15px; }
  .about-office__phone { font-size: 15px; }

  /* --- About Us: clientele cards stack --- */
  .about-clients__label { font-size: 14px; }
  .about-clients__card {
    padding: 40px 24px 50px;
  }
  .about-clients__heading {
    font-size: 26px;
  }
  .about-clients__grid {
    align-items: stretch;
  }
  .about-clients__row {
    flex-direction: column;
    width: 100%;
  }
  .about-client {
    width: 100%;
  }

  /* Our People — mobile */
  .page-hero--people {
    padding: 80px 0 40px;
  }
  .page-hero--people .page-hero__wireframe {
    display: none;
  }
  .page-hero--people .page-hero__title {
    font-size: 32px;
  }
  .section-people-stat {
    padding: 48px 0;
  }
  .people-stat__label { font-size: 14px; }
  .people-stat__title {
    font-size: 24px;
  }
  .people-members__label { font-size: 14px; }
  .people-members__title {
    font-size: 26px;
  }
  .people-members__desc { font-size: 15px; }
  .person-card__name { font-size: 15px; }
  .people-members__grid {
    grid-template-columns: 1fr;
  }
  .people-members__grid::before {
    display: none;
  }
  .person-card {
    width: auto;
    text-align: center;
  }
  .person-card:nth-child(1),
  .person-card:nth-child(2) {
    grid-column: auto;
  }
  .person-card__photo {
    height: 153px;
  }
  .person-card__photo img {
    object-fit: contain;
  }
  .person-card__country {
    justify-content: center;
  }
  .people-venn__card {
    padding: 30px 16px;
    border-radius: 12px;
  }

  /* Our Culture — mobile */
  .page-hero--culture {
    min-height: 400px;
    padding: 60px 0;
  }
  .page-hero--culture .container {
    padding: 0 24px;
  }
  .page-hero--culture .page-hero__title {
    font-size: 30px;
  }
  .page-hero--culture .page-hero__wireframe {
    width: 250px;
    right: -80px;
    bottom: -20px;
  }
  .section-culture-vision {
    padding: 60px 0;
  }
  .culture-vision__label { font-size: 14px; }
  .culture-vision__title {
    font-size: 24px;
  }
  .culture-vision__body {
    font-size: 15px;
    margin-bottom: 48px;
  }
  .culture-aims-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .culture-aim__number {
    font-size: 32px;
  }
  .culture-aim__title { font-size: 15px; }
  .culture-aim__body { font-size: 15px; }
  .section-culture-values {
    padding: 60px 0;
  }
  .culture-values__label { font-size: 14px; }
  .culture-pillar__title { font-size: 15px; }
  .culture-pillar__body { font-size: 15px; }
  .section-culture-unique {
    padding: 60px 0 80px;
  }
  .culture-unique__label { font-size: 14px; }
  .culture-unique__title {
    font-size: 28px;
  }
  .culture-unique-card__label { font-size: 16px; }
  .culture-unique-card__body { font-size: 15px; }
  .culture-unique-quote__text { font-size: 15px; }
  .section-culture-benefits {
    padding: 60px 0;
  }
  .culture-benefits__label { font-size: 14px; }
  .culture-benefits__title {
    font-size: 24px;
  }
  .culture-benefit__title { font-size: 15px; }
  .culture-benefits-grid {
    grid-template-columns: 1fr;
  }
  .culture-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    transition: background var(--transition-fast);
  }
  .culture-benefit:hover {
    background: linear-gradient(90deg, rgba(247, 70, 54, 0.06) 0%, rgba(253, 80, 5, 0.03) 100%);
  }
  .culture-benefit__icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }
  .culture-benefit__icon svg,
  .culture-benefit__icon img {
    width: 22px;
    height: 22px;
  }

  /* Open Positions */
  .op-hero {
    padding: 80px 20px 40px;
  }
  .op-hero__title {
    font-size: 25px;
    max-width: 100%;
  }
  .op-hero__breadcrumb {
    font-size: 14px;
  }
  .op-hero__decoration {
    max-width: 280px;
    top: -30px;
  }
  .op-jobs {
    padding: 0 0 60px;
  }
  .op-jobs__list {
    padding: 0 20px;
    gap: 16px;
  }
  .op-job-card {
    padding: 16px 20px;
  }
  .op-job-card__label {
    font-size: 12px;
  }
  .op-job-card__title {
    font-size: 16px;
  }
  .op-guide {
    padding: 60px 0;
  }
  .op-guide__title {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .op-guide__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .op-guide__col-title {
    font-size: 14px;
  }
  .op-guide__link {
    font-size: 15px;
  }

  /* Job Detail */
  .jd-hero__decoration {
    height: 120px;
  }
  .jd-hero .container {
    padding-top: 32px;
    padding-bottom: 24px;
  }
  .jd-hero__breadcrumb {
    font-size: 12px;
  }
  .jd-hero__title {
    font-size: 25px;
  }
  .jd-hero__back {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .jd-summary {
    padding: 40px 0 0;
  }
  .jd-summary__intro p {
    font-size: 15px;
  }
  .jd-summary__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .jd-section {
    padding: 40px 0;
  }
  .jd-section__title {
    font-size: 20px;
  }
  .jd-section__lead {
    font-size: 15px;
  }
  .jd-section__list li {
    font-size: 14px;
  }
  .jd-apply {
    padding: 48px 0;
  }
  .jd-apply__title {
    font-size: 22px;
  }
  .jd-apply__intro {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .jd-form__fieldset {
    padding: 16px;
  }
  .jd-form__row {
    grid-template-columns: 1fr;
  }
  .jd-process {
    padding: 48px 0;
  }
  .jd-process__title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .jd-process__grid {
    grid-template-columns: 1fr;
  }
  .jd-process__step {
    padding: 24px;
  }
  .jd-process__number {
    font-size: 28px;
  }
  .jd-process__step-title {
    font-size: 16px;
  }
  .jd-company {
    padding: 48px 0;
  }
  .jd-company__title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .jd-company__grid {
    grid-template-columns: 1fr;
  }
  .jd-company__col {
    padding: 24px;
  }

  /* Technologies */
  .tech-hero {
    padding: 100px 20px 40px;
  }
  .tech-hero__breadcrumb {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .tech-hero__title {
    font-size: 25px;
    margin-bottom: 24px;
  }
  .tech-hero__subtitle {
    font-size: 15px;
  }
  .section-tech-category {
    padding: 40px 0;
  }
  .tech-category__intro {
    margin-bottom: 32px;
  }
  .tech-category__label {
    font-size: 14px;
  }
  .tech-category__heading {
    font-size: 20px;
    font-weight: 500;
  }
  .tech-category__desc {
    font-size: 15px;
  }
  .tech-grid {
    gap: 16px;
  }
  .tech-grid__illustration {
    min-height: 200px;
    border-radius: 16px;
  }
  .tech-grid__illustration-label {
    font-size: 24px;
  }
  .tech-card {
    padding: 24px;
    border-radius: 16px;
  }
  .tech-card__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .tech-card__body {
    font-size: 14px;
  }

  /* Industries */
  .ind-hero {
    padding: 100px 20px 40px;
  }
  .ind-hero__breadcrumb {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .ind-hero__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .ind-hero__subtitle {
    font-size: 15px;
  }
  .ind-section {
    padding: 20px 0 60px;
  }
  .ind-card {
    padding: 24px;
    margin-bottom: 32px;
    border-radius: 16px;
  }
  .ind-card__title {
    font-size: 22px;
  }
  .ind-card__intro {
    font-size: 15px;
  }
  .ind-card__image img {
    height: 160px;
  }
  .ind-card__features {
    flex-direction: column;
    gap: 20px;
  }
  .ind-card__feature-title {
    font-size: 16px;
  }
  .ind-card__feature-body {
    font-size: 14px;
  }

  /* --- Dentsu Case Study: mobile --- */
  .case-hero--dentsu {
    padding: 30px 24px 40px;
  }

  .case-hero--dentsu__title {
    font-size: 24px;
  }

  .case-hero--dentsu__body {
    font-size: 14px;
  }

  .case-hero--dentsu__tags {
    gap: 16px;
  }

  .case-hero--dentsu__tag {
    font-size: 12px;
  }

  .case-vision,
  .case-demands,
  .case-performance,
  .case-roadmap {
    padding: 60px 24px;
  }

  .case-values {
    padding: 60px 24px;
  }

  .case-values__container {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .case-section-label {
    font-size: 14px;
  }

  .case-vision__heading,
  .case-demands__subtitle,
  .case-values__subtitle,
  .case-performance__heading,
  .case-roadmap__subtitle {
    font-size: 22px;
  }

  .case-stat {
    padding: 32px;
    border-radius: 20px;
  }

  .case-roadmap__item {
    padding: 32px;
    border-radius: 20px;
  }

  .case-external-link {
    margin: 40px 24px;
    padding: 24px 32px;
  }

  .case-performance--af {
    padding: 0 24px 60px;
  }

  .case-performance--af__inner {
    padding: 32px;
    border-radius: 20px;
  }

  .case-cta {
    padding: 40px 24px;
  }

  .case-cta__title {
    font-size: 24px;
  }

  .products-unit {
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 16px;
  }

  .products-unit__tag {
    font-size: 14px;
  }

  .products-unit__title {
    font-size: 25px;
    font-weight: 500;
  }

  .product-hub-card {
    width: 100%;
    min-height: 160px;
  }

  .product-hub-card__name {
    font-size: 18px;
  }

  .product-hub-card__desc {
    font-size: 15px;
  }

  .section-intro__body--large {
    font-size: 22px;
    line-height: 1.4;
  }

  .section-intro__label {
    font-size: 14px;
  }

  .product-page-breadcrumb {
    padding: 40px 0 16px;
  }

  .product-banner {
    padding: 30px 24px;
    border-radius: 16px;
  }

  .product-banner__headline {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .product-banner__category {
    font-size: 13px;
  }

  .product-banner__name {
    font-size: 20px;
  }

  .product-banner__desc {
    font-size: 15px;
  }

  .product-features-section {
    padding: 60px 0 80px;
  }

  .product-features-section__title {
    font-size: 22px;
  }

  .product-features-section__intro {
    font-size: 15px;
  }

  .product-features-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-feature-card__title {
    font-size: 17px;
  }

  .product-feature-card__body {
    font-size: 15px;
  }
}

/* ===================== EMPLOYEE TESTIMONIAL (ELLEN) ===================== */

.et-hero {
  background: linear-gradient(45deg, #51ABFF 0%, #65F0E8 100%);
  border-radius: 30px;
  padding: 60px;
  margin: 0 50px;
}

.et-hero__inner {
  max-width: calc(60% - 20px);
}

.et-hero__title {
  font-family: var(--font-mono);
  font-size: 45px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

.et-hero__source {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}

.et-hero__source:hover {
  text-decoration: underline;
}

.et-hero__subtitle {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin: 10px 0 0;
}

.et-content {
  padding: 0 100px;
  margin: 100px 0 200px;
}

.et-content__divider {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #51ABFF 0%, #65F0E8 100%);
  border-radius: 50%;
  margin: 0 auto;
}

.et-content__heading {
  font-family: var(--font-mono);
  font-size: 35px;
  font-weight: 400;
  color: #2b2b2b;
  text-align: center;
  margin: 20px 0 40px;
}

.et-content__body {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1.7;
  max-width: 60%;
  margin: 0 auto;
  padding: 0;
}

.et-content__body + .et-content__body {
  padding-top: 24px;
}

.et-pullquote {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 20px;
  max-width: 60%;
  margin: 40px auto 0;
  border: 1px solid #d0d0d0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-sizing: border-box;
}

.et-pullquote__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-top: 4px;
}

.et-pullquote__text {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

.et-pullquote + .et-content__body {
  padding-top: 40px;
}

/* ---- Employee Testimonial: Tablet (840px) ---- */
@media (max-width: 840px) {
  .et-hero {
    padding: 40px;
    margin: 0 30px;
    border-radius: 20px;
  }

  .et-hero__inner {
    max-width: 80%;
  }

  .et-hero__title {
    font-size: 34px;
  }

  .et-hero__subtitle {
    font-size: 22px;
  }

  .et-content {
    padding: 0 50px;
    margin: 60px 0 120px;
  }

  .et-content__heading {
    font-size: 28px;
  }

  .et-content__body {
    max-width: 80%;
    font-size: 16px;
  }

  .et-pullquote {
    max-width: 80%;
  }

  .et-pullquote__text {
    font-size: 18px;
  }
}

/* ---- Employee Testimonial: Mobile (540px) ---- */
@media (max-width: 540px) {
  .et-hero {
    padding: 30px 24px;
    margin: 0 16px;
    border-radius: 16px;
  }

  .et-hero__inner {
    max-width: 100%;
  }

  .et-hero__title {
    font-size: 24px;
  }

  .et-hero__source {
    font-size: 13px;
  }

  .et-hero__subtitle {
    font-size: 18px;
  }

  .et-content {
    padding: 0 24px;
    margin: 40px 0 80px;
  }

  .et-content__heading {
    font-size: 22px;
    margin: 16px 0 24px;
  }

  .et-content__body {
    max-width: 100%;
    font-size: 15px;
  }

  .et-pullquote {
    max-width: 100%;
    margin: 30px auto 0;
    padding: 20px;
    border-radius: 14px;
    flex-direction: column;
    gap: 16px;
  }

  .et-pullquote__text {
    font-size: 16px;
  }

  .et-pullquote + .et-content__body {
    padding-top: 30px;
  }
}

/* ---- Scoville Brand: Tablet (840px) ---- */
@media (max-width: 840px) {
  .sb-hero__logo { height: 100px; }
  .sb-hero__brand-img { height: 100px; }

  .sb-intro__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sb-vision__card { padding: 60px 40px; }
  .sb-vision__title { font-size: 26px; }

  .sb-mission__title { font-size: 22px; }

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

  .sb-principles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sb-pillar__title { font-size: 72px; }
  .sb-pillar__grid { grid-template-columns: 1fr; }

  .sb-showcase__grid--3,
  .sb-showcase__grid--3x2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sb-identity__row { grid-template-columns: 1fr; }
  .sb-identity__subsection-pair { grid-template-columns: 1fr; }
  .sb-identity__misuse-grid { grid-template-columns: repeat(2, 1fr); }

  .sb-typeface {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sb-colors__row--brand {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: none;
    justify-items: start;
  }
  .sb-colors__row--secondary {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .sb-colors__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ---- Scoville Brand: Mobile (540px) ---- */
@media (max-width: 540px) {
  .sb-hero { padding: 80px 0 60px; }
  .sb-hero__logo { height: 60px; }
  .sb-hero__brand-img { height: 60px; }
  .sb-hero__logo-row { gap: 12px; flex-wrap: wrap; justify-content: center; }

  @media (max-width: 400px) {
    .sb-hero__logo { height: 44px; }
    .sb-hero__brand-img { height: 44px; }
  }

  .sb-intro { padding: 40px 0 60px; }

  .sb-vision__card {
    padding: 40px 24px;
    border-radius: 16px;
  }
  .sb-vision__title { font-size: 20px; }

  .sb-mission { padding: 60px 0; }
  .sb-mission__title { font-size: 18px; }

  .sb-values { padding: 60px 0; }
  .sb-value__title { font-size: 18px; }

  .sb-principles { padding: 60px 0; }
  .sb-principles__grid { grid-template-columns: 1fr; }

  .sb-pillar { padding: 60px 0; }
  .sb-pillar__title { font-size: 48px; }
  .sb-pillar__card { grid-template-columns: 1fr; }

  .sb-showcase__grid--3,
  .sb-showcase__grid--2,
  .sb-showcase__grid--3x2 {
    grid-template-columns: 1fr;
  }

  .sb-identity { padding: 60px 0; }
  .sb-identity__logo-display { padding: 40px; }
  .sb-identity__misuse-grid { grid-template-columns: 1fr; }

  .sb-colors { padding: 60px 0; }
  .sb-colors__row { gap: 16px; }
  .sb-colors__row--brand {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sb-colors__row--secondary {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .sb-colors__prohibited {
    flex-direction: column;
    text-align: center;
  }
  .sb-colors__prohibited-text { text-align: center; }

  .sb-typefaces { padding: 60px 0; }
}
