:root {
  color-scheme: light;
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #12343b;
  --muted: #49656b;
  --deep: #07323a;
  --teal: #0f766e;
  --blue: #0f6c9f;
  --mint: #b8f4e8;
  --paper: #f7fffd;
  --soft: #eefbf7;
  --gold: #f4c95d;
  --coral: #f2785c;
  --line: rgba(15, 118, 110, 0.18);
  --shadow: 0 18px 45px rgba(18, 52, 59, 0.09);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-break: strict;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p,
li,
strong,
label,
a,
button {
  word-break: keep-all;
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

[id] {
  scroll-margin-top: 92px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 118, 110, 0.14);
  background: rgba(247, 255, 253, 0.94);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 34px;
  object-fit: contain;
}

.brand-name {
  font-size: 16px;
}

.menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 118, 110, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-group {
  position: relative;
}

.nav-links a,
.nav-parent,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.2);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(15, 118, 110, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-parent:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.45);
}

.nav-links a.active,
.button.primary,
.nav-links a.primary {
  color: #082d34;
  background: var(--gold);
  border-color: var(--gold);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  min-width: 180px;
  padding: 8px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.16);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.15);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: grid;
  gap: 6px;
}

.nav-dropdown a {
  justify-content: flex-start;
  width: 100%;
  min-height: 36px;
  border: 0;
  background: #f7fffd;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #0e3038;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: image-set(
      url("./cnfood-yard-hero-enhanced-1600.webp") type("image/webp"),
      url("./cnfood-yard-hero-enhanced.png") type("image/png")
    )
    right center / cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 26, 0.84) 0%, rgba(4, 20, 26, 0.58) 43%, rgba(4, 20, 26, 0.14) 100%),
    linear-gradient(180deg, rgba(18, 120, 150, 0.1), rgba(0, 0, 0, 0.12));
}

.hero .inner {
  position: relative;
  z-index: 2;
  padding: 98px 0 78px;
}

.hero-copy {
  width: min(780px, 100%);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero-logo {
  width: 96px;
  height: auto;
  filter: brightness(0) invert(1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #06343c;
  background: var(--mint);
  font-size: 14px;
  font-weight: 950;
}

.hero h1,
.page-hero h1 {
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 950;
  line-height: 1.08;
  text-wrap: balance;
}

.nowrap {
  white-space: nowrap;
}

.hero p,
.page-hero p {
  max-width: 700px;
  margin-top: 18px;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 760;
  line-height: 1.72;
  text-wrap: pretty;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 30px;
}

.hero-kpi {
  min-height: 94px;
  padding: 16px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.hero-kpi strong {
  display: block;
  color: var(--mint);
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
}

.hero-kpi span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.45;
}

.hero-cneni-stage {
  position: absolute;
  inset: 68px 0 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.cneni-actor {
  position: absolute;
  left: 72%;
  top: 54%;
  width: clamp(220px, 22vw, 310px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.34));
  animation: cneniJourney 18s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.cneni-actor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 56%;
  height: 14%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.26);
  filter: blur(12px);
  transform: translateX(-50%);
  animation: cneniShadow 18s ease-in-out infinite;
}

.cneni-state {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform-origin: 50% 82%;
}

.cneni-state-greet {
  animation: cneniStateGreet 18s linear infinite;
}

.cneni-state-pack {
  animation: cneniStatePack 18s linear infinite;
}

.cneni-state-load {
  animation: cneniStateLoad 18s linear infinite;
}

.cneni-state-deliver {
  animation: cneniStateDeliver 18s linear infinite;
}

.cneni-state-talk {
  animation: cneniStateTalk 18s linear infinite;
}

.cneni-note {
  position: absolute;
  z-index: 5;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 950;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(8px);
}

.cneni-note-greet {
  left: 72%;
  top: 30%;
  animation: cneniNoteGreet 18s linear infinite;
}

.cneni-note-pack {
  left: 66%;
  top: 67%;
  animation: cneniNotePack 18s linear infinite;
}

.cneni-note-load {
  left: 82%;
  top: 67%;
  animation: cneniNoteLoad 18s linear infinite;
}

.cneni-note-talk {
  left: 80%;
  top: 39%;
  animation: cneniNoteTalk 18s linear infinite;
}

.mobile-cneni-performance {
  display: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, -6px, 0);
  }
}

@keyframes cneniJourney {
  0%,
  13% {
    left: 72%;
    top: 54%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
  19% {
    left: 72%;
    top: 62%;
    transform: translate(-50%, -50%) scale(0.58) rotate(-4deg);
  }
  31% {
    left: 66%;
    top: 72%;
    transform: translate(-50%, -50%) scale(0.4) rotate(-2deg);
  }
  46% {
    left: 82%;
    top: 70%;
    transform: translate(-50%, -50%) scale(0.4) rotate(2deg);
  }
  62% {
    left: 86%;
    top: 56%;
    transform: translate(-50%, -50%) scale(0.36) rotate(0deg);
  }
  78% {
    left: 80%;
    top: 42%;
    transform: translate(-50%, -50%) scale(0.38) rotate(2deg);
  }
  90% {
    left: 70%;
    top: 64%;
    transform: translate(-50%, -50%) scale(0.52) rotate(-2deg);
  }
  100% {
    left: 72%;
    top: 54%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes cneniShadow {
  0%,
  13%,
  100% {
    opacity: 0.38;
    transform: translateX(-50%) scale(1);
  }
  31%,
  46%,
  62%,
  78% {
    opacity: 0.24;
    transform: translateX(-50%) scale(0.74);
  }
}

@keyframes cneniStateGreet {
  0%,
  18%,
  92%,
  100% {
    opacity: 1;
  }
  22%,
  88% {
    opacity: 0;
  }
}

@keyframes cneniStatePack {
  0%,
  22%,
  42%,
  100% {
    opacity: 0;
  }
  26%,
  38% {
    opacity: 1;
  }
}

@keyframes cneniStateLoad {
  0%,
  40%,
  61%,
  100% {
    opacity: 0;
  }
  44%,
  57% {
    opacity: 1;
  }
}

@keyframes cneniStateDeliver {
  0%,
  58%,
  76%,
  100% {
    opacity: 0;
  }
  63%,
  72% {
    opacity: 1;
  }
}

@keyframes cneniStateTalk {
  0%,
  73%,
  91%,
  100% {
    opacity: 0;
  }
  78%,
  87% {
    opacity: 1;
  }
}

@keyframes cneniNoteGreet {
  0%,
  15%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
  20%,
  96% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(8px);
  }
}

@keyframes cneniNotePack {
  0%,
  25%,
  42%,
  100% {
    opacity: 0;
  }
  30%,
  37% {
    opacity: 1;
  }
}

@keyframes cneniNoteLoad {
  0%,
  43%,
  62%,
  100% {
    opacity: 0;
  }
  48%,
  57% {
    opacity: 1;
  }
}

@keyframes cneniNoteTalk {
  0%,
  76%,
  91%,
  100% {
    opacity: 0;
  }
  80%,
  87% {
    opacity: 1;
  }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.section {
  padding: 84px 0;
}

.section.soft {
  background: var(--soft);
}

.section.gold {
  background: #fff8df;
}

.section h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 950;
  line-height: 1.18;
  text-wrap: balance;
}

.section-lead {
  max-width: 820px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 740;
  line-height: 1.78;
  text-wrap: pretty;
}

.proof-grid,
.shortcut-grid,
.consult-grid,
.product-grid,
.fact-grid,
.detail-grid,
.process-grid,
.brand-grid,
.contact-layout,
.split {
  display: grid;
  gap: 18px;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.shortcut-grid,
.consult-grid,
.product-grid,
.fact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.detail-grid,
.process-grid,
.brand-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: start;
  margin-top: 34px;
}

.card,
.proof-card,
.contact-form,
.contact-info,
.page-card,
.process-card,
.timeline-item {
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card {
  display: block;
  text-decoration: none;
}

.card,
.proof-card,
.page-card,
.process-card,
.timeline-item {
  padding: 24px;
}

.card strong,
.page-card strong,
.process-card strong,
.timeline-item strong,
.contact-info strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.35;
  text-wrap: balance;
}

.card p,
.page-card p,
.process-card p,
.timeline-item p,
.contact-info p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.68;
  text-wrap: pretty;
}

.proof-card strong {
  color: var(--teal);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 74px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(7, 50, 58, 0.94), rgba(15, 118, 110, 0.78)),
    image-set(
        url("./cnfood-footer-yard-photo.webp") type("image/webp"),
        url("./cnfood-footer-yard-photo.png") type("image/png")
      )
      center / cover;
}

.page-hero.products {
  background:
    linear-gradient(120deg, rgba(7, 50, 58, 0.92), rgba(15, 108, 159, 0.72)),
    url("https://static.wixstatic.com/media/176c9d_9599a9a32e2c48dbb8c4a3f6a33fd70b~mv2_d_3072_1207_s_2.jpg/v1/fill/w_1290,h_503,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/176c9d_9599a9a32e2c48dbb8c4a3f6a33fd70b~mv2_d_3072_1207_s_2.jpg") center / cover;
}

.page-hero.business {
  background:
    linear-gradient(120deg, rgba(7, 50, 58, 0.92), rgba(242, 120, 92, 0.48)),
    image-set(
        url("./cnfood-yard-hero-enhanced-1600.webp") type("image/webp"),
        url("./cnfood-yard-hero-enhanced.png") type("image/png")
      )
      right center / cover;
}

.page-hero .eyebrow {
  background: #ffffff;
}

.page-nav {
  position: sticky;
  top: 68px;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.page-nav .inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
}

.page-nav a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  color: var(--deep);
  background: #f7fffd;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.photo {
  width: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.14);
}

.image-frame {
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-card .image-frame {
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.icon-frame {
  width: min(280px, 100%);
  margin: 0 auto;
}

.icon-frame img {
  aspect-ratio: 1;
  object-fit: cover;
}

.text-block {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.78;
  text-wrap: pretty;
}

.list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.62;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: #0f3d42;
  background: #e9fbf7;
  border: 1px solid rgba(15, 118, 110, 0.16);
  font-size: 13px;
  font-weight: 900;
}

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

.contact-form,
.contact-info {
  padding: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  color: var(--ink);
  background: #fafffe;
  font: inherit;
  font-size: 15px;
  font-weight: 720;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-status,
.admin-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.6;
}

.form-status {
  min-height: 24px;
  color: var(--teal);
  font-weight: 850;
}

.sms-assist {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 8px;
  background: #f3fffc;
  border: 1px solid rgba(15, 118, 110, 0.22);
}

.sms-assist strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.35;
}

.sms-assist p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 740;
  line-height: 1.62;
}

.sms-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.sms-phone span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.sms-phone strong {
  color: var(--teal);
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0;
}

.assist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sms-preview-label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.sms-preview {
  width: 100%;
  min-height: 150px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.6;
  resize: vertical;
}

.footer {
  padding: 42px 0 48px;
  background: var(--deep);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer strong {
  display: block;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.5;
}

.footer p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.62;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

@media (max-width: 980px) {
  [id] {
    scroll-margin-top: 142px;
  }

  .nav-inner {
    align-items: flex-start;
    padding: 12px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-dropdown {
    display: none !important;
  }

  .proof-grid,
  .shortcut-grid,
  .consult-grid,
  .product-grid,
  .fact-grid,
  .detail-grid,
  .process-grid,
  .brand-grid,
  .contact-layout,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 82vh;
  }

  .hero .inner {
    padding: 78px 0 120px;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .hero-cneni-stage {
    inset: 104px 0 0;
  }

  .cneni-actor {
    width: clamp(170px, 32vw, 260px);
  }

  .cneni-note {
    font-size: 12px;
    min-height: 30px;
    padding: 7px 11px;
  }

  .section {
    padding: 66px 0;
  }

  .page-nav {
    top: 91px;
  }
}

@media (max-width: 640px) {
  .inner {
    width: min(100% - 28px, 1160px);
  }

  .nav-links a,
  .nav-parent,
  .button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(28px, 7.8vw, 32px);
    line-height: 1.12;
  }

  .hero-logo {
    width: 68px;
  }

  .hero p,
  .page-hero p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero::before {
    background-image: image-set(
      url("./cnfood-yard-hero-enhanced-960.webp") type("image/webp"),
      url("./cnfood-yard-hero-enhanced.png") type("image/png")
    );
    background-position: center center;
  }

  .nowrap {
    white-space: normal;
  }

  .hero h1 .nowrap {
    white-space: nowrap;
  }

  .section h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

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

  .hero-cneni-stage {
    display: none;
  }

  .mobile-cneni-performance {
    display: block;
    position: absolute;
    left: 14px;
    right: 14px;
    top: clamp(372px, 98vw, 430px);
    z-index: 3;
    height: 315px;
    pointer-events: none;
  }

  .mobile-cneni-performance::before {
    content: "";
    position: absolute;
    inset: 36px 6px 18px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
      radial-gradient(circle at 50% 18%, rgba(184, 244, 232, 0.32), rgba(184, 244, 232, 0) 58%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    filter: blur(0);
  }

  .mobile-radar {
    position: absolute;
    left: 50%;
    top: 2px;
    width: min(76vw, 292px);
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    background:
      radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 7%, rgba(184, 244, 232, 0.32) 8% 30%, rgba(15, 118, 110, 0.18) 31% 56%, rgba(7, 50, 58, 0.34) 57% 100%),
      repeating-radial-gradient(circle at center, transparent 0 28px, rgba(255, 255, 255, 0.22) 29px 31px),
      linear-gradient(135deg, rgba(6, 52, 60, 0.74), rgba(15, 108, 159, 0.34));
    border: 1px solid rgba(184, 244, 232, 0.74);
    box-shadow:
      0 20px 44px rgba(0, 0, 0, 0.28),
      inset 0 0 36px rgba(184, 244, 232, 0.24);
    animation: mobileRadarScene 8s ease-in-out infinite;
  }

  .mobile-radar::before,
  .mobile-radar::after {
    content: "";
    position: absolute;
    inset: 50% 8% auto;
    height: 1px;
    background: rgba(184, 244, 232, 0.58);
    transform-origin: center;
  }

  .mobile-radar::after {
    transform: rotate(90deg);
  }

  .mobile-radar-sweep {
    position: absolute;
    inset: 0;
    background: conic-gradient(from -35deg, rgba(184, 244, 232, 0.86), rgba(184, 244, 232, 0.18) 42deg, transparent 64deg 360deg);
    mix-blend-mode: screen;
    animation: mobileRadarSweep 1.85s linear infinite;
  }

  .mobile-radar-cneni {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 39%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 14px 15px rgba(0, 0, 0, 0.32));
    animation: mobileCneniWave 1.45s ease-in-out infinite;
  }

  .mobile-radar-dot {
    position: absolute;
    z-index: 2;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #b8f4e8;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 8px rgba(184, 244, 232, 0.16);
    animation: mobileRadarDot 1.5s ease-in-out infinite;
  }

  .dot-inspection {
    left: 22%;
    top: 64%;
  }

  .dot-loading {
    left: 69%;
    top: 34%;
    animation-delay: 0.34s;
  }

  .dot-delivery {
    left: 77%;
    top: 70%;
    animation-delay: 0.68s;
  }

  .mobile-live-chip {
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 4;
    display: grid;
    min-width: 190px;
    padding: 9px 16px 10px;
    border-radius: 999px;
    color: #07323a;
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(184, 244, 232, 0.8);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
  }

  .mobile-live-chip span {
    color: var(--teal);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.04em;
  }

  .mobile-live-chip strong {
    margin-top: 1px;
    font-size: 13px;
    font-weight: 950;
    line-height: 1.2;
  }

  .mobile-story-stack {
    position: absolute;
    left: 50%;
    top: 18px;
    width: min(94vw, 352px);
    height: 288px;
    transform: translateX(-50%);
    animation: mobileStoryScene 8s ease-in-out infinite;
  }

  .mobile-story-stack::before {
    content: "";
    position: absolute;
    left: 42px;
    top: 56px;
    bottom: 48px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--mint), #ffffff, #8ed7ff);
    box-shadow: 0 0 18px rgba(184, 244, 232, 0.44);
    animation: mobileRoutePulse 8s ease-in-out infinite;
  }

  .mobile-story-card {
    position: absolute;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 76px 44px 1fr;
    align-items: center;
    min-height: 78px;
    padding: 10px 16px 10px 10px;
    border-radius: 18px;
    color: #07323a;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(184, 244, 232, 0.82);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
    transform-origin: 50% 50%;
  }

  .mobile-story-card img {
    width: 66px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 9px rgba(7, 50, 58, 0.18));
  }

  .mobile-story-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--teal);
    font-size: 12px;
    font-weight: 950;
  }

  .mobile-story-card strong {
    font-size: 18px;
    font-weight: 950;
    line-height: 1.25;
  }

  .story-inspection {
    top: 0;
    animation: mobileStoryCardOne 8s ease-in-out infinite;
  }

  .story-loading {
    top: 92px;
    animation: mobileStoryCardTwo 8s ease-in-out infinite;
  }

  .story-delivery {
    top: 184px;
    animation: mobileStoryCardThree 8s ease-in-out infinite;
  }

  .hero-kpis {
    margin-top: clamp(400px, 104vw, 445px);
  }

  @keyframes mobileRadarScene {
    0%,
    25% {
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }
    34%,
    86% {
      opacity: 0;
      transform: translateX(-50%) scale(0.86);
    }
    100% {
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }
  }

  @keyframes mobileRadarSweep {
    to {
      transform: rotate(360deg);
    }
  }

  @keyframes mobileCneniWave {
    0%,
    100% {
      transform: translate(-50%, -50%) rotate(-2deg) scale(1);
    }
    50% {
      transform: translate(-50%, -53%) rotate(3deg) scale(1.05);
    }
  }

  @keyframes mobileRadarDot {
    0%,
    100% {
      transform: scale(0.86);
      opacity: 0.62;
    }
    50% {
      transform: scale(1.16);
      opacity: 1;
    }
  }

  @keyframes mobileStoryScene {
    0%,
    27% {
      opacity: 0;
      transform: translateX(-50%) translateY(18px) scale(0.96);
    }
    35%,
    88% {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(1);
    }
    100% {
      opacity: 0;
      transform: translateX(-50%) translateY(-8px) scale(0.98);
    }
  }

  @keyframes mobileRoutePulse {
    0%,
    33% {
      transform: scaleY(0.2);
      transform-origin: top;
      opacity: 0.2;
    }
    56%,
    88% {
      transform: scaleY(1);
      transform-origin: top;
      opacity: 1;
    }
    100% {
      transform: scaleY(1);
      opacity: 0;
    }
  }

  @keyframes mobileStoryCardOne {
    0%,
    29% {
      opacity: 0;
      transform: translate3d(-18px, 22px, 0) scale(0.96);
    }
    36%,
    90% {
      opacity: 1;
      transform: translate3d(0, 0, 0) rotate(-1deg) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate3d(0, -8px, 0) rotate(-1deg) scale(0.98);
    }
  }

  @keyframes mobileStoryCardTwo {
    0%,
    38% {
      opacity: 0;
      transform: translate3d(18px, 22px, 0) scale(0.96);
    }
    47%,
    90% {
      opacity: 1;
      transform: translate3d(0, 0, 0) rotate(1deg) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate3d(0, -8px, 0) rotate(1deg) scale(0.98);
    }
  }

  @keyframes mobileStoryCardThree {
    0%,
    49% {
      opacity: 0;
      transform: translate3d(-10px, 22px, 0) scale(0.96);
    }
    58%,
    90% {
      opacity: 1;
      transform: translate3d(0, 0, 0) rotate(-0.5deg) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate3d(0, -8px, 0) rotate(-0.5deg) scale(0.98);
    }
  }
}

@media (max-width: 760px) {
  [id] {
    scroll-margin-top: 76px;
  }

  .nav-inner {
    min-height: 66px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
  }

  .brand-logo {
    width: 56px;
    height: 44px;
  }

  .brand-name {
    font-size: 24px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    gap: 8px;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 160ms ease, padding 160ms ease;
  }

  .nav.is-menu-open .nav-links {
    max-height: 440px;
    padding: 8px 0 6px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-group {
    width: 100%;
  }

  .nav-links a,
  .nav-parent {
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    font-size: 15px;
  }

  .nav-links a.primary {
    justify-content: center;
    color: #082d34;
  }

  .nav-dropdown {
    display: none !important;
  }
}

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