:root {
  --site-max-width: 1536px;
  --green-900: #0f5b1e;
  --green-800: #176b27;
  --green-700: #1e7c30;
  --green-600: #2f8b39;
  --green-500: #45a047;
  --green-200: #d8edd7;
  --green-100: #edf8ec;
  --gold-500: #efc35d;
  --gold-400: #f7d97f;
  --ink-900: #1e241b;
  --ink-700: #5b6555;
  --line: rgba(30, 36, 27, 0.08);
  --shadow-lg: 0 24px 70px rgba(39, 59, 27, 0.12);
  --shadow-md: 0 18px 38px rgba(39, 59, 27, 0.1);
  --shadow-sm: 0 10px 24px rgba(39, 59, 27, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
}

html {
  scroll-behavior: smooth;
}

body[data-template="custom"] {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(221, 240, 214, 0.45), transparent 34%),
    radial-gradient(circle at right 10% top 18%, rgba(255, 229, 177, 0.26), transparent 28%),
    #fffdfa;
  color: var(--ink-900);
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

body[data-template="custom"] * {
  box-sizing: border-box;
}

body[data-template="custom"] a {
  color: inherit;
  text-decoration: none;
}

body[data-template="custom"] img {
  display: block;
  max-width: 100%;
}

.site-wrap {
  width: min(var(--site-max-width), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(18, 52, 25, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-width: 0;
}

.site-brand__lockup {
  width: 62px;
  flex: 0 0 62px;
  height: auto;
  max-width: none;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.site-brand__title {
  color: #1c481f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-brand__subtitle {
  color: rgba(30, 36, 27, 0.56);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.7vw, 32px);
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav__link {
  position: relative;
  padding: 32px 0 28px;
  font-size: 16px;
  font-weight: 500;
  color: #20251e;
  white-space: nowrap;
  transition: color 0.24s ease;
}

.site-nav__link:hover {
  color: var(--green-700);
}

.site-nav__link.is-active {
  color: var(--green-700);
}

.site-subnav {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 80;
  min-width: 176px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 52, 25, 0.08);
  box-shadow: 0 18px 42px rgba(18, 52, 25, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-nav__item:hover .site-subnav,
.site-nav__item:focus-within .site-subnav {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-subnav a {
  display: block;
  padding: 12px 14px;
  color: #243924;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-subnav a:hover,
.site-subnav a:focus {
  background: #eef8eb;
  color: var(--green-700);
}

.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 30px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--green-600);
}

.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(222, 190, 86, 0.24) 0, rgba(222, 190, 86, 0) 3px),
    radial-gradient(circle at 10% 10%, rgba(42, 128, 54, 0.36), transparent 28%),
    linear-gradient(135deg, #062d13 0%, #063f19 46%, #04250f 100%);
  color: #f3f8f1;
  overflow: hidden;
}

.site-footer__inner {
  padding: 38px 0 18px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(350px, 1.55fr) minmax(150px, 0.72fr) minmax(150px, 0.78fr) minmax(150px, 0.78fr) minmax(320px, 1.18fr);
  gap: 28px;
  align-items: start;
}

.site-footer__brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.site-footer__logo {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  padding: 7px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), transparent 44%),
    linear-gradient(180deg, rgba(7, 48, 14, 0.92), rgba(6, 36, 11, 0.92));
  border: 1px solid rgba(239, 195, 93, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(3, 23, 7, 0.2);
  object-fit: contain;
}

.site-footer__brand h3,
.site-footer__menu h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.site-footer__brand h3 {
  font-size: 18px;
  line-height: 1.35;
  white-space: nowrap;
}

.site-footer__brand-head p {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(240, 232, 196, 0.72);
}

.site-footer__desc {
  margin: 0;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__contact-list {
  display: grid;
  gap: 10px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__contact-list a:hover,
.site-footer__menu a:hover {
  color: #ffffff;
}

.site-footer__menu {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer__menu a,
.site-footer__menu span {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__bottom {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.site-tools {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 70;
  display: grid;
  gap: 12px;
}

.site-tool {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  color: var(--green-700);
  display: grid;
  place-items: center;
  padding: 6px;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.site-tool:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: #f5fff3;
}

.site-tool__icon {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.site-tool__label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
}

.site-page {
  overflow: clip;
}

.page-section {
  position: relative;
  padding: 88px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head--left {
  text-align: left;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #c68900;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 1.12;
  font-weight: 900;
  color: #17361b;
}

.section-subtitle {
  margin: 12px auto 0;
  max-width: 760px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.9;
}

.section-divider {
  width: 58px;
  height: 5px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-600), #a6d08c);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 164px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.site-btn:hover {
  transform: translateY(-2px);
}

.site-btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2f8b39, #1f6c2d);
  box-shadow: 0 18px 26px rgba(47, 139, 57, 0.28);
}

.site-btn--light {
  color: #234626;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(47, 139, 57, 0.2);
  box-shadow: 0 14px 24px rgba(42, 68, 31, 0.1);
}

.site-btn--outline {
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(31, 107, 39, 0.22);
}

.decor-leaf {
  position: absolute;
  width: 68px;
  height: 28px;
  border-radius: 999px 999px 999px 0;
  background: linear-gradient(135deg, rgba(141, 205, 136, 0.9), rgba(233, 247, 228, 0.4));
  box-shadow: inset -12px -8px 18px rgba(255, 255, 255, 0.5);
  transform-origin: center;
  opacity: 0.72;
}

.decor-leaf::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 12px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%) rotate(-18deg);
  background: rgba(55, 120, 65, 0.34);
  border-radius: 999px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
}

.rounded-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.metric-card {
  text-align: center;
  color: #ffffff;
  padding: 0 18px;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.metric-card span {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.metric-card p {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.home-hero {
  position: relative;
  padding: 0;
}

.home-hero__stage {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.home-hero__slide {
  position: relative;
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.home-hero__slide--light {
  --hero-overlay:
    linear-gradient(90deg, rgba(9, 34, 12, 0.76) 0%, rgba(9, 34, 12, 0.64) 34%, rgba(9, 34, 12, 0.24) 58%, rgba(9, 34, 12, 0.06) 76%, rgba(9, 34, 12, 0) 100%);
}

.home-hero__slide--dark {
  --hero-overlay:
    linear-gradient(90deg, rgba(9, 34, 12, 0.78) 0%, rgba(9, 34, 12, 0.66) 34%, rgba(9, 34, 12, 0.22) 58%, rgba(9, 34, 12, 0.05) 76%, rgba(9, 34, 12, 0) 100%);
}

.home-hero__slide.is-active {
  display: block;
}

.home-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  z-index: 1;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  padding: 138px 0 188px;
}

.home-hero__title {
  margin: 0 0 24px;
  font-size: clamp(40px, 3.8vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  color: #13471b;
}

.home-hero__subtitle {
  margin: 0 0 20px;
  font-size: clamp(24px, 2.2vw, 44px);
  line-height: 1.25;
  font-weight: 800;
  color: #20281e;
}

.home-hero__desc {
  max-width: 520px;
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 2;
  color: #495448;
}

.home-hero .site-btn--primary {
  color: #ffffff !important;
}

.home-hero__title,
.home-hero__subtitle {
  color: #ffffff;
}

.home-hero__desc {
  color: rgba(255, 255, 255, 0.88);
}

.home-hero .site-btn--outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.home-hero .site-btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.home-hero__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 132px;
  z-index: 3;
}

.home-hero__controls-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-hero__dot {
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(20, 71, 27, 0.22);
  cursor: pointer;
  transition: background 0.24s ease, transform 0.24s ease;
}

.home-hero__dot.is-active {
  background: var(--green-600);
  transform: scaleX(1.08);
}

.home-feature-band {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: -60px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.feature-pod {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 20px;
}

.feature-pod + .feature-pod {
  border-left: 1px solid rgba(26, 62, 21, 0.08);
}

.feature-pod__icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f7fcf3;
  border: 1px solid rgba(47, 139, 57, 0.14);
  display: grid;
  place-items: center;
  color: var(--green-700);
}

.feature-pod__icon svg {
  width: 28px;
  height: 28px;
}

.feature-pod h3,
.service-card h3,
.partner-card h3,
.news-list__item h4,
.scene-card h3,
.career-card h3,
.business-tab span,
.retail-process__step h3 {
  margin: 0;
}

.feature-pod h3 {
  font-size: 20px;
  font-weight: 800;
  color: #20471e;
}

.feature-pod p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: #667064;
}

.home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.home-about__copy {
  padding-right: 4px;
}

.home-about__copy .section-divider {
  margin-left: 0;
}

.home-about__copy p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.95;
  color: #536051;
}

.home-about__copy .site-btn--primary {
  color: #ffffff !important;
}

.home-about__stats {
  display: grid;
  gap: 22px;
}

.home-about__stat strong {
  display: block;
  font-size: 30px;
  line-height: 0.95;
  font-weight: 900;
  color: var(--green-700);
}

.home-about__stat span {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #556252;
}

.home-about__image {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.home-about__image img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-card img {
  width: 100%;
  height: 216px;
  object-fit: cover;
}

.service-card__body {
  position: relative;
  padding: 26px 22px 24px;
}

.service-card__icon {
  position: absolute;
  left: 18px;
  top: -30px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  color: var(--green-700);
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 800;
  color: #1e341f;
}

.service-card p {
  margin: 12px 0 0;
  color: #677161;
  font-size: 14px;
  line-height: 1.8;
}

.section-action {
  text-align: center;
  margin-top: 32px;
}

.capability-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 53, 20, 0.46), rgba(8, 53, 20, 0.78)),
    url("../images/rapeseed-base.png") center/cover no-repeat;
}

.capability-band__inner {
  padding: 78px 0 72px;
}

.capability-band__head {
  text-align: center;
  color: #ffffff;
  margin-bottom: 42px;
}

.capability-band__head h2 {
  margin: 0;
  font-size: clamp(40px, 3vw, 62px);
  line-height: 1.08;
  font-weight: 900;
}

.capability-band__head p {
  margin: 12px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.capability-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.capability-band__grid .metric-card + .metric-card {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.capability-band__grid .metric-card strong {
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.08;
}

.service-capability-cta {
  padding-top: 72px;
}

.retail-teaser {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(620px, 1.28fr);
  column-gap: 64px;
  row-gap: 34px;
  align-items: center;
}

.device-mini {
  display: contents;
}

.device-frame {
  position: relative;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.device-frame__screen {
  border-radius: 0;
  overflow: visible;
  background: transparent url("../images/phone.png") center top / contain no-repeat;
}

.device-frame--small {
  width: 214px;
  transform: none;
  grid-column: 1;
  justify-self: start;
}

.device-frame--small .device-frame__screen {
  aspect-ratio: 0.5 / 1;
}

.device-frame--hero {
  width: min(360px, 38vw);
  transform: rotate(-9deg);
}

.device-frame--hero .device-frame__screen {
  aspect-ratio: 0.51 / 1;
}

.device-frame--center {
  width: min(300px, 28vw);
  margin: 0 auto;
}

.device-frame--center .device-frame__screen {
  aspect-ratio: 0.51 / 1;
}

.retail-teaser__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.08;
  font-weight: 900;
  color: #133a16;
}

.retail-teaser__copy {
  grid-column: 1;
  min-width: 0;
}

.retail-teaser__copy p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.9;
  color: #596559;
}

.retail-bullets {
  display: grid;
  gap: 18px;
  margin: 24px 0 30px;
}

.retail-bullets__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
}

.retail-bullets__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f2f8ee 100%);
  border: 1px solid rgba(47, 139, 57, 0.16);
  box-shadow: 0 10px 22px rgba(18, 52, 25, 0.08);
  color: var(--green-700);
}

.retail-bullets__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.9;
}

.retail-bullets__item strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #20401f;
}

.retail-bullets__item span {
  display: block;
  margin-top: 6px;
  color: #677165;
  font-size: 14px;
  line-height: 1.8;
}

.retail-banner {
  position: relative;
  grid-column: 2;
  min-height: 320px;
  width: 100%;
  max-width: 920px;
  justify-self: end;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 72, 27, 0.96), rgba(28, 103, 40, 0.72));
  box-shadow: var(--shadow-lg);
}

.retail-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.retail-banner__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  width: min(62%, 520px);
  margin-left: auto;
  padding: 44px 38px;
  color: #ffffff;
}

.retail-banner__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #d6f5ce;
}

.retail-banner h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 1.8vw, 28px);
  line-height: 1.18;
  font-weight: 900;
  white-space: nowrap;
}

.retail-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.partner-head {
  margin-top: 38px;
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fffdfa 0%, rgba(255, 253, 250, 0) 100%);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fffdfa 0%, rgba(255, 253, 250, 0) 100%);
}

.partner-marquee__track {
  display: flex;
  width: max-content;
  animation: partner-marquee 26s linear infinite;
}

.partner-marquee__group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.partner-card {
  flex: 0 0 220px;
  min-height: 104px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  padding: 14px 18px;
}

.partner-card__logo {
  display: block;
  width: 100%;
  height: 56px;
  object-fit: contain;
}

@keyframes partner-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 1180px) {
  .partner-card {
    flex-basis: 196px;
  }

  .partner-card__logo {
    height: 52px;
  }
}

@media (max-width: 767px) {
  body[data-template="custom"] .retail-advantage__col {
    grid-template-columns: 1fr;
  }

  body[data-template="custom"] .retail-advantage__item,
  body[data-template="custom"] .retail-advantage__item--right {
    width: 100%;
    grid-template-columns: 46px 1fr;
  }
}

@media (max-width: 767px) {
  .partner-marquee::before,
  .partner-marquee::after {
    width: 24px;
  }

  .partner-marquee__group {
    gap: 14px;
    padding-right: 14px;
  }

  .partner-card {
    flex-basis: 164px;
    min-height: 86px;
    padding: 12px 14px;
  }

  .partner-card__logo {
    height: 44px;
  }
}

.news-split {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 26px;
  align-items: start;
}

.news-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.news-hero-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.news-hero-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px 24px;
  background: linear-gradient(180deg, transparent, rgba(12, 34, 10, 0.82));
  color: #ffffff;
}

.news-hero-card__overlay strong {
  display: block;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 900;
}

.news-hero-card__overlay span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-list__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(19, 54, 16, 0.08);
}

.news-list__item h4 {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  color: #213521;
}

.news-list__item span {
  color: #7b847a;
  font-size: 14px;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 72, 18, 0.44), rgba(7, 72, 18, 0.7)),
    url("../images/brand-banner.png") center/cover no-repeat;
  color: #ffffff;
}

.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 138px;
  padding: 18px 0;
}

.footer-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 2.5vw, 52px);
  line-height: 1.1;
  font-weight: 900;
}

.footer-cta p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-cta .site-btn--primary {
  background: linear-gradient(135deg, #f8cb53, #ecad2f);
  color: #214521;
  box-shadow: none;
}

.footer-cta .site-btn--light {
  color: #214521 !important;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.business-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background:
    linear-gradient(90deg, rgba(16, 51, 18, 0.72), rgba(16, 51, 18, 0.06)),
    url("../images/rapeseed-base.png") center/cover no-repeat;
}

.business-hero__inner {
  display: flex;
  align-items: center;
  min-height: 460px;
}

.business-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  color: #ffffff;
}

.business-hero p {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.business-hero span {
  display: block;
  margin-top: 14px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.business-tabs-shell {
  position: relative;
  margin-top: -30px;
  z-index: 3;
}

.business-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(21, 53, 22, 0.06);
  box-shadow: 0 12px 34px rgba(22, 50, 24, 0.1);
}

.business-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: #232a23;
  font-size: 15px;
  font-weight: 800;
  box-shadow: none;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.business-tab + .business-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(34, 55, 35, 0.1);
}

.business-tab svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.business-tab:hover {
  transform: translateY(-1px);
  background: #f6fbf4;
}

.business-tab.is-active {
  background: #258a3a;
  color: #ffffff;
}

.business-tab.is-active::before,
.business-tab.is-active + .business-tab::before {
  opacity: 0;
}

.business-list {
  display: grid;
  gap: 28px;
  padding-top: 54px;
}

.business-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.84fr);
  gap: 34px;
  padding: 18px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  align-items: center;
}

.business-block--reverse {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 0.98fr);
}

.business-block__copy {
  padding: 26px 12px 26px 18px;
}

.business-block--reverse .business-block__copy {
  order: 2;
  padding-left: 0;
  padding-right: 18px;
}

.business-block__media {
  border-radius: 26px;
  overflow: hidden;
}

.business-block--reverse .business-block__media {
  order: 1;
}

.business-block__media img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.business-block__no {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.business-block__no strong {
  font-size: 68px;
  line-height: 1;
  font-weight: 900;
  color: var(--green-600);
}

.business-block__no h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 900;
  color: #1d311d;
}

.business-block p {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 2.02;
  color: #5b6759;
}

.business-block__leaf {
  position: absolute;
  width: 140px;
  opacity: 0.5;
}

.business-block__leaf--right {
  right: -26px;
  top: 50%;
  transform: rotate(-18deg);
}

.business-block__leaf--left {
  left: -24px;
  top: 60%;
  transform: rotate(168deg);
}

.business-wave {
  height: 88px;
  margin-top: 20px;
  background:
    radial-gradient(circle at 12% 0, #eef7ed 22px, transparent 23px),
    radial-gradient(circle at 30% 0, #eef7ed 24px, transparent 25px),
    radial-gradient(circle at 48% 0, #eef7ed 24px, transparent 25px),
    radial-gradient(circle at 66% 0, #eef7ed 24px, transparent 25px),
    radial-gradient(circle at 84% 0, #eef7ed 24px, transparent 25px);
  background-size: 25% 100%;
  background-repeat: no-repeat;
}

.retail-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.retail-hero--cover {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.82) 30%, rgba(255, 255, 255, 0.42) 54%, rgba(255, 255, 255, 0.04) 76%),
    url("../images/aaa.jpeg") center right / cover no-repeat;
}

.retail-hero__inner {
  display: flex;
  align-items: center;
  min-height: 760px;
}

.retail-hero__copy {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  padding: 138px 0 188px;
}

.retail-hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #2f8b39, #1d6f29);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 24px;
}

.retail-hero__copy h1 {
  margin: 0 0 16px;
  font-size: clamp(48px, 4.4vw, 82px);
  line-height: 1.05;
  font-weight: 900;
  color: #13461a;
}

.retail-hero__copy h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 2.6vw, 46px);
  line-height: 1.3;
  font-weight: 800;
  color: #222822;
}

.retail-hero__copy p {
  max-width: 540px;
  margin: 0 0 34px;
  font-size: 17px;
  line-height: 1.95;
  color: #536051;
}

.retail-hero__visual {
  position: relative;
  min-height: 760px;
}

.retail-hero__produce {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 980px);
  filter: drop-shadow(0 22px 48px rgba(17, 58, 20, 0.12));
}

.retail-hero__phone {
  position: absolute;
  top: 10px;
  left: 40%;
  z-index: 2;
}

.retail-hero__leaf--left {
  left: -10px;
  top: 120px;
  transform: rotate(164deg);
}

.retail-hero__leaf--right {
  right: 6%;
  top: 72px;
  width: 84px;
  transform: rotate(12deg);
}

.retail-hero__float {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
  color: #274928;
}

.retail-hero__float--top {
  top: 56px;
  left: 46%;
}

.retail-hero__float--bottom {
  left: 28%;
  bottom: 122px;
}

.retail-feature-band {
  position: relative;
  z-index: 4;
  margin-top: -24px;
  padding: 20px 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.retail-feature {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.retail-feature + .retail-feature {
  border-left: 1px solid rgba(18, 60, 21, 0.08);
}

.retail-feature__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5fdf1;
  color: var(--green-700);
  border: 1px solid rgba(47, 139, 57, 0.14);
}

.retail-feature__icon svg {
  width: 30px;
  height: 30px;
}

.retail-feature strong {
  display: block;
  font-size: 21px;
  font-weight: 800;
  color: #21411f;
}

.retail-feature span {
  display: block;
  margin-top: 7px;
  color: #697366;
  font-size: 14px;
  line-height: 1.8;
}

.retail-advantage {
  overflow: hidden;
}

.retail-advantage__layout {
  position: relative;
  display: block;
  min-height: 620px;
  max-width: 1180px;
  margin: 0 auto;
}

.retail-advantage__layout::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 490px;
  height: 490px;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from -32deg,
    rgba(56, 126, 61, 0.16) 0deg 74deg,
    transparent 74deg 118deg,
    rgba(56, 126, 61, 0.16) 118deg 242deg,
    transparent 242deg 286deg,
    rgba(56, 126, 61, 0.16) 286deg 360deg
  );
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  pointer-events: none;
}

.retail-advantage__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  background: conic-gradient(
    from -24deg,
    rgba(56, 126, 61, 0.14) 0deg 64deg,
    transparent 64deg 110deg,
    rgba(56, 126, 61, 0.14) 110deg 250deg,
    transparent 250deg 296deg,
    rgba(56, 126, 61, 0.14) 296deg 360deg
  );
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  pointer-events: none;
}

.retail-advantage__orbit--outer {
  width: 620px;
  height: 620px;
}

.retail-advantage__orbit--inner {
  width: 360px;
  height: 360px;
  background: conic-gradient(
    from 18deg,
    rgba(56, 126, 61, 0.11) 0deg 86deg,
    transparent 86deg 132deg,
    rgba(56, 126, 61, 0.11) 132deg 228deg,
    transparent 228deg 274deg,
    rgba(56, 126, 61, 0.11) 274deg 360deg
  );
}

.retail-advantage__dot {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f0a31a;
  box-shadow: 0 0 0 5px rgba(240, 163, 26, 0.12);
  transform: translateY(-50%);
  pointer-events: none;
}

.retail-advantage__dot--left {
  left: calc(50% - 310px);
}

.retail-advantage__dot--right {
  right: calc(50% - 310px);
}

.retail-advantage__dot--middle-a {
  left: calc(50% - 210px);
  top: calc(50% - 125px);
  background: #48a84d;
  box-shadow: 0 0 0 5px rgba(72, 168, 77, 0.12);
}

.retail-advantage__dot--middle-b {
  left: calc(50% + 210px);
  top: calc(50% + 125px);
  background: #f0a31a;
}

.retail-advantage__dot--inner-a {
  left: calc(50% - 150px);
  top: calc(50% + 100px);
  background: #2f8ae0;
  box-shadow: 0 0 0 5px rgba(47, 138, 224, 0.12);
}

.retail-advantage__dot--inner-b {
  left: calc(50% + 150px);
  top: calc(50% - 100px);
  background: #48a84d;
  box-shadow: 0 0 0 5px rgba(72, 168, 77, 0.12);
}

.retail-advantage__col {
  display: contents;
  position: relative;
  z-index: 2;
}

.retail-advantage__item {
  position: absolute;
  display: grid;
  width: 300px;
  grid-template-columns: 1fr 56px;
  gap: 16px;
  align-items: center;
  z-index: 2;
}

.retail-advantage__item--right {
  grid-template-columns: 56px 1fr;
}

.retail-advantage__col--left .retail-advantage__item {
  transform: translate(calc(-100% + 28px), -50%);
}

.retail-advantage__col--right .retail-advantage__item {
  transform: translate(-28px, -50%);
}

.retail-advantage__col--left .retail-advantage__item:nth-child(1) {
  left: calc(50% - 265px);
  top: calc(50% - 160px);
}

.retail-advantage__col--left .retail-advantage__item:nth-child(2) {
  left: calc(50% - 310px);
  top: 50%;
}

.retail-advantage__col--left .retail-advantage__item:nth-child(3) {
  left: calc(50% - 265px);
  top: calc(50% + 160px);
}

.retail-advantage__col--right .retail-advantage__item:nth-child(1) {
  left: calc(50% + 265px);
  top: calc(50% - 160px);
}

.retail-advantage__col--right .retail-advantage__item:nth-child(2) {
  left: calc(50% + 310px);
  top: 50%;
}

.retail-advantage__col--right .retail-advantage__item:nth-child(3) {
  left: calc(50% + 265px);
  top: calc(50% + 160px);
}

.retail-advantage__item--right .retail-advantage__text {
  order: 2;
  text-align: left;
}

.retail-advantage__item:not(.retail-advantage__item--right) .retail-advantage__text {
  text-align: right;
}

.retail-advantage__badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72) 48%, rgba(235, 248, 230, 0.96) 100%);
  border: 1px solid rgba(47, 139, 57, 0.12);
  box-shadow: 0 10px 24px rgba(31, 87, 35, 0.1);
  color: var(--green-700);
}

.retail-advantage__layout > .retail-advantage__media {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: auto;
  height: clamp(340px, 34vw, 420px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.retail-advantage__media img {
  width: auto;
  height: 100%;
  display: block;
  margin: 0 auto;
}

.retail-advantage__badge svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.retail-advantage__badge--orange {
  color: #f29b17;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.74) 48%, rgba(255, 245, 225, 0.98) 100%);
  border-color: rgba(242, 155, 23, 0.14);
}

.retail-advantage__badge--blue {
  color: #2f8ae0;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.74) 48%, rgba(231, 242, 255, 0.98) 100%);
  border-color: rgba(47, 138, 224, 0.14);
}

.retail-advantage__text h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  color: #1e301e;
}

.retail-advantage__text p {
  margin: 0;
  color: #636c61;
  font-size: 14px;
  line-height: 1.7;
}

.retail-stats {
  padding-top: 0;
}

.retail-stats--with-head {
  padding-top: 88px;
}

.retail-stats__bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(13, 80, 22, 0.2), rgba(13, 80, 22, 0.32)),
    url("../images/brand-banner.png") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.retail-stats__item {
  padding: 28px 20px 24px;
  text-align: center;
  color: #ffffff;
}

.retail-stats__item + .retail-stats__item {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.retail-stats__item strong {
  display: block;
  font-size: 62px;
  line-height: 1;
  font-weight: 900;
}

.retail-stats__item span {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 800;
}

.retail-process {
  padding-top: 0;
}

.retail-process__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
}

.retail-process__step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.retail-process__step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 10px;
  height: 10px;
  background: none;
  border: 0;
  border-right: 1.6px solid rgba(46, 122, 47, 0.64);
  border-bottom: 1.6px solid rgba(46, 122, 47, 0.64);
  transform: translateY(-50%) rotate(-45deg);
}

.retail-process__step:last-child::after {
  display: none;
}

.retail-process__icon {
  width: 72px;
  height: 72px;
  margin: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f8de;
  color: var(--green-700);
  border: 1px solid rgba(47, 139, 57, 0.1);
  box-shadow: 0 12px 26px rgba(31, 87, 35, 0.08);
}

.retail-process__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.retail-process__copy {
  min-width: 0;
}

.retail-process__step h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  color: #214420;
}

.retail-process__step p {
  margin: 6px 0 0;
  color: #697468;
  font-size: 13px;
  line-height: 1.55;
}

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

.scene-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.scene-card img {
  width: 100%;
  height: 244px;
  object-fit: cover;
}

.scene-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(10, 30, 8, 0.82));
  color: #ffffff;
}

.scene-card__overlay h3 {
  font-size: 24px;
  font-weight: 900;
}

.scene-card__overlay p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.8;
}

.retail-cta-strip {
  margin-bottom: 18px;
  padding: 34px 40px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(17, 97, 33, 0.94), rgba(20, 119, 38, 0.82)),
    url("../images/brand-banner.png") center/cover no-repeat;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}

.retail-cta-strip h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 1.18;
  font-weight: 900;
}

.retail-cta-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.retail-cta-strip .site-btn--light {
  color: #1f6c2d !important;
  background: rgba(255, 255, 255, 0.96);
}

.career-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19, 42, 15, 0.74), rgba(19, 42, 15, 0.12)),
    url("../images/pepper-base.png") center/cover no-repeat;
}

.career-hero__inner {
  display: flex;
  align-items: center;
  min-height: 470px;
}

.career-hero__content {
  max-width: 620px;
  color: #ffffff;
}

.career-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(56px, 5vw, 94px);
  line-height: 1;
  font-weight: 900;
}

.career-hero h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 2.8vw, 52px);
  line-height: 1.28;
  font-weight: 800;
}

.career-hero p {
  margin: 0;
  font-size: 17px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.86);
}

.career-hero__line {
  width: 56px;
  height: 5px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2d57a, #ddb94b);
}

.career-board__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.career-tab {
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(19, 54, 16, 0.08);
  background: transparent;
  color: #556054;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.career-tab.is-active {
  background: linear-gradient(135deg, #2f8b39, #1f6d2c);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.career-board__stage {
  position: relative;
  padding-top: 42px;
  min-height: 0;
  transition: min-height 0.24s ease;
}

.career-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.career-card,
.career-card--ghost {
  min-height: 280px;
  border: 1px solid rgba(19, 54, 16, 0.06);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.career-card {
  position: relative;
  z-index: 1;
  padding: 28px 22px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.career-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.career-card.is-active {
  z-index: 2;
  border-color: rgba(47, 139, 57, 0.24);
  box-shadow: var(--shadow-md);
}

.career-card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef8eb;
  color: var(--green-700);
}

.career-card__icon svg {
  width: 34px;
  height: 34px;
}

.career-card h3 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 900;
  color: #223620;
}

.career-card p {
  margin: 10px 0 0;
  color: #687266;
  font-size: 15px;
  font-weight: 700;
}

.career-card__arrow {
  width: 38px;
  height: 38px;
  margin: 28px auto 0;
  border-radius: 999px;
  border: 1px solid rgba(38, 90, 35, 0.14);
  display: grid;
  place-items: center;
  color: #80917e;
  background: linear-gradient(180deg, #ffffff, #f2f7ef);
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(39, 59, 27, 0.08);
}

.career-card__arrow svg {
  width: 18px;
  height: 18px;
}

.career-detail {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: min(720px, 100%);
  margin-top: 0;
  padding: 34px 32px 30px;
  background: linear-gradient(135deg, #3f9747, #347d3c);
  color: #ffffff;
  display: grid;
  gap: 26px;
  border-radius: 0;
  box-shadow: 0 30px 70px rgba(18, 49, 18, 0.22);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(0.92);
  transform-origin: var(--career-origin-x, 20%) var(--career-origin-y, 18%);
  transition:
    top 0.22s ease,
    left 0.22s ease,
    width 0.22s ease,
    opacity 0.22s ease,
    transform 0.28s ease;
}

.career-detail__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.career-detail__head-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
}

.career-detail__head-icon svg {
  width: 34px;
  height: 34px;
}

.career-detail__head h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 900;
}

.career-detail__head p {
  margin: 8px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.career-detail__section h4 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
}

.career-detail__section ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.85;
}

.career-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.career-detail__actions .site-btn--light {
  color: #215225 !important;
  background: #ffffff;
}

.career-detail__actions .site-btn--outline {
  color: #ffffff !important;
  background: rgba(20, 68, 24, 0.28);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.career-card--ghost {
  background: rgba(255, 255, 255, 0.22);
}

.career-card[hidden],
.career-card--ghost[hidden],
.career-detail[hidden] {
  display: none;
}

.career-detail.is-floating {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.career-card.is-expanded {
  border-color: rgba(47, 139, 57, 0.38);
  box-shadow: var(--shadow-md);
}

.career-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 220px;
  padding: 0 0 0 42px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at left center, rgba(253, 242, 194, 0.74), rgba(253, 242, 194, 0.2) 28%, transparent 44%),
    #f6f4e7;
  box-shadow: var(--shadow-md);
}

.career-cta__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.3vw, 42px);
  line-height: 1.2;
  font-weight: 900;
  color: #1d4a1f;
}

.career-cta .site-btn--primary {
  color: #ffffff !important;
}

.career-cta__copy p {
  margin: 0 0 24px;
  color: #6a7367;
  font-size: 16px;
  line-height: 1.85;
}

.career-cta__visual {
  height: 100%;
}

.career-cta__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1400px) {
  .service-grid,
  .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .retail-hero__phone {
    left: 34%;
  }

  .home-hero__stage,
  .home-hero__inner,
  .retail-hero__inner,
  .retail-hero__visual {
    min-height: 700px;
  }
}

@media (max-width: 1180px) {
  .site-wrap {
    width: min(var(--site-max-width), calc(100% - 40px));
  }

  .site-header__inner {
    min-height: 84px;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: 4px;
  }

  .site-nav__item {
    flex: 0 0 auto;
  }

  .site-nav__link {
    padding: 10px 0 18px;
  }

  .site-nav__link.is-active::after {
    bottom: 6px;
  }

  .home-hero__inner,
  .home-about__grid,
  .retail-teaser,
  .news-split,
  .retail-hero__inner,
  .business-block,
  .business-block--reverse,
  .career-cta {
    grid-template-columns: 1fr;
  }

  .home-feature-band,
  .retail-feature-band,
  .business-tabs,
  .retail-process__steps,
  .capability-band__grid,
  .retail-stats__bar,
  .career-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-hero__stage,
  .home-hero__inner,
  .retail-hero__inner {
    min-height: 620px;
  }

  .home-hero__content,
  .retail-hero__copy {
    width: min(100%, 600px);
    padding: 114px 0 150px;
  }

  .home-hero__controls {
    bottom: 108px;
  }

  .retail-hero__visual {
    min-height: 520px;
  }

  .retail-hero__produce {
    position: relative;
    margin-left: auto;
  }

  .retail-hero__float,
  .retail-hero__leaf--left,
  .retail-hero__leaf--right {
    display: none;
  }

  .retail-hero__phone {
    left: auto;
    right: 4%;
    top: 0;
  }

  .retail-teaser {
    column-gap: 36px;
    row-gap: 28px;
  }

  .retail-teaser__copy,
  .retail-banner {
    grid-column: auto;
  }

  .retail-banner {
    min-height: 300px;
    max-width: none;
    justify-self: stretch;
  }

  .business-block__copy,
  .business-block--reverse .business-block__copy {
    order: 2;
    padding: 8px 10px 16px;
  }

  .business-block__media,
  .business-block--reverse .business-block__media {
    order: 1;
  }

  .retail-advantage__layout {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }

  .retail-advantage__layout > .retail-advantage__media {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    order: 2;
    width: auto;
    height: clamp(300px, 38vw, 380px);
    margin: 0 auto;
  }

  .retail-advantage__layout::before {
    display: none;
  }

  .retail-advantage__orbit,
  .retail-advantage__dot {
    display: none;
  }

  .retail-advantage__col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retail-advantage__col--left {
    order: 1;
  }

  .retail-advantage__col--right {
    order: 3;
  }

  .retail-advantage__item,
  .retail-advantage__item--right {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    grid-template-columns: 56px 1fr;
  }

  .retail-advantage__item .retail-advantage__text,
  .retail-advantage__item--right .retail-advantage__text {
    order: 2;
    text-align: left;
  }

  .career-detail,
  .career-card--ghost {
    grid-column: auto;
  }

  .site-footer__grid {
    grid-template-columns: minmax(300px, 1.5fr) minmax(130px, 0.72fr) minmax(138px, 0.76fr) minmax(138px, 0.76fr) minmax(280px, 1.14fr);
    gap: 20px;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .site-wrap {
    width: calc(100% - 28px);
  }

  .page-section {
    padding: 60px 0;
  }

  .home-feature-band,
  .retail-feature-band,
  .business-tabs,
  .retail-process__steps,
  .capability-band__grid,
  .retail-stats__bar,
  .service-grid,
  .partner-logos,
  .scene-grid,
  .career-grid,
  .retail-advantage__col,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .home-hero__inner,
  .retail-hero__inner {
    min-height: unset;
  }

  .retail-hero__inner {
    min-height: 560px;
  }

  .home-hero__stage {
    min-height: 560px;
  }

  .home-hero__content,
  .retail-hero__copy {
    padding: 88px 0 112px;
  }

  .home-hero__controls {
    bottom: 82px;
  }

  .home-hero__dot {
    width: 30px;
  }

  .retail-hero__visual {
    min-height: 360px;
  }

  .site-btn {
    width: 100%;
  }

  .feature-pod + .feature-pod,
  .retail-feature + .retail-feature,
  .capability-band__grid .metric-card + .metric-card,
  .retail-stats__item + .retail-stats__item {
    border-left: 0;
    border-top: 1px solid rgba(18, 60, 21, 0.08);
  }

  .retail-stats__item + .retail-stats__item {
    border-top-color: rgba(255, 255, 255, 0.16);
  }

  .retail-banner__copy {
    width: 100%;
    padding: 28px 24px;
  }

  .retail-banner h3 {
    white-space: normal;
  }

  .retail-cta-strip,
  .footer-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-cta {
    padding: 24px;
  }

  .career-cta__visual {
    order: -1;
    min-height: 220px;
  }

  .career-detail__head {
    align-items: flex-start;
  }

  .career-detail {
    width: 100% !important;
    left: 0 !important;
    right: 0;
  }

  .business-block__no {
    flex-direction: column;
    gap: 8px;
  }

  .business-block__no strong {
    font-size: 54px;
  }

  .business-block__no h2,
  .retail-advantage__text h3,
  .scene-card__overlay h3,
  .career-card h3 {
    font-size: 28px;
  }

  .retail-process__step::after {
    display: none;
  }

  .site-tools {
    right: 12px;
    bottom: 16px;
  }

  .site-tool {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
}

/* User-requested polish: square corners and logo size rebalance */
:root {
  --radius-xl: 0;
  --radius-lg: 0;
  --radius-md: 0;
  --radius-pill: 0;
}

.page-shell [class*="rounded"] {
  border-radius: 0 !important;
}

.site-brand,
body[data-template="custom"] .site-brand {
  width: auto;
  max-width: 408px;
  flex: 0 0 auto;
}

.site-brand__lockup,
body[data-template="custom"] .site-brand__lockup {
  width: 62px;
  flex: 0 0 62px;
  max-width: none;
  height: auto;
}

.site-brand__text,
body[data-template="custom"] .site-brand__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.site-brand__title,
body[data-template="custom"] .site-brand__title {
  color: #1c481f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-brand__subtitle,
body[data-template="custom"] .site-brand__subtitle {
  color: rgba(30, 36, 27, 0.56);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(18, 52, 25, 0.12);
  background: #ffffff;
  color: #17361b;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.site-nav-toggle__line {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-nav-backdrop {
  display: none;
}

.site-footer__logo {
  width: 88px;
  height: 88px;
  padding: 10px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(7, 48, 14, 0.94), rgba(6, 36, 11, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(8, 34, 11, 0.22);
  border: 1px solid rgba(239, 195, 93, 0.34);
  border-radius: 999px !important;
  object-fit: contain;
}

.site-nav__link.is-active::after,
.section-divider,
.career-hero__line,
.site-tool,
.site-btn,
.decor-leaf,
.decor-leaf::after,
.home-hero__halo,
.home-feature-band,
.feature-pod__icon,
.home-about__image,
.service-card,
.service-card__icon,
.device-frame,
.device-frame::before,
.device-frame__screen,
.retail-banner,
.partner-card,
.news-hero-card,
.business-tabs,
.business-tab,
.business-block,
.business-block__media,
.retail-hero__float,
.retail-feature-band,
.retail-feature__icon,
.retail-advantage__layout::before,
.retail-advantage__badge,
.retail-stats__bar,
.retail-process__icon,
.scene-card,
.retail-cta-strip,
.career-tab,
.career-card,
.career-card--ghost,
.career-card__icon,
.career-card__arrow,
.career-detail__head-icon,
.career-cta {
  border-radius: 0 !important;
}

body[data-template="custom"] .career-tab {
  border-radius: var(--radius-pill) !important;
}

body[data-template="custom"] .career-card,
body[data-template="custom"] .career-card--ghost {
  border-radius: 0 !important;
}

body[data-template="custom"] .career-detail {
  border-radius: 0 !important;
}

body[data-template="custom"] .career-card__icon,
body[data-template="custom"] .career-detail__head-icon {
  border-radius: 50% !important;
}

body[data-template="custom"] .career-card__arrow {
  border-radius: 999px !important;
}

body[data-template="custom"] .home-feature-band {
  border-radius: 18px !important;
  overflow: hidden;
}

body[data-template="custom"] .feature-pod__icon {
  border-radius: 999px !important;
}

body[data-template="custom"] .service-card__icon {
  border-radius: 999px !important;
}

body[data-template="custom"] .section-action .site-btn--primary {
  color: #ffffff !important;
}

body[data-template="custom"] .retail-teaser .site-btn--primary {
  color: #ffffff !important;
}

@media (max-width: 1180px) {
  .site-header__inner {
    min-height: 78px;
    gap: 18px;
    padding: 0;
  }

  .site-brand,
  body[data-template="custom"] .site-brand {
    max-width: 348px;
  }

  .site-brand__lockup,
  body[data-template="custom"] .site-brand__lockup {
    width: 52px;
    flex-basis: 52px;
  }

  .site-brand__title,
  body[data-template="custom"] .site-brand__title {
    font-size: 16px;
  }

  .site-brand__subtitle,
  body[data-template="custom"] .site-brand__subtitle {
    font-size: 8px;
  }

  .site-nav__link {
    padding: 29px 0 23px;
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .site-header {
    z-index: 120;
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 10px 28px rgba(18, 52, 25, 0.08);
  }

  .home-hero__slide--light {
    --hero-bg-position: 68% center;
  }

  .home-hero__slide--dark {
    --hero-bg-position: 64% center;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 80px;
    gap: 12px 18px;
    padding: 12px 0;
  }

  .site-brand,
  body[data-template="custom"] .site-brand {
    width: auto;
    max-width: calc(100% - 74px);
    flex: none;
  }

  .site-brand__lockup,
  body[data-template="custom"] .site-brand__lockup {
    width: 44px;
    flex-basis: 44px;
  }

  .site-brand__title,
  body[data-template="custom"] .site-brand__title {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-brand__subtitle,
  body[data-template="custom"] .site-brand__subtitle {
    display: none;
  }

  .site-nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 122;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(18, 52, 25, 0.16);
    border-radius: 999px;
    background: linear-gradient(180deg, #fffefb 0%, #f7f2e8 100%);
    box-shadow: 0 14px 32px rgba(18, 52, 25, 0.12);
  }

  .site-header[data-nav-open="true"] .site-nav-toggle {
    color: #24582b;
    border-color: rgba(47, 139, 57, 0.24);
    background: linear-gradient(180deg, #fffefb 0%, #f4eee1 100%);
    box-shadow:
      inset 0 0 0 1px rgba(47, 139, 57, 0.08),
      0 16px 36px rgba(18, 52, 25, 0.14);
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    gap: 0;
    padding: 10px 0 28px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.995), rgba(246, 241, 231, 0.995) 100%);
    border-top: 1px solid rgba(18, 52, 25, 0.08);
    box-shadow: 0 26px 54px rgba(18, 52, 25, 0.16);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
    z-index: 121;
    min-height: calc(100vh - 73px);
    max-height: calc(100vh - 73px);
    overflow-y: auto;
  }

  .site-nav__item {
    display: block;
  }

  .site-header[data-nav-open="true"] .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav-backdrop {
    display: none !important;
  }

  .site-header[data-nav-open="true"] .site-nav-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header[data-nav-open="true"] .site-nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-nav-open="true"] .site-nav-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav__link {
    display: block;
    margin: 0 18px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    padding: 22px 8px 20px;
    border-bottom: 1px solid rgba(18, 52, 25, 0.08);
    color: #203721;
    letter-spacing: 0.02em;
  }

  .site-subnav {
    position: static;
    min-width: 0;
    margin: 8px 18px 12px;
    padding: 4px 0 8px 22px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .site-subnav a {
    padding: 9px 8px;
    color: #52614f;
    font-size: 15px;
    border-bottom: 0;
  }

  .site-subnav a:hover,
  .site-subnav a:focus {
    background: transparent;
    color: var(--green-700);
  }

  .site-nav__link.is-active::after {
    left: 8px;
    bottom: 12px;
    width: 30px;
    height: 2px;
    transform: none;
  }

  .site-nav__link.is-active {
    background: none;
  }
}

@media (max-width: 640px) {
  .site-wrap {
    width: calc(100% - 24px);
  }

  body[data-template="custom"] .home-feature-band {
    border-radius: 14px !important;
  }

  .home-hero__slide--light {
    --hero-bg-position: 72% center;
  }

  .home-hero__slide--dark {
    --hero-bg-position: 66% center;
  }

  .site-header__inner {
    min-height: 72px;
    gap: 8px 12px;
    padding: 10px 0;
  }

  .site-brand,
  body[data-template="custom"] .site-brand {
    width: auto;
    max-width: calc(100% - 68px);
  }

  .site-brand__lockup,
  body[data-template="custom"] .site-brand__lockup {
    width: 40px;
    flex-basis: 40px;
  }

  .site-brand__title,
  body[data-template="custom"] .site-brand__title {
    font-size: 13px;
  }

  .site-nav-toggle {
    width: 50px;
    height: 50px;
  }

  .site-nav {
    min-height: calc(100vh - 67px);
    max-height: calc(100vh - 67px);
  }

  .site-nav__link {
    margin: 0 14px;
    font-size: 18px;
    padding: 19px 8px 17px;
  }

  .page-shell .h-\[600px\] {
    height: 360px !important;
  }

  .page-shell .min-h-\[500px\] {
    min-height: 384px !important;
  }
}

.news-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  line-height: 1;
}

.news-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-icon--xs {
  width: 0.9em;
  height: 0.9em;
}

.news-icon--sm {
  width: 1em;
  height: 1em;
}

.news-icon--xl {
  width: 1.95em;
  height: 1.95em;
}

body[data-template="custom"] .business-tabs {
  border-radius: 10px !important;
}

body[data-template="custom"] .business-tab {
  border-radius: 8px !important;
}

body[data-template="custom"] .retail-hero .site-btn--primary {
  color: #ffffff !important;
}

body[data-template="custom"] .retail-feature-band {
  border-radius: 16px !important;
}

body[data-template="custom"] .retail-feature__icon {
  border-radius: 50% !important;
}

body[data-template="custom"] .retail-advantage__layout::before,
body[data-template="custom"] .retail-advantage__orbit,
body[data-template="custom"] .retail-advantage__dot,
body[data-template="custom"] .retail-advantage__badge {
  border-radius: 50% !important;
}

body[data-template="custom"] .retail-process__icon {
  border-radius: 50% !important;
}

@media (max-width: 760px) {
  body[data-template="custom"] .retail-hero--cover {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.94) 20%, rgba(255, 255, 255, 0.86) 62%, rgba(255, 255, 255, 0.46) 100%),
      url("../images/aaa.jpeg") 64% center / cover no-repeat;
  }

  body[data-template="custom"] .business-tabs {
    display: flex;
    overflow-x: auto;
    gap: 0;
    padding: 8px;
    scroll-snap-type: x proximity;
  }

  body[data-template="custom"] .business-tab {
    min-width: 142px;
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  body[data-template="custom"] .retail-advantage__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    max-width: 420px;
  }

  body[data-template="custom"] .retail-advantage__layout::before,
  body[data-template="custom"] .retail-advantage__orbit,
  body[data-template="custom"] .retail-advantage__dot {
    display: none;
  }

  body[data-template="custom"] .retail-advantage__layout > .retail-advantage__media {
    position: relative;
    left: auto;
    top: auto;
    order: 1;
    width: auto;
    height: min(300px, 72vw);
    margin: 0 auto 4px;
    transform: none;
  }

  body[data-template="custom"] .retail-advantage__col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-template="custom"] .retail-advantage__col--left {
    order: 2;
  }

  body[data-template="custom"] .retail-advantage__col--right {
    order: 3;
  }

  body[data-template="custom"] .retail-advantage__item,
  body[data-template="custom"] .retail-advantage__item--right {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(47, 139, 57, 0.1);
    border-radius: 14px !important;
    box-shadow: 0 10px 24px rgba(31, 87, 35, 0.06);
    transform: none;
  }

  body[data-template="custom"] .retail-advantage__item .retail-advantage__text,
  body[data-template="custom"] .retail-advantage__item--right .retail-advantage__text {
    order: 2;
    min-width: 0;
    text-align: left;
  }

  body[data-template="custom"] .retail-advantage__badge {
    width: 46px;
    height: 46px;
  }

  body[data-template="custom"] .retail-advantage__badge svg {
    width: 22px;
    height: 22px;
  }

  body[data-template="custom"] .retail-advantage__text h3 {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.2;
  }

  body[data-template="custom"] .retail-advantage__text p {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 1180px) {
  body[data-template="custom"] .retail-advantage__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    min-height: auto;
    max-width: 860px;
    overflow: visible;
  }

  body[data-template="custom"] .retail-advantage__layout > .retail-advantage__media {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1 / -1;
    order: 1;
    width: auto;
    height: clamp(300px, 38vw, 380px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4px;
    transform: none;
  }

  body[data-template="custom"] .retail-advantage__layout::before,
  body[data-template="custom"] .retail-advantage__orbit,
  body[data-template="custom"] .retail-advantage__dot {
    display: none;
  }

  body[data-template="custom"] .retail-advantage__col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-template="custom"] .retail-advantage__col--left {
    order: 2;
  }

  body[data-template="custom"] .retail-advantage__col--right {
    order: 3;
  }

  body[data-template="custom"] .retail-advantage__col--left .retail-advantage__item,
  body[data-template="custom"] .retail-advantage__col--right .retail-advantage__item,
  body[data-template="custom"] .retail-advantage__col--left .retail-advantage__item:nth-child(1),
  body[data-template="custom"] .retail-advantage__col--left .retail-advantage__item:nth-child(2),
  body[data-template="custom"] .retail-advantage__col--left .retail-advantage__item:nth-child(3),
  body[data-template="custom"] .retail-advantage__col--right .retail-advantage__item:nth-child(1),
  body[data-template="custom"] .retail-advantage__col--right .retail-advantage__item:nth-child(2),
  body[data-template="custom"] .retail-advantage__col--right .retail-advantage__item:nth-child(3) {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(47, 139, 57, 0.1);
    border-radius: 14px !important;
    box-shadow: 0 10px 24px rgba(31, 87, 35, 0.06);
    transform: none;
  }

  body[data-template="custom"] .retail-advantage__item .retail-advantage__text,
  body[data-template="custom"] .retail-advantage__item--right .retail-advantage__text {
    order: 2;
    text-align: left;
  }

  body[data-template="custom"] .retail-advantage__badge {
    width: 50px;
    height: 50px;
  }

  body[data-template="custom"] .retail-advantage__text h3 {
    font-size: 20px;
  }

  body[data-template="custom"] .retail-advantage__text p {
    font-size: 13px;
    line-height: 1.6;
  }

  body[data-template="custom"] .retail-process__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 30px;
    overflow-x: visible;
    padding: 4px 2px 12px;
  }

  body[data-template="custom"] .retail-process__step {
    width: 172px;
    grid-template-columns: 58px 1fr;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0 !important;
    box-shadow: none;
  }

  body[data-template="custom"] .retail-process__step::after {
    display: none;
  }

  body[data-template="custom"] .retail-process__step:last-child::after {
    display: none;
  }

  body[data-template="custom"] .retail-process__icon {
    width: 58px;
    height: 58px;
  }

  body[data-template="custom"] .retail-process__icon svg {
    width: 26px;
    height: 26px;
  }

  body[data-template="custom"] .retail-process__step h3 {
    font-size: 18px;
  }

  body[data-template="custom"] .retail-process__step p {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  body[data-template="custom"] .retail-advantage__layout {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 420px;
  }

  body[data-template="custom"] .retail-advantage__layout > .retail-advantage__media {
    width: auto;
    height: min(300px, 72vw);
  }

  body[data-template="custom"] .retail-advantage__col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-template="custom"] .retail-advantage__item,
  body[data-template="custom"] .retail-advantage__item--right,
  body[data-template="custom"] .retail-advantage__col--left .retail-advantage__item,
  body[data-template="custom"] .retail-advantage__col--right .retail-advantage__item {
    grid-template-columns: 46px 1fr;
    padding: 12px;
  }

  body[data-template="custom"] .retail-advantage__badge {
    width: 46px;
    height: 46px;
  }

  body[data-template="custom"] .retail-advantage__text h3 {
    font-size: 18px;
  }

  body[data-template="custom"] .retail-process__steps {
    gap: 18px;
  }

  body[data-template="custom"] .retail-process__step {
    width: min(100%, 240px);
    grid-template-columns: 52px 1fr;
  }

  body[data-template="custom"] .retail-process__icon {
    width: 52px;
    height: 52px;
  }

  body[data-template="custom"] .retail-process__icon svg {
    width: 24px;
    height: 24px;
  }

}

body[data-template="custom"] .retail-advantage__layout--simple {
  position: relative;
  display: block;
  min-height: auto;
  max-width: 1536px;
  margin: 0 auto;
}

body[data-template="custom"] .retail-advantage__layout--simple::before {
  display: none;
}

body[data-template="custom"] .retail-advantage__layout--simple .retail-advantage__orbit,
body[data-template="custom"] .retail-advantage__layout--simple .retail-advantage__dot,
body[data-template="custom"] .retail-advantage__layout--simple .retail-advantage__col,
body[data-template="custom"] .retail-advantage__layout--simple .retail-advantage__item,
body[data-template="custom"] .retail-advantage__layout--simple .retail-advantage__item--right {
  display: none;
}

body[data-template="custom"] .retail-advantage__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body[data-template="custom"] .retail-advantage__card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(25, 74, 28, 0.08);
  box-shadow: 0 16px 34px rgba(24, 70, 29, 0.08);
  overflow: hidden;
}

body[data-template="custom"] .retail-advantage__card-media {
  position: relative;
  aspect-ratio: 1.56 / 1;
  overflow: hidden;
}

body[data-template="custom"] .retail-advantage__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

body[data-template="custom"] .retail-advantage__card:hover .retail-advantage__card-media img {
  transform: scale(1.06);
}

body[data-template="custom"] .retail-advantage__card-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 22px 24px;
}

body[data-template="custom"] .retail-advantage__card .retail-advantage__text {
  text-align: left !important;
}

body[data-template="custom"] .retail-advantage__card .retail-advantage__text h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

body[data-template="custom"] .retail-advantage__card .retail-advantage__text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  body[data-template="custom"] .retail-advantage__layout--simple {
    max-width: 900px;
  }

  body[data-template="custom"] .retail-advantage__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body[data-template="custom"] .retail-advantage__layout--simple {
    max-width: 420px;
  }

  body[data-template="custom"] .retail-advantage__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-template="custom"] .retail-advantage__card-body {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px 16px 20px;
  }

  body[data-template="custom"] .retail-advantage__card .retail-advantage__text h3 {
    font-size: 18px;
  }

  body[data-template="custom"] .retail-advantage__card .retail-advantage__text p {
    font-size: 13px;
  }
}
