:root {
  --bg: #f5efe6;
  --bg-soft: #fbf8f3;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --ink: #10252d;
  --muted: #5f6f75;
  --line: rgba(16, 37, 45, 0.12);
  --accent: #c86b2b;
  --accent-soft: #f2c38f;
  --accent-2: #2f7a66;
  --accent-3: #7b5cf0;
  --shadow: 0 28px 60px rgba(16, 37, 45, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 107, 43, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(47, 122, 102, 0.16), transparent 28%),
    linear-gradient(180deg, #f8f3eb 0%, #f3ede3 55%, #efe7db 100%);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.products-page {
  background: #fff;
}

body.products-page::before {
  opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 70%);
  opacity: 0.42;
}

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

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, #0d2552 0%, #0a214a 100%);
  box-shadow: 0 3px 18px rgba(6, 15, 33, 0.26);
}

.site-header__inner {
  position: relative;
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px 0 20px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 1rem;
  overflow: hidden;
}

.site-brand__logo {
  display: block;
  width: 8%;
  height: auto;
  transform: scale(1.045);
  transform-origin: center;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 1rem 0 0.78rem;
  border-radius: 0;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: transparent;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}

.site-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.85rem;
  width: 38px;
  height: 3px;
  border-radius: 0;
  background: #fff;
  transform: translateX(-50%) scaleX(0.55);
  transform-origin: center;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover::before,
.site-nav a.is-active::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.site-header__badge {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffcf4f 0%, #f0b62d 100%);
  color: #0b214a;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(8, 18, 39, 0.24);
  transform: translateY(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  z-index: 2;
}

.site-header__badge:hover,
.site-header__badge.is-active {
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 14px 26px rgba(8, 18, 39, 0.28);
  filter: saturate(1.04);
}

.site-header__badge-text {
  line-height: 1;
}

.site-header__badge-arrow {
  font-size: 0.9rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: transparent;
  padding: 0.8rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: #fff;
}

.site-main {
  padding-bottom: 2rem;
}

.hero {
  padding: 2.2rem 0 1rem;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 37, 45, 0.08);
  border-radius: calc(var(--radius-xl) + 12px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    linear-gradient(180deg, #fff, #f8f3ea);
  box-shadow: var(--shadow);
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
}

.hero-frame::before {
  width: 280px;
  height: 280px;
  right: -110px;
  top: -90px;
  background: radial-gradient(circle, rgba(200, 107, 43, 0.18), transparent 68%);
}

.hero-frame::after {
  width: 240px;
  height: 240px;
  left: -90px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(47, 122, 102, 0.18), transparent 68%);
}

.hero-carousel {
  position: relative;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
  align-items: center;
  min-height: 560px;
  padding: clamp(1.5rem, 3vw, 3rem);
}

.hero-slide.is-active {
  display: grid;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(0.5rem, 1vw, 0.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(16, 37, 45, 0.6);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-copy h1 {
  margin: 0;
  font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.hero-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 1.2rem 0 0;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 28px rgba(16, 37, 45, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(16, 37, 45, 0.18);
}

.button--light {
  background: #fff;
  color: var(--ink);
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(16, 37, 45, 0.12);
  box-shadow: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hero-points span,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 37, 45, 0.08);
  color: rgba(16, 37, 45, 0.82);
  font-size: 0.87rem;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.08) 45%, transparent 58%),
    linear-gradient(160deg, rgba(16, 37, 45, 0.98), rgba(28, 69, 80, 0.88) 52%, var(--hero-accent, #c86b2b));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.35;
}

.hero-visual::before {
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 66%);
}

.hero-visual::after {
  inset: 24px auto auto 20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 66%);
}

.hero-visual-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  min-height: 440px;
  padding: 1.5rem;
}

.hero-visual-card {
  align-self: start;
  width: min(100%, 370px);
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-visual-label {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual-title {
  margin-top: 0.95rem;
  font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.02;
}

.hero-visual-text {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-visual-lines {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero-visual-lines span {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual-grid {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.4rem;
}

.hero-faux-pack {
  min-height: 92px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-faux-pack--accent {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1)),
    linear-gradient(180deg, var(--hero-accent, #c86b2b), rgba(255, 255, 255, 0.1));
}

.hero-slider .hero-carousel--full {
  position: relative;
  overflow: hidden;
  height: clamp(470px, 52vw, 525px);
  min-height: 470px;
  background: #0d2552;
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
}

.hero.hero-slider {
  padding: 0;
}

.hero-slider .hero-slide.hero-slide--full {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.hero-slider .hero-slide.hero-slide--full::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 15, 37, 0.28), rgba(3, 15, 37, 0.52)),
    linear-gradient(90deg, rgba(3, 15, 37, 0.18), rgba(3, 15, 37, 0.1));
}

.hero-slider .hero-slide.hero-slide--full.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slider .hero-slide.hero-slide--full:not(.is-active) {
  pointer-events: none;
}

.hero-slider .hero-slide__content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-inline: 1rem;
  transform: none;
}

.hero-slider .hero-title {
  margin: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.hero-slider .hero-title span {
  display: block;
}

.hero-slider .hero-description {
  margin: 0.9rem auto 0;
  max-width: 880px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(0.7rem, 0.98vw, 0.83rem);
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.hero-slider .hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.45rem;
}

.hero-slider .hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 250px;
  min-height: 58px;
  padding: 0.95rem 1.6rem;
  border-radius: 2px;
  background: #0d2552;
  color: #fff;
  box-shadow: 0 14px 28px rgba(13, 37, 82, 0.34);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-slider .hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(13, 37, 82, 0.34);
}

.hero-slider .hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  z-index: 2;
  cursor: pointer;
}

.hero-slider .hero-arrow span {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  transform: translateY(-1px);
}

.hero-slider .hero-arrow--prev {
  left: 36px;
}

.hero-slider .hero-arrow--next {
  right: 36px;
}

.hero-slider .hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.product-hero.hero {
  padding: 0;
  background: #fff;
}

.products-page .site-main {
  padding-bottom: 0;
}

.product-hero .hero-carousel--full {
  position: relative;
  overflow: hidden;
  height: clamp(440px, 42vw, 650px);
  min-height: 440px;
  background: #fff;
  border-bottom: 1px solid rgba(16, 37, 45, 0.06);
}

.product-hero .hero-slide.hero-slide--full {
  padding: 0;
  background: #fff;
}

.product-hero .hero-slide.hero-slide--full::before {
  display: none;
}

.product-hero .hero-slide__content {
  display: none;
}

.product-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-hero .hero-arrow {
  background: rgba(13, 37, 82, 0.28);
  color: #fff;
}

.product-hero .hero-arrow:hover {
  background: rgba(13, 37, 82, 0.38);
}

.three-side-pouch-page .site-main {
  padding: 0;
  background: #fff;
}

.three-side-pouch-banner {
  width: 100%;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  background: #f8f4ed;
}

.three-side-pouch-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.single-product-section {
  padding: 20px 1rem 0px;
  border-top: 2px solid #e1ddd7;
  background: #fff;
  color: #050505;
}

.single-product-section__title {
  margin: 0;
  color: #050505;
  font-family: "Montserrat", sans-serif;
  font-size: 27pt;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}

.single-product-layout {
  width: min(1180px, 100%);
  min-height: 440px;
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  align-items: start;
  gap: clamp(70px, 6vw, 115px);
  margin: 60px auto 0;
}

.single-product-visual {
  position: relative;
  width: 430px;
  height: 440px;
  overflow: hidden;
  background: #fff;
}

.single-product-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
}

.single-product-content {
  padding-top: 56px;
}

.single-product-feature {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
}

.single-product-feature__icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: #ffbd43;
  color: #fff;
}

.single-product-feature__icon svg {
  width: 64px;
  height: 64px;
}

.single-product-feature h3 {
  margin: 0;
  color: #0a1732;
  font-family: "Montserrat", sans-serif;
  font-size: 20pt;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.single-product-content > p {
  max-width: 700px;
  margin: 67px 0 0;
  color: #050505;
  font-family: "Open Sans", sans-serif;
  font-size: 12pt;
  font-weight: 500;
  line-height: 1.58;
}

.product-gallery-section {
  padding: 50px 0 38px;
  overflow: hidden;
  background: #fff;
}

.product-gallery-viewport {
  width: 100%;
  overflow: hidden;
}

.product-gallery-track {
  width: max-content;
  display: flex;
  gap: 24px;
  padding: 0 24px;
  animation: product-gallery-scroll 26s linear infinite;
  will-change: transform;
}

.product-gallery-viewport:hover .product-gallery-track {
  animation-play-state: paused;
}

.product-gallery-card {
  position: relative;
  flex: 0 0 32vw;
  width: 32vw;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, #fff 0 30%, rgba(255, 255, 255, 0.7) 50%, transparent 72%),
    linear-gradient(135deg, #d9d9df 0%, #f4f4f7 54%, #d8d8dd 100%);
}

.product-gallery-card::after {
  content: none;
}

.product-gallery-card img {
  width: 40%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}

@keyframes product-gallery-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

.product-details-section {
  min-height: 0;
  padding: 50px 1rem 48px;
  background: #fff;
  color: #151515;
}

.product-details-grid {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(90px, 7vw, 135px);
  margin: 0 auto;
}

.product-details-heading {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.product-details-heading__icon {
  width: 70px;
  height: 70px;
  flex: 0 0 100px;
  display: grid;
  place-items: center;
  background: #ffbd43;
  color: #fff;
}

.product-details-heading__icon svg {
  width: 64px;
  height: 64px;
}

.product-details-heading h2 {
  margin: 0;
  color: #171717;
  font-family: "Montserrat", sans-serif;
  font-size: 25pt;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-details-list {
  display: grid;
  gap: 3px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-details-list li {
  position: relative;
  min-height: 27px;
  padding-left: 29px;
  color: #111;
  font-family: "Open Sans", sans-serif;
  font-size: 12pt;
  font-weight: 500;
  line-height: 1.45;
}

.product-details-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ffb82e;
}

.product-details-list li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.product-banner {
  padding: 0;
  background: #fff;
}

.product-banner .hero-carousel--full {
  height: clamp(430px, 46vw, 700px);
  min-height: 430px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 244, 221, 0.96), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(247, 241, 229, 0.92), transparent 26%),
    linear-gradient(180deg, #fbf7f0 0%, #f6efe4 100%);
  border-bottom: 1px solid rgba(16, 37, 45, 0.06);
}

.product-banner .hero-slide.hero-slide--full {
  min-height: 100%;
  padding: 0;
  background: transparent;
}

.product-banner .hero-slide.hero-slide--full::before {
  display: none;
}

.product-banner .hero-slide__content {
  display: none;
}

.product-banner__stage {
  position: relative;
  width: min(100%, 1900px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.product-banner__stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 19%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 247, 237, 0.65) 54%, rgba(239, 231, 220, 0.88));
}

.product-banner__pack {
  position: absolute;
  bottom: 0;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.12));
  z-index: 1;
}

.product-banner__pack--1 {
  left: 7%;
  width: 20%;
  transform: translateY(2%);
  z-index: 2;
}

.product-banner__pack--2 {
  left: 29%;
  width: 26%;
  transform: translateY(0);
  z-index: 3;
}

.product-banner__pack--3 {
  right: 7%;
  width: 22%;
  transform: translateY(4%);
  z-index: 2;
}

.product-banner__pack--4 {
  left: 42%;
  width: 15%;
  transform: translateY(10%);
  z-index: 4;
}

.product-banner .hero-arrow,
.product-banner .hero-dots,
.product-banner .hero-controls {
  display: none;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem 1.4rem;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(16, 37, 45, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, width 0.2s ease, background-color 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: var(--accent);
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(16, 37, 45, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
}

.section {
  padding: 4.2rem 0;
}

.section--tight {
  padding-top: 2.5rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2,
.page-hero h1,
.footer-cta h2 {
  margin: 0;
  font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-head p,
.page-hero p,
.subtle {
  color: var(--muted);
}

.stories-section {
  padding: 4rem 0 4.75rem;
  background: #fff;
}

.stories-shell {
  width: min(1520px, calc(100% - 2rem));
}

.stories-heading {
  display: flex;
  justify-content: center;
}

.stories-heading span {
  color: #1b1d22;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stories-divider {
  width: min(430px, 72vw);
  height: 2px;
  margin: 1.55rem auto 2.55rem;
  background: linear-gradient(90deg, #dedede 0 41%, #f1c400 41% 59%, #dedede 59% 100%);
}

.stories-grid {
  padding-left: 10%;
    padding-right: 10%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.story-card {
  aspect-ratio: 1.86 / 1;
  min-height: 0;
  padding: 0;
  border-radius: 26px;
  background: #000;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.36);
  display: block;
  overflow: hidden;
}

.story-card__player {
  position: relative;
  width: 100%;
  height: 100%;
}

.story-card__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.count-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.05rem 10% 3rem 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, #f9be3e 0%, #f5ba37 100%);
}

.count-section::after {
  content: "";
  position: absolute;
  inset: 0;
  left: auto;
  width: 100%;
  background: #0c2552;
  clip-path: polygon(93% 0, 100% 0, 100% 100%, 84% 100%);
  z-index: 0;
}

.count-shell {
  position: relative;
  z-index: 1;
  width: min(1540px, calc(100% - 2rem));
}

.count-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.count-card {
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.2rem 1.7rem;
  background: #3c3a3d;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 20px rgba(7, 15, 31, 0.14);
}

.count-card::before,
.count-card::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.count-card::before {
  top: 0;
  left: 0;
  border-top: 4px solid #ef0000;
  border-left: 4px solid #ef0000;
}

.count-card::after {
  right: 0;
  bottom: 0;
  border-right: 4px solid #ef0000;
  border-bottom: 4px solid #ef0000;
}

.count-card__value {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.count-card__label {
  margin-top: 1.15rem;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.92rem, 1.1vw, 1.24rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.industries-section {
  padding: 1.8rem 0 3rem;
  border-top: 1px solid rgba(11, 24, 52, 0.42);
  background: linear-gradient(180deg, #f8be44 0%, #f6bb3b 100%);
  overflow: hidden;
}

.industries-shell {
  width: min(1620px, calc(100% - 2rem));
}

.industries-carousel {
  overflow: hidden;
}

.industries-heading {
  display: flex;
  justify-content: center;
  margin-top: 0.15rem;
}

.industries-heading span {
  display: inline-block;
  padding: 0.1rem 0.28rem 0.12rem;
  background: transparent;
  color: #0f1222;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  box-shadow: none;
}

.industries-divider {
  width: min(430px, 72vw);
  height: 2px;
  margin: 1.6rem auto 2.4rem;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0 34%,
    #f0ca12 34% 66%,
    rgba(255, 255, 255, 0.95) 66% 100%
  );
}

.industries-grid {
  display: flex;
  width: max-content;
  padding: 0;
  gap: clamp(1rem, 1.8vw, 1.7rem);
  align-items: stretch;
  animation: industry-marquee 34s linear infinite;
  will-change: transform;
}

.industries-grid--marquee:hover {
  animation-play-state: paused;
}

.industry-showcase-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(300px, 26vw, 470px);
  min-height: 385px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.industry-showcase-card.is-clone {
  opacity: 0.98;
}

.industry-showcase-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.45rem 0.8rem 0.35rem;
  background: #f2d000;
  color: #0d2552;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.industry-showcase-card__media {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.industry-showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@keyframes industry-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.products-section {
  padding: 4rem 0 4.8rem;
  background: #fff;
}

.products-shell {
  width: min(1800px, calc(100% - 2rem));
}

.products-heading {
  display: flex;
  justify-content: center;
}

.products-heading span {
  color: #1b1d22;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.products-divider {
  width: min(430px, 72vw);
  height: 2px;
  margin: 1.45rem auto 2.4rem;
  background: linear-gradient(90deg, #dddddd 0 42%, #f1c400 42% 58%, #dddddd 58% 100%);
}

.products-grid {
  gap: clamp(2rem, 4vw, 4.8rem);
  align-items: start;
}

.product-showcase-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 520px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.product-showcase-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: #111827;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.product-showcase-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 1.8rem 1.45rem 0rem  1.55rem;
  overflow: hidden;
  background: transparent;
}

.product-showcase-card__media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: none;
}

.product-showcase-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: -0.1rem;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 7px;
  border: 1px solid rgba(16, 37, 45, 0.12);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  color: #111827;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 37, 45, 0.03);
}

.product-btn--solid {
  border-color: #f4b63b;
  background: #f4b63b;
}

.product-btn--ghost {
  background: #fff;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

.card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(16, 37, 45, 0.06);
}

.industry-card {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(200, 107, 43, 0.08), rgba(47, 122, 102, 0.08));
}

.industry-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.industry-card h3,
.solution-card h3,
.capability-card h3,
.feature-card h3,
.page-card h3 {
  margin: 0.9rem 0 0.5rem;
  font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  line-height: 1.02;
}

.industry-card p,
.solution-card p,
.capability-card p,
.feature-card p,
.page-card p {
  margin: 0;
  color: var(--muted);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, rgba(200, 107, 43, 0.08), rgba(47, 122, 102, 0.08));
  border: 1px solid rgba(16, 37, 45, 0.08);
}

.stat__value {
  font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat__label {
  margin-top: 0.45rem;
  color: var(--muted);
}

.clients-section {
  padding: 4rem 0 4.8rem;
  background: #fff;
}

.clients-shell {
  width: min(1800px, calc(100% - 2rem));
}

.clients-heading {
  display: flex;
  justify-content: center;
}

.clients-heading span {
  color: #1b1d22;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.clients-divider {
  width: min(430px, 72vw);
  height: 2px;
  margin: 1.45rem auto 2.35rem;
  background: linear-gradient(90deg, #dddddd 0 42%, #f1c400 42% 58%, #dddddd 58% 100%);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 363px;
  padding: 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.client-logo-card--latha {
  justify-content: flex-start;
  padding-left: 0.45rem;
}

.client-logo-card--skr {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.client-logo-card--tasty {
  background: #ffe51f;
}

.client-logo-card--trt {
  background: #0a2621;
}

.client-logo-card--nestle {
  background: transparent;
}

.client-logo-card__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.client-logo-card__image--latha {
  max-width: 451px;
  transform: translateY(4px);
}

.client-logo-card__image--skr {
  max-width: 451px;
}

.client-logo-card__image--tasty {
  max-width: 459px;
}

.client-logo-card__image--trt {
  max-width: 466px;
}

.client-logo-card__image--nestle {
  max-width: 328px;
}

.clients-carousel {
  overflow: hidden;
}

.clients-grid--marquee {
  display: flex;
  width: max-content;
  gap: 1rem;
  align-items: stretch;
  animation: client-marquee 38s linear infinite;
  will-change: transform;
}

.clients-grid--marquee:hover {
  animation-play-state: paused;
}

.client-logo-card {
  flex: 0 0 clamp(198px, 15.4vw, 264px);
  min-height: 209px;
  padding: 1rem;
  
}

.client-logo-card.is-clone {
  opacity: 0.96;
}

.client-logo-card__image {
  width: 100%;
  max-height: 160px;
  width: auto;
  max-width: 100%;
  height: auto;
}

@keyframes client-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-grid--marquee {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-logo-card.is-clone {
    display: none;
  }
}

.about-section {
  padding: 4.2rem 0 4.7rem;
  background: #fff;
}

.about-shell {
  width: min(1810px, calc(100% - 2rem));
  display: grid;
  justify-items: center;
  gap: 1.35rem;
  text-align: center;
}

.about-title {
  margin: 0;
  color: #1b1d22;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-divider {
  width: min(430px, 72vw);
  height: 2px;
  background: linear-gradient(90deg, #dddddd 0 42%, #f1c400 42% 58%, #dddddd 58% 100%);
}

.about-copy {
  padding: 0% 10%;
  margin: 0;
  max-width: 1740px;
  color: #0f1116;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.core-section {
  padding: 10px 0 16px;
  background: #fff;
}

.core-shell {
  width: min(1900px, 100%);
  margin: 0 auto;
}

.core-title {
  margin: 0;
  color: #1b1d22;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-align: center;
}

.core-divider {
  width: min(430px, 72vw);
  height: 2px;
  margin: 1.45rem auto 0;
  background: linear-gradient(90deg, #dddddd 0 42%, #f1c400 42% 58%, #dddddd 58% 100%);
}

.core-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  height: 608px;
  margin-top: 20px;
}

.core-media {
  position: relative;
  overflow: hidden;
  height: 608px;
  min-height: 0;
  margin: 0;
}

.core-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transform-origin: center center;
}

.core-cards-wrap {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin: 20px 0 20px clamp(-260px, -13.68vw, -140px);
  padding: 68px clamp(2rem, 3.68vw, 70px) 0;
  background: #fff;
}

.core-cards-wrap::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 39px;
  width: min(922px, calc(100% - 78px));
  height: 1px;
  background: #dddddd;
}

.core-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, auto);
  width: min(860px, 85%);
  gap: 38px clamp(24px, 2vw, 38px);
}

.core-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 0.95rem 0.9rem 0.8rem 0.95rem;
  overflow: hidden;
  background: #0d2558;
  box-shadow: none;
}

.core-card::before,
.core-card::after {
  content: none;
}

.core-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #ffbf2f;
}

.core-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.core-card__content {
  min-width: 0;
}

.core-card h3 {
  margin: 0 0 4px;
  color: #ffbf2f;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15pt;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.core-card p {
  margin: 0;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12pt;
  line-height: 1.36;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.logo-tile {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(16, 37, 45, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(16, 37, 45, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

.solution-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(200, 107, 43, 0.09), rgba(123, 92, 240, 0.08));
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: start;
}

.feature-card {
  padding: 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 37, 45, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.feature-card .mini {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(200, 107, 43, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 37, 45, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, rgba(47, 122, 102, 0.08), rgba(200, 107, 43, 0.08));
  box-shadow: var(--shadow);
}

.panel__body {
  padding: 1.4rem;
}

.panel__header {
  padding: 1.4rem 1.4rem 0;
}

.panel__header h3,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.panel__header p {
  color: var(--muted);
  margin: 0.65rem 0 0;
}

.page-hero {
  padding: 3rem 0 1rem;
}

.page-hero__box {
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 8px);
  border: 1px solid rgba(16, 37, 45, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, rgba(200, 107, 43, 0.16), transparent 35%);
  box-shadow: var(--shadow);
}

.page-hero__lead {
  max-width: 70ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-card {
  padding: 1.3rem;
  min-height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 37, 45, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(16, 37, 45, 0.05);
}

.page-card .meta {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 37, 45, 0.08);
}

.timeline-item strong {
  display: block;
  font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: 1.35rem;
}

.timeline-item span {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.contact-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 37, 45, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-list a {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.9rem;
  color: rgba(16, 37, 45, 0.8);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(16, 37, 45, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

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

.notice {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(47, 122, 102, 0.2);
  background: rgba(47, 122, 102, 0.08);
  color: var(--ink);
}

.notice--error {
  border-color: rgba(200, 107, 43, 0.24);
  background: rgba(200, 107, 43, 0.08);
}

body.contact-page {
  background: #fff;
}

body.contact-page::before {
  opacity: 0;
}

body.contact-page .site-main {
  padding-bottom: 0;
}

body.contact-page .site-footer {
  margin-top: 0;
}

.contact-hero {
  padding: 0.45rem 0 1.65rem;
  background: #fff;
}

.contact-shell {
  width: min(1560px, calc(100% - 2rem));
  margin: 0 auto;
}

.contact-hero .contact-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-hero__title {
  margin: 0;
  color: #1b1d22;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 30pt;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-hero__divider {
  width: min(430px, 72vw);
  height: 2px;
  margin-top: 1rem;
  margin-inline: auto;
  background: linear-gradient(90deg, #dddddd 0 42%, #f0c400 42% 58%, #dddddd 58% 100%);
}

.contact-section {
  padding:25px 10% 10px 10%;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-panel {
  min-width: 0;
}

.contact-panel--form {
  padding-right: 0.1rem;
}

.contact-panel__title {
  margin: 0 0 0.85rem;
  color: #1b1d22;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 25pt;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-form--stacked {
  display: grid;
  gap: 1rem;
}

.contact-form--stacked .field {
  gap: 0;
}

.contact-form--stacked .field input,
.contact-form--stacked .field textarea {
  width: 100%;
  min-height: 45px;
  padding: 0 1.35rem;
  border-radius: 0;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 10pt;
  letter-spacing: 0.04em;
}

.contact-form--stacked .field textarea {
  min-height: 184px;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  resize: vertical;
}

.contact-form--stacked .field input::placeholder,
.contact-form--stacked .field textarea::placeholder {
  color: #6a7480;
  opacity: 1;
}

.contact-form--stacked .field input:focus,
.contact-form--stacked .field textarea:focus {
  outline: none;
  border-color: rgba(207, 17, 17, 0.4);
  box-shadow: 0 0 0 3px rgba(207, 17, 17, 0.08);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 292px;
  min-height: 60px;
  margin-top: 0.2rem;
  padding: 1rem 1.4rem;
  border: 0;
  border-radius: 0;
  background: #f8b73a;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

.contact-panel--details {
  display: flex;
  flex-direction: column;
  gap: 2.55rem;
  min-height: 100%;
  padding: 2rem 1.7rem 1.7rem;
  border-radius: 16px;
  background: #0d1e4a;
  color: #fff;
}

.contact-detail {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-detail__icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: #fff;
}

.contact-detail__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-detail__icon i {
  font-size: 2.6rem;
  line-height: 1;
}

.contact-detail__content h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12pt;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.contact-detail__content p {
  margin: 0;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 10pt;
  line-height: 1.58;
}

.contact-detail__content a {
  color: inherit;
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.6rem;
}

.contact-social {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #f7b83a;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.contact-social svg {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-social i {
  font-size: 1.55rem;
  line-height: 1;
}

.contact-social--facebook {
  background: #f7b83a;
  color: #fff;
}

.contact-social--instagram {
  background: #f7b83a;
  color: #fff;
}

.contact-social--instagram svg {
  width: 60%;
  height: 60%;
}

.contact-social--x {
  background: #f7b83a;
  color: #fff;
}

.contact-social--x svg {
  width: 58%;
  height: 58%;
}

.contact-map-section {
  padding: 2% 10% 2% 10%;
  background: #fff;
}

.contact-map-shell {
  width: min(1560px, calc(100% - 2rem));
  margin: 0 auto;
}

.contact-map-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 292px;
  min-height: 60px;
  margin: 0 0 1.1rem;
  padding: 1rem 1.4rem;
  background: #f8b73a;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-map-frame {
  overflow: hidden;
  border: 1px solid #e8e1d9;
  background: #f7f7f7;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 580px;
  border: 0;
}

.contact-section .notice {
  margin-bottom: 0.6rem;
}

.site-footer {
  position: relative;
  margin-top: 2rem;
  font-family: "Open Sans", Sans-serif;
}

.site-footer__main {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffbf35 0%, #f6b233 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%);
}

.site-footer__main::before,
.site-footer__main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-footer__main::before {
  background:
    linear-gradient(135deg, transparent 0 78%, rgba(255, 255, 255, 0.08) 78% 79%, transparent 79%),
    linear-gradient(225deg, transparent 0 55%, rgba(255, 255, 255, 0.08) 55% 56%, transparent 56%);
  opacity: 0.7;
}

.site-footer__main::after {
  background:
    radial-gradient(circle at 94% 18%, rgba(255, 255, 255, 0.12), transparent 20%),
    radial-gradient(circle at 88% 42%, rgba(255, 255, 255, 0.1), transparent 16%),
    radial-gradient(circle at 96% 86%, rgba(255, 255, 255, 0.08), transparent 18%);
}

.footer-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 20% 20% 20% 20%;
  gap: 2rem;
  align-items: start;
  padding: 15px 0 20px;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 1rem;
  padding-top: 0.2rem;
  color: #0d2552;
  text-align: left;
}

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-brand__logo img {
  width: 82px;
  height: auto;
  display: block;
}

.footer-brand p {
  text-align: left;
  margin: 0;
  max-width: 24ch;
  font-size: 15px;
  line-height: 1.72;
}

.footer-column h3 {
  margin: 0 0 1.2rem;
  color: #0d2552;
  font-family: "Open Sans", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links--squares {
  display: grid;
  gap: 0.95rem;
}

.footer-links--squares li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  color: #0d2552;
  font-size: 15px;
}

.footer-links--squares li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ba1020;
  flex: none;
}

.footer-links a {
  color: inherit;
}

.footer-links a:hover {
  color: rgba(13, 37, 82, 0.78);
}

.footer-column--links h3 {
  text-align: left;
}

.footer-column--links .footer-links--squares {
  padding-left: 0.4rem;
}

.footer-contact {
  display: grid;
  gap: 1.35rem;
}

.footer-contact__item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  color: #0d2552;
  font-size: 15px;
  line-height: 1.55;
}

.footer-contact__item p {
  margin: 0;
}

.footer-contact__item a {
  color: inherit;
}

.footer-contact__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  color: #0d2552;
}

.footer-contact__icon svg {
  width: 100%;
  height: 100%;
}

.site-footer__bar {
  background: #121216;
  padding: 15px 0;
}

.site-footer__bar-inner {
  display: flex;
  align-items: center;
  color: #ffb72f;
  font-size: 12pt;
  font-weight: 600;
  font-family: "Open Sans", Sans-serif;
}

.back-to-top {
  position: absolute;
  right: 20px;
  bottom: 1.55rem;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: #0d2552;
  color: #fff;
  box-shadow: 0 18px 30px rgba(13, 37, 82, 0.28);
  z-index: 40;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal > span {
  font-family: "Montserrat", Sans-serif;
}

@media (max-width: 1120px) {
  .hero-slide,
  .split,
  .contact-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .clients-shell {
    width: min(calc(100% - 1.4rem), 1800px);
  }

  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .about-shell {
    width: min(calc(100% - 1.4rem), 1810px);
  }

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

  .stories-shell {
    width: min(calc(100% - 1.4rem), 1520px);
  }

  .stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .count-shell {
    width: min(calc(100% - 1.4rem), 1540px);
  }

  .count-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

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

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

  .industries-shell {
    width: min(calc(100% - 1.4rem), 1700px);
  }

  .industries-grid {
    gap: 1rem;
  }

  .industry-showcase-card {
    flex-basis: clamp(260px, 34vw, 360px);
    min-height: 320px;
  }

  .contact-shell,
  .contact-map-shell {
    width: min(calc(100% - 1.4rem), 1560px);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .contact-panel--form {
    padding-right: 0;
  }

  .contact-panel--details {
    padding: 1.45rem 1.2rem 1.2rem;
    gap: 1.9rem;
  }

  .contact-detail__content h3 {
    font-size: clamp(1.15rem, 4vw, 1.55rem);
  }

  .contact-map-frame iframe {
    height: 500px;
  }

  .site-nav {
    gap: 1.8rem;
  }

  .site-nav a {
    font-size: 0.98rem;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 78px;
    padding: 0 0.8rem 0 0.9rem;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    inset: 100% 0 auto 0;
    transform: none;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 1rem 1rem 1.15rem;
    background: linear-gradient(180deg, #0d2552 0%, #0a214a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 30px rgba(6, 15, 33, 0.18);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header__badge {
    display: none;
  }

  .site-nav a {
    width: 100%;
    padding: 0.35rem 0;
    font-size: 0.95rem;
  }

  .hero-slider .hero-carousel--full {
    height: 420px;
    min-height: 420px;
  }

  .hero-slider .hero-slide__content {
    width: min(calc(100% - 1.25rem), 760px);
  }

  .hero-slider .hero-title {
    font-size: clamp(2rem, 8.5vw, 3.4rem);
    line-height: 0.94;
  }

  .hero-slider .hero-description {
    margin-top: 0.85rem;
    max-width: 90%;
    font-size: 0.94rem;
  }

  .hero-slider .hero-button {
    min-width: 210px;
    min-height: 50px;
    font-size: 0.84rem;
    letter-spacing: 0.1em;
  }

  .hero-slider .hero-arrow {
    width: 44px;
    height: 52px;
    left: 12px;
  }

  .hero-slider .hero-arrow--next {
    left: auto;
    right: 12px;
  }

  .hero-slider .hero-arrow span {
    font-size: 2.1rem;
  }

  .product-hero .hero-carousel--full {
    height: 390px;
    min-height: 390px;
  }

  .product-showcase-card {
    min-height: 340px;
  }

  .product-showcase-card__media {
    min-height: 300px;
    padding: 1.35rem 1.1rem 0px 1.1rem;
  }

  .product-showcase-card__actions {
    gap: 0.75rem;
  }

  .product-btn {
    min-width: 72px;
    min-height: 32px;
    font-size: 0.88rem;
  }

  .contact-hero {
    padding: 0.2rem 0 1.35rem;
  }

  .contact-hero__title {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
  }

  .contact-hero__divider {
    width: min(320px, 72vw);
  }

  .contact-section {
    padding: 0.2rem 0 2rem;
  }

  .contact-panel__title {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .contact-form--stacked {
    gap: 0.85rem;
  }

  .contact-form--stacked .field input,
  .contact-form--stacked .field textarea {
    min-height: 56px;
    padding: 0 1.1rem;
    font-size: 0.9rem;
  }

  .contact-form--stacked .field textarea {
    min-height: 150px;
  }

  .contact-submit,
  .contact-map-cta {
    width: 100%;
    min-width: 0;
  }

  .contact-panel--details {
    gap: 1.45rem;
    padding: 1.2rem 1rem 1rem;
  }

  .contact-detail {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.7rem;
  }

  .contact-detail__icon {
    width: 44px;
    height: 44px;
  }

  .contact-detail__icon i {
    font-size: 2rem;
  }

  .contact-detail__content p {
    font-size: 0.95rem;
  }

  .contact-social {
    width: 48px;
    height: 48px;
  }

  .contact-social i {
    font-size: 1.3rem;
  }

  .contact-map-frame iframe {
    height: 380px;
  }

  .product-banner .hero-carousel--full {
    height: clamp(340px, 72vw, 500px);
    min-height: 340px;
  }

  .product-banner__pack--1 {
    left: 3%;
    width: 24%;
  }

  .product-banner__pack--2 {
    left: 24%;
    width: 31%;
  }

  .product-banner__pack--3 {
    right: 3%;
    width: 26%;
  }

  .product-banner__pack--4 {
    left: 42%;
    width: 17%;
    transform: translateY(8%);
  }

  .about-section {
    padding: 3.4rem 0 4rem;
  }

  .about-shell {
    width: min(calc(100% - 1.25rem), 1810px);
    gap: 1.05rem;
  }

  .about-title {
    font-size: clamp(2.2rem, 8vw, 3.25rem);
  }

  .about-divider {
    width: min(320px, 72vw);
  }

  .about-copy {
    font-size: 1rem;
    line-height: 1.5;
  }

  .core-section {
    padding: 3.55rem 0 4.1rem;
  }

  .core-shell {
    width: min(calc(100% - 1.25rem), 1850px);
  }

  .core-title {
    font-size: clamp(2.3rem, 8vw, 3.45rem);
  }

  .core-divider {
    width: min(320px, 72vw);
  }

  .core-layout {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1.35rem;
    margin-top: 1.6rem;
  }

  .core-media {
    height: 440px;
    min-height: 440px;
  }

  .core-cards-wrap {
    margin: 0;
    padding: 1rem 1.35rem 0 1.35rem;
  }

  .core-cards-wrap::before {
    top: 0;
    left: 1.35rem;
    width: calc(100% - 2.7rem);
  }

  .core-cards {
    grid-auto-rows: minmax(150px, auto);
    width: 100%;
  }

  .core-card {
    min-height: 150px;
    align-items: start;
    padding: 1rem 1.2rem 0.9rem 1.05rem;
  }

  .core-card__icon {
    width: 50px;
    height: 50px;
  }

  .section {
    padding: 3rem 0;
  }

  .section-head,
  .site-footer__bar-inner {
    flex-direction: column;
    align-items: start;
  }

  .grid--5,
  .grid--4,
  .grid--3,
  .grid--2,
  .stories-grid,
  .count-grid,
  .logo-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .clients-section {
    padding: 3rem 0 3.8rem;
  }

  .clients-shell {
    width: min(calc(100% - 1rem), 1800px);
  }

  .clients-heading span {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .clients-divider {
    margin: 1.1rem auto 1.7rem;
  }

  .client-logo-card {
    min-height: 253px;
  }

  .client-logo-card--latha {
    justify-content: center;
    padding-left: 1rem;
  }

  .client-logo-card__image--latha {
    max-width: 393px;
  }

  .client-logo-card__image--skr {
    max-width: 407px;
  }

  .client-logo-card__image--tasty {
    max-width: 415px;
  }

  .client-logo-card__image--trt {
    max-width: 415px;
  }

  .client-logo-card__image--nestle {
    max-width: 291px;
  }

  .count-section {
    padding: 1.65rem 0 2.5rem;
  }

  .count-section::after {
    display: none;
  }

  .count-shell {
    width: min(calc(100% - 1rem), 1540px);
  }

  .count-grid {
    gap: 1rem;
  }

  .count-card {
    min-height: 160px;
  }

  .count-card__value {
    font-size: clamp(2.85rem, 12vw, 4rem);
  }

  .count-card__label {
    margin-top: 0.95rem;
    font-size: 0.92rem;
  }

  .stories-heading span {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .stories-divider {
    margin: 1.2rem auto 1.8rem;
  }

  .story-card {
    min-height: 0;
  }

  .story-card__stage {
    min-height: 110px;
  }

  .story-card__youtube {
    font-size: 0.96rem;
  }

  .industries-heading span {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .industries-divider {
    margin: 1.2rem auto 1.7rem;
  }

  .industry-showcase-card {
    min-height: 290px;
  }

  .industry-showcase-card__title {
    min-height: 42px;
    font-size: 1rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-bottom: 2.4rem;
  }

  .footer-brand {
    justify-items: start;
    text-align: left;
  }

  .footer-brand p {
    max-width: 34ch;
  }

  .back-to-top {
    right: 14px;
    bottom: 1.1rem;
    width: 48px;
    height: 54px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .site-brand__logo {
    width: 66px;
  }

  .hero-slider .hero-carousel--full {
    height: 360px;
    min-height: 360px;
  }

  .hero-slider .hero-slide__content {
    width: min(calc(100% - 1rem), 680px);
  }

  .hero-slider .hero-title {
    font-size: clamp(1.75rem, 10vw, 2.7rem);
  }

  .hero-slider .hero-description {
    max-width: 96%;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero-slider .hero-button {
    min-width: 185px;
    min-height: 46px;
    font-size: 0.74rem;
  }

  .hero-slider .hero-arrow {
    width: 36px;
    height: 42px;
    left: 8px;
  }

  .hero-slider .hero-arrow--next {
    left: auto;
    right: 8px;
  }

  .hero-slider .hero-arrow span {
    font-size: 1.7rem;
  }

  .product-hero .hero-carousel--full {
    height: 320px;
    min-height: 320px;
  }

  .products-section {
    padding: 3.4rem 0 4rem;
  }

  .products-heading span {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .products-divider {
    margin: 1.2rem auto 1.7rem;
  }

  .product-showcase-card {
    min-height: 300px;
  }

  .product-showcase-card__media {
    min-height: 250px;
    padding: 1rem 0.9rem 0px 0.95rem;
  }

  .product-showcase-card__actions {
    gap: 0.6rem;
    flex-wrap: wrap;
  }

  .product-btn {
    min-width: 68px;
    min-height: 30px;
    padding: 0.4rem 0.7rem;
    font-size: 0.82rem;
  }

  .product-banner .hero-carousel--full {
    height: 300px;
    min-height: 300px;
  }

  .product-banner__pack--1,
  .product-banner__pack--3 {
    display: none;
  }

  .product-banner__pack--2 {
    left: 16%;
    width: 42%;
  }

  .product-banner__pack--4 {
    left: 44%;
    width: 24%;
    transform: translateY(10%);
  }

  .about-section {
    padding: 2.8rem 0 3.2rem;
  }

  .about-shell {
    width: min(calc(100% - 1rem), 1810px);
    gap: 0.95rem;
  }

  .about-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .about-divider {
    width: min(270px, 72vw);
  }

  .about-copy {
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .core-section {
    padding: 2.85rem 0 3.35rem;
  }

  .core-shell {
    width: min(calc(100% - 1rem), 1850px);
  }

  .core-title {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
  }

  .core-divider {
    width: min(270px, 72vw);
    margin-top: 1.15rem;
  }

  .core-layout {
    gap: 1rem;
    margin-top: 1.35rem;
  }

  .core-media {
    height: 300px;
    min-height: 300px;
  }

  .core-cards-wrap {
    padding: 0.95rem 1rem 0 1rem;
  }

  .core-cards-wrap::before {
    left: 1rem;
    width: calc(100% - 2rem);
  }

  .core-cards {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(138px, auto);
    gap: 0.95rem;
  }

  .core-card {
    min-height: 138px;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 0.85rem;
    padding: 0.9rem 1rem 0.8rem 0.95rem;
  }

  .core-card__icon {
    width: 44px;
    height: 44px;
  }

  .core-card h3 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.2rem, 7vw, 1.55rem);
  }

  .core-card p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .contact-shell,
  .contact-map-shell {
    width: min(calc(100% - 1rem), 1560px);
  }

  .contact-hero__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .contact-hero__divider {
    width: min(270px, 72vw);
  }

  .contact-panel__title {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .contact-submit,
  .contact-map-cta {
    min-height: 54px;
    font-size: 0.84rem;
    letter-spacing: 0.1em;
  }

  .contact-detail {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .contact-detail__icon {
    width: 42px;
    height: 42px;
  }

  .contact-detail__content h3 {
    font-size: 1.45rem;
  }

  .contact-social {
    width: 48px;
    height: 48px;
  }

  .contact-map-frame iframe {
    height: 300px;
  }

  .clients-section {
    padding: 2.5rem 0 3.1rem;
  }

  .clients-shell {
    width: min(calc(100% - 0.9rem), 1800px);
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .client-logo-card {
    min-height: 220px;
    padding: 1.05rem;
  }

  .client-logo-card--latha {
    justify-content: center;
    padding-left: 0.95rem;
  }

  .client-logo-card__image--latha {
    max-width: 363px;
  }

  .client-logo-card__image--skr {
    max-width: 363px;
  }

  .client-logo-card__image--tasty {
    max-width: 363px;
  }

  .client-logo-card__image--trt {
    max-width: 371px;
  }

  .client-logo-card__image--nestle {
    max-width: 262px;
  }

  .stories-section {
    padding: 3rem 0 3.9rem;
  }

  .stories-shell {
    width: min(calc(100% - 1rem), 1520px);
  }

  .count-section {
    padding: 1.4rem 0 2.1rem;
  }

  .count-card {
    min-height: 146px;
    padding: 1.6rem 1rem 1.35rem;
  }

  .count-card::before,
  .count-card::after {
    width: 17px;
    height: 17px;
  }

  .count-card__value {
    font-size: clamp(2.45rem, 16vw, 3.35rem);
  }

  .count-card__label {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }

  .story-card {
    min-height: 0;
    padding: 0;
    border-radius: 22px;
  }

  .story-card__avatar {
    width: 38px;
    height: 38px;
  }

  .story-card__meta h3 {
    font-size: 0.95rem;
  }

  .story-card__meta p {
    font-size: 0.78rem;
  }

  .story-card__play {
    width: 74px;
    height: 52px;
    border-radius: 15px;
  }

  .story-card__play::before {
    left: 29px;
    top: 15px;
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }

  .story-card__youtube {
    font-size: 0.86rem;
  }

  .industries-shell {
    width: min(calc(100% - 0.9rem), 1700px);
  }

  .industries-grid {
    gap: 0.85rem;
  }

  .industry-showcase-card {
    flex-basis: min(84vw, 320px);
    min-height: 280px;
  }

  .industries-section {
    padding: 1.5rem 0 2.4rem;
  }

  .page-hero__box,
  .card,
  .panel__body,
  .panel__header,
  .contact-card,
  .page-card,
  .feature-card {
    border-radius: 20px;
  }

  .site-footer__bar {
    padding: 1.45rem 0;
  }

  .site-footer__bar-inner {
    font-size: 1rem;
  }
}

@media (max-width: 980px) {
  .three-side-pouch-banner {
    width: 100%;
  }

  .single-product-section {
    padding-bottom: 56px;
  }

  .single-product-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 38px;
  }

  .single-product-visual {
    width: min(430px, 100%);
    margin: 0 auto;
  }

  .single-product-content {
    width: min(700px, 100%);
    margin: 0 auto;
    padding-top: 0;
  }

  .product-gallery-section {
    padding: 40px 0 32px;
  }

  .product-gallery-card {
    flex-basis: 44vw;
    width: 44vw;
  }

  .product-details-section {
    padding: 80px 1rem 64px;
  }

  .product-details-grid {
    width: min(700px, 100%);
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 560px) {
  .three-side-pouch-banner {
    width: 100%;
  }

  .single-product-section {
    padding: 20px 1rem 44px;
  }

  .single-product-section__title {
    font-size: 2.15rem;
  }

  .single-product-layout {
    min-height: 0;
    margin-top: 24px;
  }

  .single-product-visual {
    width: min(350px, 100%);
    height: 350px;
  }

  .single-product-feature {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }

  .single-product-feature__icon {
    width: 72px;
    height: 72px;
  }

  .single-product-feature__icon svg {
    width: 48px;
    height: 48px;
  }

  .single-product-feature h3 {
    margin-top: 0;
    font-size: clamp(1.45rem, 7vw, 1.8rem);
  }

  .single-product-content > p {
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .product-gallery-section {
    padding: 30px 0 26px;
  }

  .product-gallery-track {
    animation-duration: 22s;
  }

  .product-gallery-card {
    flex-basis: 84vw;
    width: 84vw;
    aspect-ratio: 4 / 3;
  }

  .product-details-section {
    min-height: 0;
    padding: 54px 1rem 48px;
  }

  .product-details-grid {
    gap: 52px;
  }

  .product-details-heading {
    min-height: 72px;
    gap: 18px;
  }

  .product-details-heading__icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .product-details-heading__icon svg {
    width: 48px;
    height: 48px;
  }

  .product-details-heading h2 {
    font-size: 1.8rem;
  }

  .product-details-list {
    margin-top: 24px;
  }

  .product-details-list li {
    padding-left: 27px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery-track {
    animation-play-state: paused;
  }
}
