:root {
  --studio-bg: #f3ede4;
  --studio-surface: #fffaf2;
  --studio-surface-2: #efe6d8;
  --studio-ink: #151515;
  --studio-ink-soft: rgba(21, 21, 21, 0.68);
  --studio-line: rgba(21, 21, 21, 0.12);
  --studio-line-strong: rgba(21, 21, 21, 0.22);
  --studio-coral: #f0642d;
  --studio-blue: #2670ff;
  --studio-green: #16805c;
  --studio-gold: #b9851b;
  --studio-violet: #5f45d2;
  --studio-lavender: #7f5dff;
  --studio-dark: #121212;
  --studio-dark-soft: rgba(255, 255, 255, 0.72);
  --studio-shadow: 0 24px 80px rgba(26, 20, 14, 0.12);
  --studio-radius-lg: 36px;
  --studio-radius-md: 24px;
  --studio-radius-sm: 18px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(240, 100, 45, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(38, 112, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #f6f1e8 0%, #efe6d8 100%);
  color: var(--studio-ink);
  font-family: 'IBM Plex Sans', sans-serif;
}

.noise {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(240, 100, 45, 0.08), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(38, 112, 255, 0.08), transparent 24%),
    radial-gradient(circle at 60% 70%, rgba(22, 128, 92, 0.06), transparent 28%);
  filter: blur(90px);
  opacity: 0.45;
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(246, 241, 232, 0.88);
  backdrop-filter: blur(16px);
}

nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img {
  height: 44px;
  filter: brightness(0.05);
}

nav .links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 10px;
}

nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  color: rgba(21, 21, 21, 0.78);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background 0.2s ease;
}

nav a:hover {
  color: var(--studio-ink);
  background: rgba(21, 21, 21, 0.05);
}

/* Mobile menu — hidden on desktop */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-btn .hamburger {
  width: 24px;
  height: 2px;
  background: var(--studio-ink);
  border-radius: 2px;
  transition: 0.2s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: calc(100vh - 72px);
  background: rgba(246, 241, 232, 0.98);
  backdrop-filter: blur(12px);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 5000;
  padding: 24px;
}

.mobile-menu.active {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0;
}

.mobile-menu-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--studio-ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 16px;
  transition: background 0.15s;
}

.mobile-menu-content a:hover {
  background: rgba(255, 255, 255, 0.95);
}

.mobile-menu-content a.cta {
  background: var(--studio-coral);
  color: #fff;
  border-color: var(--studio-coral);
}

.language-switcher {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(21, 21, 21, 0.04);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 999px;
  color: var(--studio-ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-current:hover {
  background: rgba(21, 21, 21, 0.08);
}

.lang-current:hover {
  background: rgba(21, 21, 21, 0.08);
  border-color: rgba(21, 21, 21, 0.14);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 160px;
  padding: 6px;
  background: rgba(255, 250, 242, 0.98);
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}

.language-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 13px;
  color: rgba(21, 21, 21, 0.72);
  font-family: 'IBM Plex Sans', sans-serif;
}

.lang-option:hover {
  background: rgba(21, 21, 21, 0.05);
  color: var(--studio-ink);
}

.lang-option.active {
  background: rgba(38, 112, 255, 0.08);
  color: var(--studio-blue);
  font-weight: 600;
}

.cta,
.outline {
  min-height: auto;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.cta {
  background: var(--studio-dark);
  color: #fff;
  box-shadow: 0 10px 30px rgba(21, 21, 21, 0.12);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(21, 21, 21, 0.16);
}

.outline {
  border: 1px solid rgba(21, 21, 21, 0.14);
  color: var(--studio-ink);
  background: rgba(255, 255, 255, 0.45);
}

.outline:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(21, 21, 21, 0.24);
}

.studio-main {
  position: relative;
  z-index: 1;
}

.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 110px 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(21, 21, 21, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(16, 20, 27, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.section-label-light {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.section-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-top h2 {
  margin: 18px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.section-top p {
  margin: 0;
  color: var(--studio-ink-soft);
  line-height: 1.75;
  font-size: 15px;
}

.studio-hero {
  padding-top: 72px;
  padding-bottom: 56px;
}

.hero-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 26px;
  align-items: stretch;
}

.hero-copy-new {
  padding: 18px 0 0;
}

.hero-copy-new h1 {
  margin: 22px 0 22px;
  max-width: 11ch;
  font-family: 'Sora', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  color: var(--studio-ink);
}

.hero-text-new {
  max-width: 58ch;
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--studio-ink-soft);
}

.hero-actions-new {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-fact {
  padding: 16px 18px;
  border-radius: var(--studio-radius-sm);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 8px 24px rgba(34, 27, 18, 0.05);
}

.hero-fact-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(21, 21, 21, 0.45);
}

.hero-fact-value {
  color: var(--studio-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-board {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 40px;
  background: var(--studio-dark);
  color: #fff;
  box-shadow: 0 28px 80px rgba(16, 13, 10, 0.22);
  position: relative;
  overflow: hidden;
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(240, 100, 45, 0.28), transparent 26%),
    radial-gradient(circle at bottom left, rgba(38, 112, 255, 0.2), transparent 22%);
  pointer-events: none;
}

.hero-board > * {
  position: relative;
  z-index: 1;
}

.hero-board-head p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.board-lane {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.board-index {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.board-copy h2 {
  margin: 0 0 8px;
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.board-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.board-note {
  margin-top: auto;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-ribbon span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.06);
  border: 1px solid rgba(21, 21, 21, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: rgba(21, 21, 21, 0.72);
}

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

.entry-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 28px;
  border-radius: var(--studio-radius-lg);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--studio-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 90px rgba(26, 20, 14, 0.16);
}

.entry-card-product {
  background: linear-gradient(145deg, rgba(240, 100, 45, 0.12), rgba(255, 250, 242, 0.9));
  border: 1px solid rgba(240, 100, 45, 0.18);
}

.entry-card-service {
  background: linear-gradient(145deg, rgba(38, 112, 255, 0.1), rgba(255, 250, 242, 0.9));
  border: 1px solid rgba(38, 112, 255, 0.18);
}

.entry-letter {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--studio-ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.entry-body h3 {
  margin: 2px 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.entry-body p {
  margin: 0 0 16px;
  color: var(--studio-ink-soft);
  line-height: 1.75;
}

.entry-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.entry-body li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(21, 21, 21, 0.08);
  font-size: 12px;
  font-weight: 600;
}

.entry-link {
  font-weight: 700;
}

.products-section {
  padding-top: 96px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  margin-bottom: 24px;
}

.product-feature-copy {
  padding: 30px;
  border-radius: var(--studio-radius-lg);
  background: var(--studio-dark);
  color: #fff;
  box-shadow: 0 28px 90px rgba(19, 15, 12, 0.18);
}

.feature-label {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.product-feature-copy h3 {
  margin: 0 0 14px;
  font-family: 'Sora', sans-serif;
  font-size: 44px;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.product-feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 22px;
}

.feature-points span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.feature-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.product-feature-preview {
  padding: 24px;
  border-radius: var(--studio-radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: var(--studio-shadow);
}

.preview-window {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.preview-window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  background: #faf6ef;
}

.preview-window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.18);
}

.preview-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  padding: 22px;
}

.preview-column-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(38, 112, 255, 0.08), rgba(240, 100, 45, 0.08));
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.preview-chip {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 21, 21, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preview-column-main h4 {
  margin: 0 0 12px;
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.preview-column-main p {
  margin: 0;
  color: var(--studio-ink-soft);
  line-height: 1.7;
}

.preview-stack {
  display: grid;
  gap: 12px;
}

.preview-card {
  padding: 18px;
  border-radius: 20px;
  background: #faf6ef;
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.preview-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.preview-card span {
  color: var(--studio-ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.product-grid-new {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-tile {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 14px 36px rgba(26, 20, 14, 0.06);
}

.product-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-tile h3 {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.product-tile p {
  margin: 0 0 16px;
  color: var(--studio-ink-soft);
  line-height: 1.7;
}

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

.product-tile li {
  position: relative;
  padding-left: 16px;
  color: rgba(21, 21, 21, 0.74);
  font-size: 14px;
}

.product-tile li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.36;
}

.product-tile-blue .product-kicker { color: var(--studio-blue); }
.product-tile-green .product-kicker { color: var(--studio-green); }
.product-tile-violet .product-kicker { color: var(--studio-violet); }
.product-tile-lavender .product-kicker { color: var(--studio-lavender); }
.product-tile-gold .product-kicker { color: var(--studio-gold); }
.product-tile-neutral .product-kicker { color: rgba(21, 21, 21, 0.6); }

.services-section {
  padding-top: 96px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
}

.service-intro {
  padding: 30px;
  border-radius: var(--studio-radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(239, 230, 216, 0.92));
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.service-intro-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-intro h3 {
  margin: 0 0 14px;
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.service-intro p {
  margin: 0;
  color: var(--studio-ink-soft);
  line-height: 1.75;
}

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

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 12px 30px rgba(26, 20, 14, 0.06);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--studio-dark);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.service-row-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 18px;
  margin-bottom: 8px;
}

.service-row-head h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.service-row-head span {
  color: rgba(21, 21, 21, 0.45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-row-body p {
  margin: 0;
  color: var(--studio-ink-soft);
  line-height: 1.75;
}

.methodology-section {
  padding-top: 96px;
}

.methodology-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  padding: 32px;
  border-radius: 42px;
  background: var(--studio-dark);
  color: #fff;
  box-shadow: 0 28px 90px rgba(16, 13, 10, 0.2);
}

.methodology-copy h2 {
  margin: 18px 0 12px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.methodology-copy p {
  margin: 0;
  color: var(--studio-dark-soft);
  line-height: 1.75;
}

.methodology-grid {
  display: grid;
  gap: 14px;
}

.method-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.method-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.method-card h3 {
  margin: 0 0 8px;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.method-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.fit-layout-new {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  margin-bottom: 24px;
}

.fit-copy-new h2 {
  margin: 18px 0 12px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.fit-copy-new p {
  margin: 0;
  color: var(--studio-ink-soft);
  line-height: 1.75;
}

.fit-grid-new {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fit-pill {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.08);
  color: rgba(21, 21, 21, 0.78);
  line-height: 1.6;
}

.evidence-grid-new {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.case-carousel {
  display: grid;
  gap: 18px;
}

.case-carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.case-carousel-intro {
  max-width: 44ch;
}

.case-carousel-intro p {
  margin: 12px 0 0;
  color: var(--studio-ink-soft);
  line-height: 1.7;
}

.case-carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 21, 21, 0.08);
  color: rgba(21, 21, 21, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.case-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--studio-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.case-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 21, 21, 0.16);
  box-shadow: 0 14px 28px rgba(21, 21, 21, 0.08);
}

.case-carousel-viewport {
  overflow: hidden;
}

.case-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.case-slide {
  min-width: 100%;
}

.evidence-clients,
.case-panel {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 14px 34px rgba(26, 20, 14, 0.06);
}

.client-chip-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 18px 28px;
  margin-top: 20px;
}

.client-logo {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
}

.client-logo img {
  max-width: 100%;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.client-logo-wide img {
  max-height: 62px;
  transform: scale(1.08);
  transform-origin: center;
}

.client-logo-mediklinik {
  min-height: 92px;
}

.client-logo-mediklinik img {
  max-height: 108px;
  transform: scale(1.16);
}

.client-logo:hover img {
  opacity: 1;
  transform: translateY(-1px) scale(1.02);
}

.client-logo-wide:hover img {
  transform: translateY(-1px) scale(1.1);
}

.client-logo-mediklinik:hover img {
  transform: translateY(-1px) scale(1.2);
}

.case-panel h3 {
  margin: 18px 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.case-panel-lede {
  margin: 0;
  color: rgba(21, 21, 21, 0.74);
  font-size: 17px;
  line-height: 1.72;
}

.case-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.case-panel-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(21, 21, 21, 0.46);
}

.case-panel-grid p {
  margin: 0;
  color: var(--studio-ink-soft);
  line-height: 1.7;
}

.case-highlight {
  color: var(--studio-green);
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.case-carousel-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 18px;
  align-items: stretch;
}

.case-dots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.case-dot {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.case-dot:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 21, 21, 0.14);
  box-shadow: 0 12px 26px rgba(21, 21, 21, 0.06);
}

.case-dot-line {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.1);
  overflow: hidden;
  position: relative;
}

.case-dot-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0.18);
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--studio-coral), var(--studio-blue));
  transition: transform 0.35s ease;
}

.case-dot.active {
  border-color: rgba(38, 112, 255, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(231, 239, 255, 0.88));
  box-shadow: 0 16px 34px rgba(21, 21, 21, 0.08);
}

.case-dot.active .case-dot-line::after {
  transform: scaleX(1);
}

.case-dot-label {
  color: rgba(21, 21, 21, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.case-next-card {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 18px 20px;
  border-radius: 28px;
  border: 1px solid rgba(240, 100, 45, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 230, 0.94));
  color: var(--studio-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(21, 21, 21, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-next-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(21, 21, 21, 0.09);
}

.case-next-kicker {
  color: rgba(21, 21, 21, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-next-card strong {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.case-next-meta {
  color: var(--studio-coral);
  font-size: 14px;
  font-weight: 700;
}

.faq-shell-new {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
}

.faq-sidebar {
  padding: 28px;
  border-radius: 30px;
  background: var(--studio-dark);
  color: #fff;
}

.faq-sidebar h3 {
  margin: 18px 0 12px;
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.faq-sidebar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.faq-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.faq-sidebar-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.faq-list-new {
  display: grid;
  gap: 12px;
}

.faq-item-new {
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.faq-item-new.open {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(21, 21, 21, 0.14);
}

.faq-question-new {
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--studio-ink);
}

.faq-question-new span:first-child {
  font-family: 'Sora', sans-serif;
  font-size: 23px;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.faq-icon-new {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  line-height: 1;
  color: var(--studio-coral);
}

.faq-answer-new {
  padding-top: 14px;
}

.faq-answer-new p {
  margin: 0;
  color: var(--studio-ink-soft);
  line-height: 1.75;
}

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

.blog-card-new {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 14px 34px rgba(26, 20, 14, 0.06);
}

.blog-card-meta-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-card-tag,
.blog-card-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card-tag {
  background: rgba(38, 112, 255, 0.1);
  color: var(--studio-blue);
}

.blog-card-state {
  background: rgba(21, 21, 21, 0.05);
  color: rgba(21, 21, 21, 0.48);
}

.blog-card-new h3 {
  margin: 0 0 12px;
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.blog-card-new p {
  margin: 0;
  color: var(--studio-ink-soft);
  line-height: 1.75;
}

.blog-card-new a {
  margin-top: auto;
  padding-top: 20px;
  color: var(--studio-ink);
  text-decoration: none;
  font-weight: 700;
}

.team-grid-new {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-card-new {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 14px 34px rgba(26, 20, 14, 0.06);
}

.team-avatar-new {
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(21, 21, 21, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar-new-placeholder {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(145deg, rgba(240, 100, 45, 0.24), rgba(38, 112, 255, 0.18));
  color: var(--studio-ink);
}

.team-card-new h3 {
  margin: 0 0 8px;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.team-card-new span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(21, 21, 21, 0.48);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.team-card-new p {
  margin: 0;
  color: var(--studio-ink-soft);
  line-height: 1.7;
}

.contact-section-new {
  padding-bottom: 96px;
}

.contact-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: 24px;
  padding: 32px;
  border-radius: 42px;
  background: var(--studio-dark);
  color: #fff;
  box-shadow: 0 28px 90px rgba(16, 13, 10, 0.22);
}

.contact-copy-new h2 {
  margin: 18px 0 14px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contact-copy-new p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.contact-points-new {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0;
}

.contact-points-new span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.contact-points-new span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--studio-coral);
  box-shadow: 16px 0 0 rgba(255, 255, 255, 0.08);
}

.contact-direct-new {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-direct-new a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.contact-form-panel {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--studio-coral);
}

.checkbox-text {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
  font-size: 13px;
}

.privacy-link {
  color: #fff;
}

.submit-btn {
  width: 100%;
  border: none;
}

.form-message.success {
  background: rgba(22, 128, 92, 0.18);
  border-color: rgba(22, 128, 92, 0.28);
  color: #9ef0cf;
}

.form-message.error {
  background: rgba(240, 100, 45, 0.2);
  border-color: rgba(240, 100, 45, 0.28);
  color: #ffc5b2;
}

.footer {
  background: transparent;
  border-top: 1px solid rgba(21, 21, 21, 0.08);
  color: rgba(21, 21, 21, 0.6);
}

.footer-link-muted {
  color: rgba(21, 21, 21, 0.72);
}

.footer-link-muted:hover {
  color: var(--studio-ink);
}

@media (max-width: 1100px) {
  .hero-frame,
  .section-top,
  .product-feature,
  .service-layout,
  .methodology-band,
  .fit-layout-new,
  .evidence-grid-new,
  .faq-shell-new,
  .contact-frame {
    grid-template-columns: 1fr;
  }

  .hero-copy-new h1 {
    max-width: 12ch;
  }

  .hero-facts,
  .product-grid-new,
  .blog-grid-new,
  .team-grid-new,
  .case-dots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  .logo-img {
    height: 38px;
  }

  .section {
    padding: 88px 20px;
  }

  .studio-hero {
    padding-top: 54px;
  }

  .hero-copy-new h1 {
    max-width: none;
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .hero-actions-new,
  .hero-facts,
  .entry-grid,
  .fit-grid-new,
  .case-panel-grid,
  .blog-grid-new,
  .team-grid-new,
  .case-dots {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .entry-card,
  .service-row {
    grid-template-columns: 1fr;
  }

  .case-carousel-head,
  .case-carousel-controls {
    align-items: stretch;
  }

  .case-carousel-head {
    flex-direction: column;
  }

  .case-carousel-controls {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .product-grid-new {
    grid-template-columns: 1fr;
  }

  .preview-shell {
    grid-template-columns: 1fr;
  }

  .contact-frame,
  .hero-board,
  .product-feature-copy,
  .product-feature-preview,
  .service-intro,
  .accessibility-card,
  .accessibility-panel,
  .evidence-clients,
  .case-panel,
  .faq-sidebar,
  .blog-card-new,
  .team-card-new,
  .contact-form-panel,
  .case-next-card {
    padding: 22px;
  }

  .section-top h2,
  .service-intro h3,
  .faq-sidebar h3,
  .case-panel h3 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .board-copy h2,
  .product-feature-copy h3,
  .entry-body h3,
  .blog-card-new h3 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-card,
  .cta,
  .outline {
    transition: none;
  }
}

/* PHASE 2 ART DIRECTION */

:root {
  --studio-paper: #fbf4e9;
  --studio-midnight: #0f1218;
  --studio-midnight-2: #171c25;
  --studio-grid: rgba(21, 21, 21, 0.05);
}

body {
  background:
    radial-gradient(circle at top left, rgba(240, 100, 45, 0.14), transparent 18%),
    radial-gradient(circle at top right, rgba(38, 112, 255, 0.16), transparent 20%),
    repeating-linear-gradient(90deg, transparent 0 119px, var(--studio-grid) 119px 120px),
    linear-gradient(180deg, #f9f3e8 0%, #f0e7da 100%);
}

.noise {
  opacity: 0.34;
  filter: blur(120px);
}

header {
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
  background: rgba(249, 243, 232, 0.82);
}

nav a {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

nav a.cta {
  background: var(--studio-dark);
  border-color: transparent;
}

.studio-main::before,
.studio-main::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.studio-main::before {
  top: -12vw;
  right: -6vw;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 100, 45, 0.22), transparent 62%);
}

.studio-main::after {
  bottom: -15vw;
  left: -8vw;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 112, 255, 0.18), transparent 64%);
}

.section {
  padding-top: 124px;
  padding-bottom: 124px;
}

.section-label {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(21, 21, 21, 0.16);
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.04);
}

.section-label.section-label-dark {
  color: #fff;
  background: rgba(16, 20, 27, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.section-label.section-label-light {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.section-top {
  margin-bottom: 42px;
}

.section-top h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.studio-hero {
  min-height: calc(100svh - 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding-top: clamp(28px, 4vh, 56px);
  padding-bottom: clamp(18px, 3vh, 36px);
}

.hero-frame {
  grid-template-columns: minmax(0, 1.14fr) 400px;
  gap: 28px;
  align-items: center;
}

.hero-copy-new {
  position: relative;
  padding: 18px 0 0 24px;
}

.hero-copy-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--studio-coral), rgba(38, 112, 255, 0.9));
}

.hero-copy-new h1 {
  margin: 16px 0 16px;
  max-width: 11.2ch;
  font-size: clamp(3.05rem, 5.8vw, 5.75rem);
  letter-spacing: -0.095em;
}

.hero-text-new {
  max-width: 60ch;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.68;
}

.hero-facts {
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid rgba(21, 21, 21, 0.12);
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
}

.hero-fact {
  padding: 14px 14px 14px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(21, 21, 21, 0.1);
  box-shadow: none;
}

.hero-fact:last-child {
  padding-right: 0;
  border-right: none;
}

.hero-board {
  padding: 24px;
  border-radius: 28px;
  clip-path: polygon(0 0, calc(100% - 54px) 0, 100% 54px, 100% 100%, 44px 100%, 0 calc(100% - 44px));
  background: linear-gradient(145deg, var(--studio-midnight) 0%, var(--studio-midnight-2) 100%);
}

.hero-board::before {
  background:
    radial-gradient(circle at top right, rgba(240, 100, 45, 0.24), transparent 24%),
    radial-gradient(circle at bottom left, rgba(38, 112, 255, 0.18), transparent 20%),
    repeating-linear-gradient(0deg, transparent 0 63px, rgba(255, 255, 255, 0.05) 63px 64px),
    repeating-linear-gradient(90deg, transparent 0 63px, rgba(255, 255, 255, 0.05) 63px 64px);
}

.hero-board-head {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.board-lane {
  padding: 16px 0;
}

.board-copy h2 {
  font-size: 30px;
}

.board-note {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-ribbon {
  gap: 0;
  padding: 12px 16px;
  margin-top: 14px;
  border-radius: 24px;
  background: rgba(15, 18, 24, 0.96);
  box-shadow: 0 20px 60px rgba(16, 13, 10, 0.16);
}

.hero-ribbon span {
  position: relative;
  padding: 0 18px 0 0;
  margin-right: 18px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hero-ribbon span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.hero-ribbon span:last-child {
  margin-right: 0;
  padding-right: 0;
}

.hero-ribbon span:last-child::after {
  display: none;
}

.entry-grid {
  gap: 24px;
}

.entry-card {
  padding: 34px;
  border-radius: 28px;
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
}

.entry-card-product {
  background: linear-gradient(145deg, #121317 0%, #1d2129 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.entry-card-product .entry-letter {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.entry-card-product .entry-body p,
.entry-card-product .entry-link {
  color: rgba(255, 255, 255, 0.74);
}

.entry-card-product .entry-body li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.entry-card-service {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(229, 237, 255, 0.92));
  border-color: rgba(38, 112, 255, 0.16);
}

.entry-letter {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 24px;
}

.products-section {
  position: relative;
  padding: 54px 42px 48px;
  border-radius: 44px;
  background: linear-gradient(180deg, #101317 0%, #18202b 100%);
  box-shadow: 0 40px 120px rgba(17, 14, 12, 0.22);
}

.products-section .section-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.products-section .section-top h2,
.products-section .section-top p {
  color: #fff;
}

.products-section .section-top p {
  color: rgba(255, 255, 255, 0.7);
}

.product-feature {
  margin-bottom: 30px;
}

.product-feature-copy {
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 0 100%);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.product-feature-preview {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.preview-window {
  background: #0f1218;
  border-color: rgba(255, 255, 255, 0.08);
}

.preview-window-top {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.preview-window-top span {
  background: rgba(255, 255, 255, 0.26);
}

.preview-column-main {
  background: linear-gradient(145deg, rgba(240, 100, 45, 0.15), rgba(38, 112, 255, 0.16));
  border-color: rgba(255, 255, 255, 0.08);
}

.preview-chip {
  background: rgba(15, 18, 24, 0.72);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.preview-column-main h4,
.preview-card strong {
  color: #fff;
}

.preview-column-main p,
.preview-card span {
  color: rgba(255, 255, 255, 0.72);
}

.preview-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-grid-new {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.product-tile {
  min-height: 250px;
  padding: 26px;
  border-radius: 26px;
  border: none;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.product-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.product-tile-blue,
.product-tile-green,
.product-tile-violet,
.product-tile-lavender,
.product-tile-gold {
  background: rgba(255, 255, 255, 0.92);
}

.product-tile-blue { grid-column: span 2; }
.product-tile-green { grid-column: span 2; }
.product-tile-violet { grid-column: span 2; }
.product-tile-lavender {
  grid-column: span 2;
  min-height: 220px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(233, 228, 255, 0.92));
}
.product-tile-gold {
  grid-column: span 4;
  min-height: 320px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(249, 235, 205, 0.92));
}
.product-tile-neutral {
  grid-column: span 2;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-tile-blue::before { background: var(--studio-blue); }
.product-tile-green::before { background: var(--studio-green); }
.product-tile-violet::before { background: var(--studio-violet); }
.product-tile-lavender::before { background: var(--studio-lavender); }
.product-tile-gold::before { background: var(--studio-gold); }
.product-tile-neutral::before { background: rgba(255, 255, 255, 0.22); }

.product-tile-neutral h3,
.product-tile-neutral p,
.product-tile-neutral li {
  color: #fff;
}

.product-tile-neutral .product-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.product-tile:nth-child(4) {
  transform: translateY(4px);
}

.product-tile:nth-child(5) {
  transform: translateY(18px);
}

.services-section {
  padding-top: 118px;
}

.service-layout {
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.service-intro {
  position: sticky;
  top: 114px;
  border-radius: 28px;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(245, 235, 220, 0.92));
}

.service-list {
  position: relative;
  gap: 18px;
  padding-left: 36px;
}

.service-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(240, 100, 45, 0.4), rgba(38, 112, 255, 0.38));
}

.service-row {
  position: relative;
  margin-left: 20px;
  padding: 26px 28px;
  border-radius: 28px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.service-row:nth-child(even) {
  margin-left: 88px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(232, 238, 255, 0.92));
}

.service-row:nth-child(odd) {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 239, 230, 0.9));
}

.service-number {
  background: #fff;
  color: var(--studio-ink);
  border: 1px solid rgba(21, 21, 21, 0.1);
  box-shadow: 0 12px 24px rgba(21, 21, 21, 0.06);
}

.accessibility-section {
  padding-top: 86px;
}

.accessibility-card {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) 390px;
  gap: 24px;
  padding: 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(38, 112, 255, 0.14), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(233, 239, 249, 0.84));
  border: 1px solid rgba(38, 112, 255, 0.14);
  box-shadow: 0 24px 70px rgba(21, 21, 21, 0.08);
}

.accessibility-copy h2 {
  margin: 18px 0 14px;
  max-width: 11ch;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.accessibility-copy p {
  max-width: 58ch;
  margin: 0;
  color: var(--studio-ink-soft);
  line-height: 1.8;
}

.accessibility-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.accessibility-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 21, 21, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.accessibility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.accessibility-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, #10141b 0%, #1a2230 100%);
  color: #fff;
  box-shadow: 0 20px 56px rgba(16, 13, 10, 0.18);
}

.accessibility-panel-head p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.accessibility-checks {
  display: grid;
  gap: 12px;
}

.accessibility-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.accessibility-check strong {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.accessibility-check span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.methodology-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(240, 100, 45, 0.18), transparent 26%),
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(255, 255, 255, 0.06) 89px 90px),
    linear-gradient(145deg, #0f1218 0%, #171e28 100%);
}

.fit-layout-new {
  gap: 32px;
}

.fit-pill {
  padding: 20px 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(21, 21, 21, 0.06);
}

.evidence-grid-new {
  align-items: start;
}

.evidence-clients,
.case-panel {
  border-radius: 30px;
  box-shadow: none;
}

.case-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(245, 237, 226, 0.92));
}

.case-panel-alt {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(231, 239, 255, 0.92));
}

.case-panel-alt-2 {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 230, 0.92));
}

.agency-cta-section {
  padding-top: 86px;
}

.agency-cta-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 24px;
  padding: 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(240, 100, 45, 0.14), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(245, 237, 226, 0.9));
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 24px 70px rgba(21, 21, 21, 0.08);
}

.agency-cta-copy h2 {
  margin: 18px 0 14px;
  max-width: 11ch;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.97;
  letter-spacing: -0.07em;
}

.agency-cta-copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--studio-ink-soft);
  line-height: 1.8;
}

.agency-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.agency-cta-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, #11151d 0%, #1a202c 100%);
  color: #fff;
  box-shadow: 0 20px 56px rgba(16, 13, 10, 0.18);
}

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

.agency-cta-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.agency-cta-item strong {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.agency-cta-item span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.faq-sidebar {
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(240, 100, 45, 0.3), transparent 24%),
    linear-gradient(145deg, #11151d 0%, #1a202c 100%);
}

.faq-item-new,
.blog-card-new,
.team-card-new {
  box-shadow: none;
}

.blog-card-new {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: rgba(255, 255, 255, 0.86);
}

.blog-card-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 21, 21, 0.02) 100%);
  pointer-events: none;
}

.blog-card-new:nth-child(2) {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(230, 237, 255, 0.94));
}

.blog-card-new:nth-child(3) {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 241, 230, 0.92));
}

.team-card-new {
  background: rgba(255, 255, 255, 0.84);
}

.team-avatar-new {
  border-radius: 24px;
}

.contact-frame {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(240, 100, 45, 0.18), transparent 24%),
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(255, 255, 255, 0.06) 89px 90px),
    linear-gradient(145deg, #0f1218 0%, #181f2b 100%);
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1180px) {
  nav {
    padding: 14px 18px;
  }

  nav .links {
    gap: 6px;
  }

  nav a {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .lang-current {
    min-height: 40px;
    padding: 9px 12px;
  }
}

@media (max-width: 980px) {
  nav .links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu .language-switcher {
    margin-right: 0;
  }

  .mobile-menu .lang-current {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    padding: 12px 16px;
  }
}

@media (max-width: 1200px) {
  .hero-frame,
  .service-layout,
  .accessibility-card,
  .agency-cta-frame {
    grid-template-columns: 1fr;
  }

  .studio-hero {
    min-height: auto;
  }

  .service-intro {
    position: static;
  }

  .service-list {
    padding-left: 0;
  }

  .service-list::before {
    display: none;
  }

  .service-row,
  .service-row:nth-child(even) {
    margin-left: 0;
  }

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

  .product-tile-blue,
  .product-tile-green,
  .product-tile-violet,
  .product-tile-gold,
  .product-tile-lavender,
  .product-tile-neutral {
    grid-column: span 1;
  }

  .product-tile-gold {
    min-height: 300px;
  }

  .product-tile-lavender {
    min-height: 220px;
  }

  .product-tile:nth-child(4),
  .product-tile:nth-child(5) {
    transform: none;
  }
}

@media (max-width: 768px) {
  nav a {
    background: transparent;
    border: none;
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .studio-hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .hero-copy-new {
    padding-left: 16px;
  }

  .hero-copy-new::before {
    width: 3px;
  }

  .hero-facts {
    display: block;
    border-bottom: none;
  }

  .hero-fact {
    padding: 0 0 14px;
    margin-bottom: 14px;
    border-right: none;
    border-bottom: 1px solid rgba(21, 21, 21, 0.1);
  }

  .hero-ribbon {
    padding: 16px;
    gap: 10px;
  }

  .hero-ribbon span {
    margin-right: 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-ribbon span::after {
    display: none;
  }

  .entry-card,
  .service-row,
  .accessibility-card,
  .agency-cta-frame,
  .product-feature-copy,
  .service-intro {
    clip-path: none;
  }

  .products-section {
    padding: 30px 20px;
    border-radius: 30px;
  }

  .product-grid-new {
    grid-template-columns: 1fr;
  }

  .product-tile-gold {
    min-height: 280px;
  }

  .product-tile-lavender {
    grid-column: span 1;
    min-height: 210px;
  }

  .hero-board {
    clip-path: none;
  }

  .accessibility-copy h2 {
    max-width: none;
  }

  .agency-cta-copy h2 {
    max-width: none;
  }

  .client-chip-row {
    gap: 16px 18px;
  }

  .client-logo {
    min-height: 60px;
    padding: 6px 2px;
  }

  .client-logo img {
    max-height: 42px;
  }

  .client-logo-wide img {
    max-height: 48px;
    transform: scale(1.05);
  }

  .client-logo-mediklinik {
    min-height: 78px;
  }

  .client-logo-mediklinik img {
    max-height: 78px;
    transform: scale(1.1);
  }
}

@media (max-height: 860px) and (min-width: 981px) {
  .studio-hero {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .hero-copy-new h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 5vw, 4.9rem);
  }

  .hero-text-new {
    font-size: 16px;
  }

  .hero-facts {
    margin-top: 16px;
  }

  .hero-board {
    padding: 20px;
  }

  .board-lane {
    padding: 14px 0;
  }

  .hero-ribbon {
    display: none;
  }
}

/* ═══ Compact fit grid ═══ */
.fit-grid-compact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--studio-ink-soft);
  line-height: 1.4;
  padding: 10px 0;
  border-bottom: 1px solid var(--studio-line);
}

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

.fit-check {
  font-size: 16px;
  font-weight: 800;
  color: var(--studio-green);
  flex-shrink: 0;
}

/* ═══ Floating contact button — left bottom ═══ */
.floating-contact {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--studio-coral);
  color: #fff;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(240, 100, 45, 0.3);
  transition: all 0.2s;
}

.floating-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 100, 45, 0.4);
}

.floating-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    left: 20px;
    padding: 12px 18px;
    font-size: 13px;
  }
  .floating-contact span.floating-label {
    display: none;
  }
}

/* ═══ Fit Slider ═══ */
.fit-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--studio-radius-md);
}

.fit-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fit-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 4px;
}

.fit-slide-card {
  background: var(--studio-surface);
  border: 1px solid var(--studio-line);
  border-radius: var(--studio-radius-sm);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fit-slide-num {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--studio-ink-soft);
  opacity: 0.4;
  letter-spacing: 1px;
}

.fit-slide-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--studio-ink);
  margin: 0;
}

.fit-slide-card p {
  font-size: 14px;
  color: var(--studio-ink-soft);
  line-height: 1.55;
  margin: 0;
}

.fit-slide-cta {
  background: linear-gradient(135deg, rgba(240,100,45,0.06), rgba(240,100,45,0.02));
  border-color: rgba(240,100,45,0.15);
}

.fit-slide-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--studio-coral);
  text-decoration: none;
  margin-top: 4px;
}

.fit-slide-link:hover {
  text-decoration: underline;
}

.fit-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.fit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--studio-line-strong);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.fit-dot.active {
  background: var(--studio-coral);
  border-color: var(--studio-coral);
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .fit-slide {
    grid-template-columns: 1fr;
  }
}

/* Product tile links */
.product-tile-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
