:root {
  --bg: #fff8f1;
  --bg-2: #fffdf9;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --surface-warm: #fff1e2;
  --text: #21160f;
  --heading: #170e08;
  --muted: #76685d;
  --muted-2: #a38f7f;
  --line: rgba(202, 118, 44, 0.18);
  --line-strong: rgba(220, 112, 19, 0.28);
  --orange: #f58220;
  --orange-2: #ffb15e;
  --orange-3: #ff6a00;
  --amber: #ffc46b;
  --cream: #fff4e8;
  --brown: #6f3b13;
  --shadow-soft: 0 20px 60px rgba(138, 78, 24, 0.10);
  --shadow-card: 0 26px 80px rgba(133, 75, 21, 0.14);
  --shadow-orange: 0 18px 44px rgba(245, 130, 32, 0.26);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(245, 130, 32, 0.22);
  color: var(--heading);
}

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

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

button, input, textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--orange-3), var(--orange), var(--amber));
  box-shadow: 0 0 22px rgba(245, 130, 32, 0.42);
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 130, 32, 0.18), rgba(255, 177, 94, 0.08) 36%, transparent 68%);
  filter: blur(8px);
  transition: opacity .25s ease;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 166, 77, 0.28), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 106, 0, 0.15), transparent 32%),
    radial-gradient(circle at 62% 92%, rgba(255, 196, 107, 0.22), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #fff2e5 48%, #fffdf8 100%);
}

.grid-noise {
  position: absolute;
  inset: 0;
  opacity: .62;
  background-image:
    linear-gradient(rgba(127, 75, 20, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 75, 20, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.85) 36%, transparent 92%);
}

.orb {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  filter: blur(76px);
  opacity: 0.46;
  animation: orbDrift 15s var(--ease-out) infinite alternate;
}

.orb-one {
  right: -110px;
  top: 5%;
  background: #ff8a22;
}

.orb-two {
  left: -120px;
  bottom: 8%;
  background: #ffd087;
  animation-delay: 3s;
}

@keyframes orbDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(42px, -34px, 0) scale(1.08); }
}

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px) saturate(1.3);
  border-radius: 999px;
  box-shadow: 0 14px 42px rgba(116, 69, 28, 0.10);
  z-index: 100;
  transition: min-height .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}

.navbar.scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(245, 130, 32, 0.22);
  box-shadow: 0 20px 56px rgba(116, 69, 28, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--heading);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255, 238, 218, .82));
  border: 1px solid rgba(245, 130, 32, 0.20);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.52), 0 10px 24px rgba(245, 130, 32, 0.14);
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.22rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.nav-menu a {
  position: relative;
  padding: 12px 14px;
  color: #6e6257;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.nav-menu a:hover {
  color: var(--heading);
  background: rgba(245, 130, 32, 0.08);
  transform: translateY(-1px);
}

.nav-menu .nav-cta {
  color: #ffffff;
  padding-inline: 18px;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  box-shadow: 0 14px 30px rgba(245, 130, 32, 0.22);
}

.nav-menu .nav-cta:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #f05f00, var(--orange), #ffc072);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 16px;
  width: 46px;
  height: 46px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--heading);
  border-radius: 999px;
  transition: .25s ease;
}

.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 27px; }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 106px 0;
}

.hero {
  min-height: 100svh;
  padding-top: 158px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange-3);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-3), var(--amber));
}

h1, h2, h3 {
  color: var(--heading);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.05rem, 6.8vw, 6.65rem);
}

.hero h1 {
  background: linear-gradient(135deg, #170e08 0%, #3c2412 42%, #f58220 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.72;
  max-width: 650px;
}

.hero-actions, .contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .28s var(--ease-out), box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.48), transparent);
  transform: translateX(-100%);
  transition: opacity .3s ease;
}

.button:hover::after {
  opacity: 1;
  animation: sheen 1s ease;
}

@keyframes sheen {
  to { transform: translateX(100%); }
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  box-shadow: var(--shadow-orange);
}

.button-secondary {
  color: var(--heading);
  border-color: rgba(245, 130, 32, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(132, 81, 35, 0.08);
}

.button:hover {
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.visual-shell {
  position: relative;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(245, 130, 32, 0.20);
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255, 245, 235, .62)),
    radial-gradient(circle at 18% 12%, rgba(255, 177, 94, .28), transparent 36%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px) saturate(1.2);
  overflow: hidden;
  transform-style: preserve-3d;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.42) 42%, transparent 58%);
  transform: translateX(-130%);
  animation: panelSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes panelSweep {
  0%, 56% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

.visual-topbar {
  display: flex;
  gap: 8px;
  padding: 6px 4px 22px;
}

.visual-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.24);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  gap: 14px;
}

.dash-card {
  min-height: 145px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 16px 42px rgba(138, 78, 24, 0.08);
}

.dash-card.big {
  grid-row: span 2;
  min-height: 304px;
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 130, 32, 0.18), transparent 45%),
    linear-gradient(145deg, #fffefe, #fff1e4);
}

.dash-card.wide {
  grid-column: span 2;
}

.label, .floating-card span {
  display: block;
  color: var(--muted-2);
  font-size: 0.86rem;
  font-weight: 900;
}

.dash-card strong {
  display: block;
  margin-top: 10px;
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.075em;
}

.dash-card.big strong, .performance-grid strong, .case-metrics-grid strong {
  background: linear-gradient(135deg, #d85100 0%, var(--orange) 48%, #ffbd68 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 150px;
  margin-top: 32px;
}

.mini-chart i {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(to top, var(--orange-3), var(--orange-2));
  box-shadow: inset 0 -12px 16px rgba(159, 65, 0, 0.16), 0 12px 24px rgba(245, 130, 32, 0.18);
  transform-origin: bottom;
  animation: growBar 1.9s ease-in-out infinite alternate;
}

.mini-chart i:nth-child(1) { height: 36%; }
.mini-chart i:nth-child(2) { height: 62%; animation-delay: 0.16s; }
.mini-chart i:nth-child(3) { height: 48%; animation-delay: 0.32s; }
.mini-chart i:nth-child(4) { height: 78%; animation-delay: 0.48s; }
.mini-chart i:nth-child(5) { height: 92%; animation-delay: 0.64s; }

@keyframes growBar {
  to { transform: scaleY(.80); opacity: .78; }
}

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

.pipeline span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 130, 32, 0.18);
  color: var(--brown);
  background: rgba(255, 244, 232, 0.72);
  font-weight: 900;
  font-size: 0.86rem;
}

.floating-card {
  position: absolute;
  padding: 16px 18px;
  border: 1px solid rgba(245, 130, 32, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  animation: floatCard 5.3s ease-in-out infinite alternate;
}

.floating-card strong {
  display: block;
  margin-top: 5px;
  color: var(--heading);
  font-size: 1.18rem;
}

.float-one { top: 58px; right: -20px; }
.float-two { left: -24px; bottom: 42px; animation-delay: 1.4s; }

@keyframes floatCard {
  to { transform: translateY(-14px); }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2, .why-panel h2, .package-copy h2, .contact-copy h2 {
  font-size: clamp(2.38rem, 4.25vw, 4.75rem);
}

.section-heading p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 38px;
}

.lead {
  color: var(--heading);
  font-size: clamp(1.16rem, 1.9vw, 1.75rem);
  line-height: 1.48;
  letter-spacing: -0.04em;
}

.lead.muted {
  color: var(--muted);
}

.pillar-grid, .service-grid, .value-grid, .performance-grid, .case-metrics-grid {
  display: grid;
  gap: 18px;
}

.pillar-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pillar, .service-card, .value-card, .timeline-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform .34s var(--ease-out), box-shadow .34s ease, border-color .34s ease, background .34s ease;
}

.pillar:hover, .service-card:hover, .value-card:hover, .timeline-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(245, 130, 32, 0.34);
  box-shadow: var(--shadow-card);
}

.icon, .service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #ffffff;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  box-shadow: 0 16px 34px rgba(245, 130, 32, 0.22);
  font-weight: 900;
}

.pillar h3, .service-card h3, .value-card h3, .timeline-item h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.pillar p, .service-card p, .value-card p, .timeline-item p, .package-copy p {
  color: var(--muted);
  line-height: 1.66;
}

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

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

.case-detail {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(255, 245, 235, .70)),
    radial-gradient(circle at 88% 15%, rgba(245, 130, 32, .18), transparent 30%);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.case-detail::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-3), var(--orange), var(--amber));
}

.case-detail::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.10);
  filter: blur(8px);
  pointer-events: none;
}

.case-detail-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  margin-bottom: 30px;
}

.case-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-3);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
}

.case-detail h3 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  margin-bottom: 14px;
}

.case-detail-head p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.03rem;
}

.case-badge {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--brown);
  border: 1px solid rgba(245, 130, 32, 0.22);
  background: rgba(255, 244, 232, 0.78);
  font-weight: 900;
  font-size: .86rem;
}

.case-content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: start;
}

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

.case-notes > div {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(245, 130, 32, 0.15);
  background: rgba(255, 255, 255, 0.62);
}

.case-notes h4 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.case-notes p, .case-notes li {
  color: var(--muted);
  line-height: 1.65;
}

.case-notes ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

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

.case-metrics-grid span {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(138, 78, 24, 0.07);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.3;
}

.case-metrics-grid strong {
  display: block;
  font-size: clamp(1.65rem, 2.8vw, 2.65rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.case-beco-enhanced {
  background:
    linear-gradient(150deg, rgba(255,255,255,.92), rgba(255,246,233,.78)),
    radial-gradient(circle at 90% 12%, rgba(146, 94, 201, .18), transparent 30%),
    radial-gradient(circle at 14% 16%, rgba(249, 212, 27, .22), transparent 24%);
}

.case-beco-enhanced::before {
  background: linear-gradient(90deg, #f7d51f, #ff9f31, #9b67de);
}

.case-beco-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}

.case-beco-brandline {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.case-beco-logo {
  width: 86px;
  height: auto;
  flex: 0 0 auto;
  margin-top: 6px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .08));
}

.beco-badge {
  color: #3b2a15;
  background: linear-gradient(135deg, rgba(255, 230, 113, .62), rgba(255, 245, 225, .9));
  border-color: rgba(149, 99, 208, .22);
}

.case-beco-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.case-beco-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr);
  gap: 16px;
}

.beco-summary-card,
.beco-theme-card,
.beco-note-card {
  border-radius: 24px;
  border: 1px solid rgba(26, 23, 17, .08);
  background: rgba(255,255,255,.75);
  box-shadow: 0 18px 36px rgba(90, 62, 22, .06);
}

.beco-summary-card {
  padding: 18px 20px;
}

.beco-summary-label,
.beco-theme-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9b67de;
}

.beco-summary-card strong {
  display: block;
  color: var(--heading);
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.beco-summary-card p,
.beco-theme-card small,
.beco-note-card p,
.beco-note-card li {
  color: var(--muted);
  line-height: 1.65;
}

.beco-theme-card {
  padding: 18px 18px 16px;
  background: linear-gradient(140deg, rgba(255, 235, 146, .58), rgba(155, 103, 222, .16));
}

.beco-theme-swatches {
  display: flex;
  gap: 10px;
  margin: 4px 0 12px;
}

.beco-theme-swatches i {
  display: block;
  flex: 1;
  height: 42px;
  border-radius: 14px;
}

.beco-theme-swatches i:nth-child(1) { background: #f7d51f; }
.beco-theme-swatches i:nth-child(2) { background: #9b67de; }
.beco-theme-swatches i:nth-child(3) { background: #1d160d; }

.beco-channel-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.beco-channel-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(26, 23, 17, .08);
  color: var(--heading);
  font-size: .84rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(90, 62, 22, .06);
}

.case-beco-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 24px;
  align-items: start;
}

.case-beco-gallery {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: 255px 205px;
  gap: 14px;
}

.beco-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #f3eee8;
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 22px 42px rgba(88, 62, 24, .10);
}

.beco-shot img,
.beco-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease-out), filter .4s ease;
}

.case-beco-enhanced:hover .beco-shot img,
.case-beco-enhanced:hover .beco-strip-card img {
  transform: scale(1.035);
}

.beco-shot-main {
  grid-row: 1 / span 2;
}

.beco-shot-side::after,
.beco-shot-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.14));
  pointer-events: none;
}

.case-beco-side {
  display: grid;
  gap: 16px;
}

.beco-note-card {
  padding: 20px 22px;
}

.beco-note-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--heading);
}

.beco-note-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.beco-mini-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.beco-mini-highlights > div {
  min-height: 118px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(26, 23, 17, .08);
  background: linear-gradient(145deg, rgba(255,255,255,.76), rgba(255, 247, 205, .72));
  box-shadow: 0 18px 34px rgba(90, 62, 22, .07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.beco-mini-highlights strong {
  display: block;
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  line-height: 1;
  letter-spacing: -.06em;
  color: var(--heading);
}

.beco-mini-highlights span {
  color: var(--muted);
  font-weight: 700;
}

.beco-metrics-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .64fr);
  gap: 20px;
  margin-top: 22px;
  align-items: stretch;
}

.beco-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.beco-metrics-grid span {
  min-height: 128px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(26, 23, 17, .08);
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 34px rgba(88, 62, 24, .07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.beco-metrics-grid span.primary {
  background: linear-gradient(145deg, rgba(255, 236, 136, .68), rgba(255,255,255,.92));
}

.beco-metrics-grid strong {
  display: block;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.07em;
  color: #f07300;
}

.beco-metrics-grid em {
  font-style: normal;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.beco-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.beco-strip-card {
  margin: 0;
  min-height: 146px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 18px 34px rgba(88, 62, 24, .10);
}

.why-panel, .package-card, .contact-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255, 242, 228, .68)),
    radial-gradient(circle at 8% 18%, rgba(245, 130, 32, .12), transparent 30%);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px);
}

.why-panel {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 18px;
}

.why-panel p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.package-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.package-copy p {
  margin: 18px 0 30px;
  font-size: 1.08rem;
}

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

.package-list div {
  position: relative;
  padding: 18px 18px 18px 50px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 28px rgba(138, 78, 24, 0.06);
}

.package-list div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-3), var(--orange-2));
  box-shadow: 0 0 0 6px rgba(245, 130, 32, 0.12);
}

.package-list strong, .package-list span {
  display: block;
}

.package-list strong {
  margin-bottom: 6px;
  color: var(--heading);
}

.package-list span {
  color: var(--muted);
  line-height: 1.55;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.timeline-line {
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, transparent, var(--orange-3), var(--orange-2), transparent);
}

.timeline-item {
  position: relative;
  padding: 24px 24px 24px 90px;
}

.timeline-item span {
  position: absolute;
  left: 15px;
  top: 22px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(245, 130, 32, 0.20);
}

.performance-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-card);
}

.performance-grid div {
  min-height: 166px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #fff2e5);
  border: 1px solid rgba(245, 130, 32, 0.16);
}

.performance-grid strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3.25rem);
  letter-spacing: -0.075em;
  margin-bottom: 12px;
  line-height: 1;
}

.performance-grid span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.contact {
  padding-top: 64px;
}

.contact-shell {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: center;
  padding: clamp(26px, 4.5vw, 50px);
}

.contact-copy p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.08rem;
  max-width: 560px;
}

.contact-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-mini-list span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 130, 32, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: var(--brown);
  font-weight: 900;
  font-size: .86rem;
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-option {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 38px rgba(138, 78, 24, 0.07);
  transition: transform .3s var(--ease-out), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.contact-option:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 130, 32, 0.34);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 56px rgba(138, 78, 24, 0.12);
}

.contact-option-primary {
  background: linear-gradient(145deg, rgba(255, 255, 255, .90), rgba(255, 239, 222, .80));
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  box-shadow: 0 14px 30px rgba(245, 130, 32, 0.22);
}

.contact-icon svg {
  width: 27px;
  height: 27px;
}

.contact-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-wa svg .wa-bubble {
  fill: none;
  stroke-width: 1.55;
}

.contact-icon-wa svg .wa-phone {
  fill: currentColor;
  stroke: none;
}

.contact-detail {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.contact-detail small {
  color: var(--orange-3);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.contact-detail strong {
  color: var(--heading);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.contact-detail em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
  font-size: .92rem;
}

.contact-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-3);
  background: rgba(245, 130, 32, 0.10);
  font-weight: 900;
}

.contact-bottom-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: var(--muted);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px dashed rgba(245, 130, 32, 0.22);
}

.contact-bottom-note strong {
  color: var(--heading);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
}

.footer strong, .footer span {
  display: block;
}

.footer strong {
  color: var(--heading);
  margin-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  filter: blur(10px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out), filter .85s var(--ease-out);
}

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

.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }


/* Trusted Brands Marquee */
.trusted {
  width: min(100%, 1440px);
  padding-top: 78px;
  padding-bottom: 92px;
  overflow: hidden;
}

.trusted-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 130, 32, 0.18);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 177, 94, 0.25), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(255, 106, 0, 0.13), transparent 28%),
    rgba(255, 255, 255, 0.60);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.2);
}

.trusted-copy h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  background: linear-gradient(135deg, var(--heading), #3b2311 56%, var(--orange-3));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.trusted-copy p {
  margin-top: 18px;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.trusted-stats {
  min-width: 330px;
  display: grid;
  gap: 10px;
}

.trusted-stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border-radius: 18px;
  color: var(--muted);
  font-weight: 800;
  border: 1px solid rgba(245, 130, 32, 0.18);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(145, 79, 22, 0.07);
}

.trusted-stats strong {
  color: var(--orange-3);
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.brand-marquee {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 6px 0;
}

.marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.marquee-track {
  flex: 0 0 auto;
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  animation: trustedMarquee 42s linear infinite;
  will-change: transform;
}

.marquee-row-reverse .marquee-track {
  animation-name: trustedMarqueeReverse;
  animation-duration: 48s;
}

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

.brand-logo-item {
  width: 172px;
  height: 88px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 16px 20px;
  border-radius: 24px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255, 245, 235, .78)),
    radial-gradient(circle at 12% 0%, rgba(255, 177, 94, 0.22), transparent 42%);
  box-shadow: 0 16px 42px rgba(117, 65, 19, 0.08);
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .35s ease, filter .35s ease;
}

.brand-logo-item:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(245, 130, 32, 0.34);
  box-shadow: 0 24px 60px rgba(245, 130, 32, 0.16);
}

.brand-logo-item img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: saturate(.92) contrast(1.02);
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(160px, 16vw);
  z-index: 2;
  pointer-events: none;
}

.marquee-fade.left {
  left: 0;
  background: linear-gradient(90deg, var(--bg), rgba(255, 248, 241, 0));
}

.marquee-fade.right {
  right: 0;
  background: linear-gradient(270deg, var(--bg), rgba(255, 248, 241, 0));
}

@keyframes trustedMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes trustedMarqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (min-width: 981px) {
  .service-card:nth-child(2), .service-card:nth-child(5) {
    transform: translateY(18px);
  }

  .service-card:nth-child(2):hover, .service-card:nth-child(5):hover {
    transform: translateY(10px);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-content {
    max-width: 900px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .float-one { right: 14px; }
  .float-two { left: 14px; }
}

@media (max-width: 980px) {
  .trusted-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .trusted-stats {
    min-width: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .trusted-stats span {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .about-layout, .why-panel, .package-card, .contact-shell, .case-content-grid, .case-beco-layout, .beco-metrics-wrap {
    grid-template-columns: 1fr;
  }

  .case-beco-intro,
  .case-beco-summary {
    grid-template-columns: 1fr;
  }

  .beco-channel-chips {
    justify-content: flex-start;
  }

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

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

  .service-grid, .case-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .cursor-glow { display: none; }

  .trusted {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .trusted-shell {
    width: calc(100% - 24px);
    padding: 24px;
    border-radius: 28px;
  }

  .trusted-stats {
    grid-template-columns: 1fr;
  }

  .brand-logo-item {
    width: 146px;
    height: 76px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .brand-logo-item img {
    max-height: 48px;
  }

  .marquee-track {
    gap: 12px;
    padding-right: 12px;
    animation-duration: 32s;
  }

  .navbar {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 68px;
    border-radius: 24px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(245, 130, 32, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(22px);
    box-shadow: 0 22px 60px rgba(116, 69, 28, 0.16);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 15px 16px;
    border-radius: 16px;
  }

  .nav-menu .nav-cta {
    text-align: center;
  }

  .nav-toggle.active span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle.active span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.55rem);
  }

  .hero-actions, .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .visual-shell {
    min-height: auto;
  }

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

  .dash-card.big, .dash-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .mini-chart {
    height: 120px;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .pillar-grid, .service-grid, .value-grid, .performance-grid, .case-metrics-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-head {
    grid-template-columns: 1fr;
  }

  .case-badge {
    width: fit-content;
  }

  .case-beco-head,
  .case-beco-brandline,
  .case-beco-intro {
    grid-template-columns: 1fr;
  }

  .case-beco-brandline {
    display: grid;
  }

  .case-beco-logo {
    width: 76px;
    margin-top: 0;
  }

  .case-beco-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(180px, auto));
  }

  .beco-shot-main {
    grid-row: auto;
  }

  .beco-metrics-grid,
  .beco-photo-strip,
  .beco-mini-highlights {
    grid-template-columns: 1fr;
  }

  .beco-channel-chips span {
    min-height: 36px;
  }

  .beco-metrics-wrap {
    gap: 14px;
  }

  .case-metrics-grid span {
    min-height: 118px;
  }

  .timeline-item {
    padding-left: 76px;
  }

  .contact-option {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .contact-icon {
    width: 52px;
    height: 52px;
  }

  .contact-arrow {
    display: none;
  }

  .contact-bottom-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .section {
    width: min(100% - 20px, 1180px);
  }

  .navbar {
    width: calc(100% - 20px);
    padding-inline: 12px;
  }

  .brand-text {
    display: none;
  }

  .case-detail, .why-panel, .package-card, .contact-shell {
    border-radius: 26px;
  }

  .contact-option {
    padding: 14px;
    border-radius: 20px;
  }
}

/* Development Update: Growth Sections, Platform Coverage, FAQ */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.problems {
  padding-top: 92px;
}

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

.problem-card, .system-card, .who-card, .platform-group, .faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform .34s var(--ease-out), border-color .34s ease, box-shadow .34s ease, background .34s ease;
}

.problem-card {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.problem-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -54px;
  bottom: -72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.16), transparent 66%);
  pointer-events: none;
}

.problem-card:hover, .system-card:hover, .who-card:hover, .platform-group:hover, .faq-item:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 32, 0.34);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.solution-icon, .system-icon, .who-card span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  box-shadow: 0 16px 34px rgba(245, 130, 32, 0.22);
  font-weight: 900;
  font-size: 1.18rem;
}

.problem-card h3, .system-card h3, .who-card h3, .platform-group strong, .faq-question {
  color: var(--heading);
  letter-spacing: -0.04em;
}

.problem-card h3, .system-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.problem-card p, .system-card p, .faq-intro p, .faq-answer p {
  color: var(--muted);
  line-height: 1.66;
}

.growth-system {
  width: min(1240px, calc(100% - 32px));
}

.system-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 130, 32, 0.18);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 177, 94, 0.24), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 106, 0, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(255, 241, 226, .70));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px) saturate(1.15);
}

.system-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,.35) 45%, transparent 58%);
  transform: translateX(-120%);
  animation: panelSweep 6.5s ease-in-out infinite;
}

.system-panel .section-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

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

.system-card {
  position: relative;
  min-height: 300px;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(255, 248, 241, .68));
}

.system-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(245, 130, 32, 0.28);
  font-weight: 900;
  font-size: 1.1rem;
}

.system-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 130, 32, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: var(--brown);
  font-weight: 900;
}

.system-footer i {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-3), var(--amber));
}

\.platform-coverage {
  padding-top: 72px;
}

.platform-grid-v2 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.platform-card-v2 {
  position: relative;
  grid-column: span 3;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(245, 130, 32, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 242, 0.86)),
    radial-gradient(circle at 10% 0%, rgba(255, 163, 77, 0.14), transparent 34%);
  box-shadow: 0 22px 60px rgba(54, 31, 16, 0.08);
  transition: transform .32s var(--ease-out), border-color .32s ease, box-shadow .32s ease;
}

.platform-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 130, 32, 0.30);
  box-shadow: 0 28px 72px rgba(245, 130, 32, 0.14);
}

.platform-card-v2--marketplace {
  grid-column: span 12;
  min-height: auto;
  padding: 28px;
}

.platform-card-head-v2 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.platform-card-head-v2 h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.platform-card-head-v2 p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.platform-card-top-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.platform-icon-v3 {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--orange);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.98), rgba(255,247,239,.82)),
    linear-gradient(145deg, rgba(255,138,42,.14), rgba(255,196,120,.12));
  border: 1px solid rgba(245,130,32,.18);
  box-shadow: inset 0 -10px 22px rgba(245,130,32,.08), 0 14px 30px rgba(245,130,32,.12);
}

.platform-icon-v3 svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.platform-pill-v2 {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: #91430d;
  background: rgba(255, 239, 223, 0.86);
  border: 1px solid rgba(245, 130, 32, 0.16);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.marketplace-chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.marketplace-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 90px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(245,130,32,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  transition: transform .28s var(--ease-out), border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.marketplace-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(245,130,32,.25);
  box-shadow: 0 18px 34px rgba(245,130,32,.10);
  background: rgba(255,255,255,.95);
}

.chip-logo-wrap {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,242,.88));
  border: 1px solid rgba(245,130,32,.10);
  box-shadow: inset 0 -8px 16px rgba(245,130,32,.05);
  overflow: hidden;
}

.chip-logo-img {
  max-width: 78%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.marketplace-chip.lazada .chip-logo-img,
.marketplace-chip.blibli .chip-logo-img {
  max-width: 86%;
  max-height: 86%;
}

.chip-meta {
  display: grid;
  gap: 4px;
}

.chip-meta strong {
  color: var(--heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.chip-meta small {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.platform-list-v2 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.platform-list-v2 li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  font-size: 1.02rem;
  font-weight: 800;
}

.platform-list-v2 li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-3), var(--orange-2));
  box-shadow: 0 0 0 5px rgba(245,130,32,.10);
}

@media (max-width: 1160px) {
  .marketplace-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .platform-card-v2 {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .platform-grid-v2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .platform-card-v2,
  .platform-card-v2--marketplace {
    grid-column: 1;
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .platform-card-head-v2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .platform-card-top-v2 {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .marketplace-chip {
    min-height: 82px;
    padding: 14px;
    border-radius: 22px;
  }

  .chip-logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .chip-meta strong {
    font-size: .96rem;
  }

  .chip-meta small {
    font-size: .72rem;
  }
}


.who-help {
  padding-top: 78px;
}

.who-help-v4 {
  width: min(1240px, calc(100% - 32px));
}

.who-heading-v4 {
  max-width: 860px;
}

.who-heading-v4 h2 {
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
  line-height: .93;
}

.who-fit-board {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 18px;
  margin-top: 30px;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(245, 130, 32, .16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.70), rgba(255,246,236,.52)),
    radial-gradient(circle at 0% 0%, rgba(255,145,45,.14), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(255,181,112,.18), transparent 36%);
  box-shadow: 0 26px 72px rgba(54,31,16,.08);
  backdrop-filter: blur(16px);
}

.who-fit-visual {
  min-height: 360px;
  display: grid;
  gap: 14px;
}

.fit-orbit {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, var(--orange), var(--orange-2)),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.32), transparent 32%);
  box-shadow: 0 22px 54px rgba(245,130,32,.22);
}

.fit-orbit::before,
.fit-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
}

.fit-orbit::before {
  width: 210px;
  height: 210px;
}

.fit-orbit::after {
  width: 150px;
  height: 150px;
}

.orbit-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255,255,255,.18);
  animation: orbitPulse 2.8s ease-in-out infinite;
}

.dot-one { top: 48px; right: 82px; }
.dot-two { left: 68px; bottom: 58px; animation-delay: .45s; }
.dot-three { right: 58px; bottom: 70px; animation-delay: .9s; }

@keyframes orbitPulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.18); opacity: 1; }
}

.fit-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  text-align: center;
  color: #fff;
}

.fit-core span {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .82;
}

.fit-core strong {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.fit-note {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(245,130,32,.14);
}

.fit-note strong {
  color: var(--heading);
  font-size: 1.02rem;
}

.fit-note span {
  color: var(--muted);
  line-height: 1.5;
}

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

.who-mini-card {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(245,130,32,.15);
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,248,242,.88)),
    radial-gradient(circle at 0% 0%, rgba(255,163,77,.11), transparent 34%);
  box-shadow: 0 16px 42px rgba(54,31,16,.065);
  overflow: hidden;
  transition: transform .28s var(--ease-out), border-color .28s ease, box-shadow .28s ease;
}

.who-mini-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), rgba(255,180,110,.22));
}

.who-mini-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,130,32,.30);
  box-shadow: 0 22px 54px rgba(245,130,32,.12);
}

.who-mini-card:hover .who-mini-icon {
  transform: scale(1.04) rotate(-2deg);
}

.who-mini-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--orange);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.98), rgba(255,247,239,.82)),
    linear-gradient(145deg, rgba(255,138,42,.14), rgba(255,196,120,.12));
  border: 1px solid rgba(245,130,32,.18);
  box-shadow: inset 0 -8px 16px rgba(245,130,32,.08), 0 10px 22px rgba(245,130,32,.10);
  transition: transform .28s var(--ease-out);
}

.who-mini-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.who-mini-card h3 {
  margin: 0 0 6px;
  color: var(--heading);
  font-size: 1.02rem;
  line-height: 1.08;
  letter-spacing: -.032em;
}

.who-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .who-fit-board {
    grid-template-columns: 1fr;
  }

  .who-fit-visual {
    min-height: auto;
    grid-template-columns: minmax(260px, 1fr) 1fr;
  }
}

@media (max-width: 760px) {
  .who-help-v4 {
    width: min(100% - 24px, 1180px);
  }

  .who-heading-v4 h2 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .who-fit-board {
    padding: 14px;
    border-radius: 28px;
  }

  .who-fit-visual,
  .who-mini-grid {
    grid-template-columns: 1fr;
  }

  .fit-orbit {
    min-height: 220px;
  }

  .who-mini-card {
    min-height: auto;
    border-radius: 22px;
  }
}

.client-journey .section-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.journey-timeline {
  max-width: 900px;
}

.journey-timeline .timeline-item {
  background:
    linear-gradient(145deg, rgba(255,255,255,.76), rgba(255, 245, 235, .66));
}

.faq {
  padding-top: 76px;
}

.faq-shell {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 36px;
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 130, 32, 0.18);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 177, 94, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255, 242, 228, .68));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px);
}

.faq-intro h2 {
  font-size: clamp(2.15rem, 3.6vw, 4rem);
}

.faq-intro p {
  margin: 18px 0 28px;
  font-size: 1.04rem;
}

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

.faq-item {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
  font-size: 1.02rem;
}

.faq-question i {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-3), var(--orange), var(--orange-2));
  box-shadow: 0 10px 24px rgba(245, 130, 32, 0.18);
}

.faq-question i::before, .faq-question i::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 14px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform .24s ease;
}

.faq-question i::after {
  transform: rotate(90deg);
}

.faq-item.active .faq-question i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .34s var(--ease-out);
}

.faq-answer > p {
  overflow: hidden;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer > p {
  padding-bottom: 20px;
}

@media (min-width: 981px) {
  .problem-card:nth-child(2), .problem-card:nth-child(5), .system-card:nth-child(2), .system-card:nth-child(4) {
    transform: translateY(16px);
  }

  .problem-card:nth-child(2):hover, .problem-card:nth-child(5):hover, .system-card:nth-child(2):hover, .system-card:nth-child(4):hover {
    transform: translateY(8px);
  }
}

@media (max-width: 1180px) {
  .system-grid, .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 980px) {
  .problem-grid, .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .problems, .growth-system, .platform-coverage, .who-help, .faq {
    padding-top: 62px;
  }

  .problem-grid, .system-grid, .platform-grid, .who-grid {
    grid-template-columns: 1fr;
  }

  .system-panel, .faq-shell {
    padding: 24px;
    border-radius: 28px;
  }

  .system-card, .problem-card, .platform-group, .who-card {
    min-height: auto;
    border-radius: 22px;
  }

  .system-footer {
    align-items: flex-start;
    border-radius: 24px;
  }

  .system-footer i {
    display: none;
  }

  .platform-grid {
    padding: 10px;
  }

  .faq-question {
    padding: 18px;
    font-size: .98rem;
  }

  .faq-answer > p {
    padding-inline: 18px;
  }
}


/* Development Update v1.6: Refined Growth Problems Grid Alignment */
.problems-v2 {
  width: min(1240px, calc(100% - 32px));
  padding-top: 96px;
}

.problems-v2 .section-heading {
  max-width: 860px;
}

.problem-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.problem-card-v2,
.problem-card-v2.problem-wide {
  position: relative;
  grid-column: auto;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(245, 130, 32, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 242, 0.86)),
    radial-gradient(circle at 12% 0%, rgba(255, 163, 77, 0.16), transparent 36%);
  box-shadow: 0 22px 60px rgba(54, 31, 16, 0.08);
  backdrop-filter: blur(16px) saturate(1.08);
  transition: transform .32s var(--ease-out), border-color .32s ease, box-shadow .32s ease, background .32s ease;
}

.problem-card-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0) 0%, rgba(255,149,64,0.08) 45%, rgba(255,255,255,0) 100%);
  transform: translateX(-115%);
  transition: transform .72s var(--ease-out);
  pointer-events: none;
}

.problem-card-v2::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(245,130,32,0.95), rgba(255,183,119,0.25));
  opacity: .9;
}

.problem-card-v2:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 32, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 235, 0.90)),
    radial-gradient(circle at 12% 0%, rgba(255, 163, 77, 0.20), transparent 36%);
  box-shadow: 0 28px 78px rgba(245, 130, 32, 0.14);
}

.problem-card-v2:hover::before {
  transform: translateX(110%);
}

.problem-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.problem-icon-v2 {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22px;
  color: var(--orange);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.98), rgba(255, 247, 239, 0.82)),
    linear-gradient(145deg, rgba(255, 138, 42, 0.16), rgba(255, 196, 120, 0.14));
  border: 1px solid rgba(245, 130, 32, 0.20);
  box-shadow: inset 0 -10px 22px rgba(245, 130, 32, 0.08), 0 14px 30px rgba(245, 130, 32, 0.12);
}

.problem-icon-v2 svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.problem-icon-v2 svg rect,
.problem-icon-v2 svg circle {
  fill: none;
}

.problem-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #91430d;
  background: rgba(255, 239, 223, 0.86);
  border: 1px solid rgba(245, 130, 32, 0.16);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.problem-card-v2 h3,
.problem-card-v2 p,
.problem-fix {
  position: relative;
  z-index: 1;
}

.problem-card-v2 h3 {
  margin: 0 0 12px;
  min-height: 2.35em;
  color: var(--heading);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.problem-card-v2 p {
  margin: 0;
  flex: 1 1 auto;
  color: var(--muted);
  line-height: 1.68;
}

.problem-fix {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(245, 130, 32, 0.14);
}

.problem-fix span {
  color: var(--orange);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.problem-fix strong {
  color: #2a1a11;
  font-size: .96rem;
  line-height: 1.38;
}

@media (max-width: 1100px) {
  .problem-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-card-v2,
  .problem-card-v2.problem-wide {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .problems-v2 {
    width: min(100% - 24px, 1180px);
    padding-top: 66px;
  }

  .problem-bento {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-card-v2,
  .problem-card-v2.problem-wide {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .problem-topline {
    margin-bottom: 18px;
  }

  .problem-icon-v2 {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .problem-icon-v2 svg {
    width: 31px;
    height: 31px;
  }

  .problem-tag {
    font-size: .67rem;
    padding: 7px 10px;
  }

  .problem-card-v2 h3 {
    min-height: 0;
  }
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(245,130,32,.16);
  background: rgba(255,255,255,.62);
}

.lang-btn {
  min-width: 36px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .76rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}

.lang-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 8px 18px rgba(245,130,32,.20);
}

.footer small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
}

@media (max-width: 860px) {
  .language-switch {
    width: fit-content;
    margin: 8px 0 0;
  }
}

/* Development Update v2.3: Cleaner BECO Visual Case Study */
.case-beco-clean {
  background:
    linear-gradient(150deg, rgba(255,255,255,.92), rgba(255,248,238,.80)),
    radial-gradient(circle at 92% 10%, rgba(155,103,222,.12), transparent 30%),
    radial-gradient(circle at 10% 14%, rgba(247,213,31,.16), transparent 24%);
}

.case-beco-clean::before {
  background: linear-gradient(90deg, #f7d51f, #ff9f31, #9b67de);
}

.beco-clean-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  margin-bottom: 26px;
}

.beco-clean-title h3 {
  margin: 12px 0 14px;
}

.beco-clean-title p {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.beco-logo-lockup {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(26, 23, 17, .08);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.beco-logo-clean {
  width: 104px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.07));
}

.case-beco-clean .beco-badge {
  color: #302315;
  background: linear-gradient(135deg, rgba(255, 232, 103, .68), rgba(255, 250, 234, .92));
  border-color: rgba(155, 103, 222, .18);
}

.beco-clean-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
}

.beco-clean-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.beco-overview-card,
.beco-clean-notes > div {
  border: 1px solid rgba(26, 23, 17, .08);
  background: rgba(255,255,255,.72);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(90, 62, 22, .06);
}

.beco-overview-card {
  padding: 20px 22px;
}

.beco-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #9b67de;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.beco-overview-card strong {
  display: block;
  color: var(--heading);
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.beco-overview-card p,
.beco-clean-notes p,
.beco-clean-notes li {
  color: var(--muted);
  line-height: 1.65;
}

.beco-clean-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.beco-clean-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(26, 23, 17, .08);
  color: var(--heading);
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(90, 62, 22, .05);
}

.beco-clean-notes {
  display: grid;
  gap: 14px;
}

.beco-clean-notes > div {
  padding: 20px 22px;
}

.beco-clean-notes h4 {
  margin-bottom: 9px;
  color: var(--heading);
  font-size: 1rem;
}

.beco-clean-notes ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
}

.beco-clean-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, .55fr);
  gap: 14px;
  min-height: 430px;
}

.beco-clean-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.72);
  background: #f3eee8;
  box-shadow: 0 22px 46px rgba(88, 62, 24, .10);
}

.beco-clean-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .52s var(--ease-out);
}

.beco-clean-main img {
  object-position: center center;
}

.beco-clean-thumbs {
  display: grid;
  gap: 14px;
}

.beco-clean-thumbs figure:first-child img {
  object-position: center center;
}

.beco-clean-thumbs figure:last-child img {
  object-position: center center;
}

.case-beco-clean:hover .beco-clean-gallery img {
  transform: scale(1.028);
}

.beco-clean-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.beco-clean-metrics span {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(26, 23, 17, .08);
  background: rgba(255,255,255,.76);
  box-shadow: 0 16px 32px rgba(88, 62, 24, .06);
}

.beco-clean-metrics span.primary {
  background: linear-gradient(145deg, rgba(255,236,136,.66), rgba(255,255,255,.92));
}

.beco-clean-metrics strong {
  display: block;
  color: #f07300;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  letter-spacing: -.07em;
  line-height: 1;
}

.beco-clean-metrics em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .beco-clean-layout {
    grid-template-columns: 1fr;
  }

  .beco-clean-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .beco-clean-head {
    grid-template-columns: 1fr;
  }

  .beco-logo-clean {
    width: 82px;
  }

  .beco-clean-gallery {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .beco-clean-main {
    height: 260px;
  }

  .beco-clean-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beco-clean-thumbs figure {
    height: 150px;
  }

  .beco-clean-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .beco-clean-metrics,
  .beco-clean-thumbs {
    grid-template-columns: 1fr;
  }
}

/* Development Update v2.4: BECO Horizontal Gallery Carousel */
.beco-carousel {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(26, 23, 17, .08);
  background: rgba(255,255,255,.66);
  box-shadow: 0 18px 42px rgba(90, 62, 22, .07);
  overflow: hidden;
}

.beco-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.beco-carousel-head h4 {
  margin: 4px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--heading);
}

.beco-carousel-actions {
  display: flex;
  gap: 8px;
}

.beco-carousel-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(26, 23, 17, .10);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,247,228,.86));
  color: var(--heading);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(90, 62, 22, .08);
  transition: transform .25s var(--ease-out), box-shadow .25s ease, border-color .25s ease;
}

.beco-carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(245,130,32,.24);
  box-shadow: 0 16px 30px rgba(245,130,32,.13);
}

.beco-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 16%);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  padding: 2px 2px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,130,32,.32) rgba(255,255,255,.45);
}

.beco-carousel-track::-webkit-scrollbar {
  height: 8px;
}

.beco-carousel-track::-webkit-scrollbar-track {
  background: rgba(255,255,255,.45);
  border-radius: 999px;
}

.beco-carousel-track::-webkit-scrollbar-thumb {
  background: rgba(245,130,32,.32);
  border-radius: 999px;
}

.beco-carousel-card {
  position: relative;
  aspect-ratio: 1 / 2;
  height: auto;
  margin: 0;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 22px;
  background: #f4eee6;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 16px 34px rgba(88, 62, 24, .09);
  scroll-snap-align: start;
  isolation: isolate;
}

.beco-carousel-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .48s var(--ease-out), filter .35s ease;
}

.beco-carousel-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.beco-carousel-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 34px;
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 0 12px;
  border-radius: 999px;
  color: #1f150b;
  background: rgba(255, 236, 140, .88);
  border: 1px solid rgba(255,255,255,.45);
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
}

.beco-zoom-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #1f150b;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.52);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .26s ease, transform .26s var(--ease-out);
  backdrop-filter: blur(10px);
}

.beco-carousel-card:hover .beco-zoom-hint,
.beco-carousel-card:focus-visible .beco-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.beco-carousel-card:focus-visible {
  outline: 3px solid rgba(245, 130, 32, .34);
  outline-offset: 3px;
}

.beco-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(20, 13, 7, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  backdrop-filter: blur(18px);
}

.beco-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.beco-lightbox-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(86vh, 920px);
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,247,235,.90));
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: 0 42px 110px rgba(0,0,0,.32);
  transform: translateY(18px) scale(.985);
  transition: transform .28s var(--ease-out);
}

.beco-lightbox.is-open .beco-lightbox-panel {
  transform: translateY(0) scale(1);
}

.beco-lightbox-image-wrap {
  max-height: calc(86vh - 118px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: #120d08;
}

.beco-lightbox-image {
  width: 100%;
  height: 100%;
  max-height: calc(86vh - 118px);
  object-fit: contain;
  display: block;
}

.beco-lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 2px 4px 0;
  color: var(--heading);
  font-weight: 900;
}

.beco-lightbox-caption span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.beco-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7d51f, #ff9f31);
  color: #1b1208;
  font-size: 1.45rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .beco-carousel-track {
    grid-auto-columns: minmax(140px, 28%);
  }
}

@media (max-width: 760px) {
  .beco-carousel {
    padding: 14px;
    border-radius: 24px;
  }

  .beco-carousel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .beco-carousel-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .beco-carousel-track {
    grid-auto-columns: minmax(132px, 42%);
  }

  .beco-carousel-card {
    aspect-ratio: 1 / 2;
  }

  .beco-lightbox {
    padding: 16px;
  }

  .beco-lightbox-panel {
    border-radius: 24px;
  }

  .beco-lightbox-close {
    top: 10px;
    right: 10px;
  }
}

/* v2.9 MIBO Visual Case Study */
.case-mibo-clean {
  background:
    linear-gradient(150deg, rgba(255,255,255,.92), rgba(255,246,236,.78)),
    radial-gradient(circle at 9% 10%, rgba(255, 111, 31, .14), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(245, 130, 32, .12), transparent 30%);
}

.case-mibo-clean::before {
  background: linear-gradient(90deg, #ff6f1f, #f58220, #ffb35c);
}

.mibo-clean-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
  margin-bottom: 28px;
}

.mibo-logo-lockup {
  width: clamp(72px, 7vw, 106px);
  height: clamp(72px, 7vw, 106px);
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  filter: drop-shadow(0 14px 24px rgba(245, 112, 24, .13));
}

.mibo-logo-clean {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mibo-clean-title h3 {
  font-size: clamp(2.15rem, 4vw, 4.05rem);
  max-width: 920px;
  margin-bottom: 14px;
  letter-spacing: -.07em;
  line-height: .98;
}

.mibo-clean-title p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.mibo-badge {
  color: #c94f0a;
  background: rgba(255, 247, 238, .82);
  border-color: rgba(245, 112, 24, .22);
}

.mibo-clean-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: 24px;
  align-items: stretch;
}

.mibo-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 14px;
}

.mibo-showcase-main,
.mibo-showcase-stack figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.74);
  background: #fff5ed;
  box-shadow: 0 18px 40px rgba(117, 76, 36, .08);
}

.mibo-showcase-main {
  min-height: 330px;
}

.mibo-showcase-stack {
  display: grid;
  gap: 14px;
}

.mibo-showcase-stack figure {
  min-height: 158px;
}

.mibo-showcase-main img,
.mibo-showcase-stack img,
.mibo-carousel-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s var(--ease-out), filter .4s ease;
}

.case-mibo-clean:hover .mibo-showcase-main img,
.case-mibo-clean:hover .mibo-showcase-stack img {
  transform: scale(1.025);
}

.mibo-side-cards {
  display: grid;
  gap: 16px;
}

.mibo-note-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px;
  min-height: 156px;
  border-radius: 24px;
  border: 1px solid rgba(245, 112, 24, .12);
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 34px rgba(117, 76, 36, .06);
}

.mibo-note-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 112, 24, .09);
  color: #f26a13;
}

.mibo-note-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mibo-note-card h4 {
  margin-bottom: 9px;
  color: var(--heading);
  font-size: 1.05rem;
}

.mibo-note-card p,
.mibo-note-card li {
  color: var(--muted);
  line-height: 1.62;
}

.mibo-note-card ul {
  display: grid;
  gap: 8px;
  padding-left: 17px;
}

.mibo-note-card li::marker {
  color: #f26a13;
}

.mibo-clean-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mibo-clean-metrics span {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  row-gap: 4px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(245, 112, 24, .12);
  background: rgba(255,255,255,.74);
  box-shadow: 0 16px 32px rgba(117, 76, 36, .06);
}

.mibo-clean-metrics i {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f26a13;
  background: rgba(245, 112, 24, .09);
}

.mibo-clean-metrics i svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mibo-clean-metrics strong {
  display: block;
  font-size: clamp(1.55rem, 2.25vw, 2.5rem);
  line-height: .95;
  letter-spacing: -.07em;
  color: #f26a13;
}

.mibo-clean-metrics em {
  font-style: normal;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.25;
}

.mibo-carousel {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(245, 112, 24, .11);
  background: rgba(255,255,255,.70);
  box-shadow: 0 18px 36px rgba(117, 76, 36, .07);
}

.mibo-carousel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.mibo-label {
  display: inline-block;
  margin-bottom: 6px;
  color: #f26a13;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mibo-carousel-head h4 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -.05em;
}

.mibo-carousel-actions {
  display: flex;
  gap: 10px;
}

.mibo-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 112, 24, .13);
  background: rgba(255,255,255,.78);
  color: var(--heading);
  font-size: 1.45rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(117, 76, 36, .08);
  transition: transform .25s var(--ease-out), border-color .25s ease, color .25s ease;
}

.mibo-carousel-btn:hover {
  transform: translateY(-2px);
  color: #f26a13;
  border-color: rgba(245, 112, 24, .24);
}

.mibo-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 184px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 2px 2px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 112, 24, .24) transparent;
}

.mibo-carousel-track::-webkit-scrollbar { height: 6px; }
.mibo-carousel-track::-webkit-scrollbar-track { background: transparent; }
.mibo-carousel-track::-webkit-scrollbar-thumb { background: rgba(245, 112, 24, .22); border-radius: 999px; }

.mibo-carousel-card {
  position: relative;
  margin: 0;
  height: 300px;
  aspect-ratio: 1 / 2;
  overflow: hidden;
  border-radius: 22px;
  background: #fff3e9;
  border: 1px solid rgba(255,255,255,.7);
  scroll-snap-align: start;
  cursor: zoom-in;
  box-shadow: 0 16px 28px rgba(117, 76, 36, .10);
}

.mibo-carousel-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.18));
  opacity: .65;
  pointer-events: none;
}

.mibo-carousel-card:hover img { transform: scale(1.04); }

.mibo-zoom-hint {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(10,10,10,.58);
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s var(--ease-out);
  z-index: 2;
}

.mibo-carousel-card:hover .mibo-zoom-hint,
.mibo-carousel-card:focus-visible .mibo-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.mibo-carousel-card:focus-visible {
  outline: 3px solid rgba(245, 112, 24, .34);
  outline-offset: 4px;
}

@media (max-width: 1160px) {
  .mibo-clean-layout {
    grid-template-columns: 1fr;
  }

  .mibo-clean-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mibo-clean-metrics span:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .mibo-clean-head {
    grid-template-columns: 1fr;
  }

  .mibo-logo-lockup {
    width: 78px;
    height: 78px;
  }

  .mibo-showcase-grid {
    grid-template-columns: 1fr;
  }

  .mibo-showcase-main,
  .mibo-showcase-stack figure {
    min-height: 210px;
  }

  .mibo-note-card {
    grid-template-columns: 1fr;
  }

  .mibo-clean-metrics,
  .mibo-clean-metrics span:last-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .mibo-clean-metrics span {
    grid-template-columns: auto minmax(0,1fr);
  }

  .mibo-carousel {
    padding: 18px;
    border-radius: 24px;
  }

  .mibo-carousel-head {
    align-items: flex-start;
  }

  .mibo-carousel-actions {
    display: none;
  }

  .mibo-carousel-track {
    grid-auto-columns: minmax(138px, 62vw);
  }

  .mibo-carousel-card {
    height: 276px;
  }
}
