/* ==========================================================================
   AHS — Powered by Hindustan Steel
   AWARD — additive component library for the new editorial pages
   (Why Choose Us / Collections / Bulk & Custom Orders)

   Loads AFTER style.css and uses its tokens exclusively (--navy, --red,
   --silver, --gray, --border, --radius*, --shadow*, --sp-*, --ease*).
   No new colors are introduced — "chrome" text/glow effects are built
   from the same monochrome scale already in style.css, and the faint
   warm glow reuses the exact rgba(213,48,63,…) accent already present
   in .cta-banner / .btn--accent so it stays a whisper, not a new hue.
   All classes are "aw-" prefixed so nothing here can collide with or
   override an existing site component.
   ========================================================================== */

/* ---- Secondary "explore" strip — connects the 3 new pages without
   touching the shared header/footer used by Home/About/Shop/Contact ---- */
.aw-explore {
  background: var(--silver-light);
  border-bottom: 1px solid var(--border);
}
.aw-explore__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 0;
}
.aw-explore__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-right: 6px;
}
.aw-explore a {
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}
.aw-explore a:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
}
.aw-explore a[aria-current="page"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ---- Chrome / brushed-steel gradient text -------------------------------- */
.aw-chrome {
  background: linear-gradient(
    100deg,
    var(--navy) 0%,
    var(--gray) 28%,
    var(--silver) 44%,
    #ffffff 52%,
    var(--silver) 60%,
    var(--gray) 76%,
    var(--navy) 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aw-shimmer 7s ease-in-out infinite;
}
@keyframes aw-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .aw-chrome { animation: none; background-position: 30% 50%; }
}

/* ---- Editorial hero (unique per page — never a copy of .hero / .page-hero) */
.aw-hero {
  position: relative;
  padding: 76px 0 64px;
  background: var(--white);
  overflow: hidden;
}
.aw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 21, 24, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 55% 65% at 82% 20%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 55% 65% at 82% 20%, #000 0%, transparent 70%);
  pointer-events: none;
}
.aw-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.aw-hero h1 {
  font-size: clamp(36px, 5.2vw, 72px);
  margin-top: 14px;
}
.aw-hero .lede {
  margin-top: 20px;
}
.aw-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.aw-hero__visual {
  position: relative;
  aspect-ratio: 1/1;
}
.aw-hero__visual-frame {
  position: relative;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--silver-light) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.aw-hero__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
  animation: aw-float 6s ease-in-out infinite;
}
@keyframes aw-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .aw-hero__visual-frame img { animation: none; }
}
.aw-hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  z-index: 2;
  animation: aw-badge-in 0.9s var(--ease-out) 0.3s both;
}
.aw-hero__float-card--bl { left: -18px; bottom: 24px; }
.aw-hero__float-card--tr { right: -14px; top: 20px; }
@keyframes aw-badge-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.aw-hero__float-card strong {
  display: block;
  font-size: 20px;
  color: var(--navy);
  line-height: 1;
}
.aw-hero__float-card span {
  font-size: 11.5px;
  color: var(--gray);
}
@media (max-width: 900px) {
  .aw-hero { padding: 48px 0 40px; }
  .aw-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .aw-hero__visual { order: -1; max-width: 340px; margin: 0 auto; }
  .aw-hero__float-card--bl { left: -8px; }
  .aw-hero__float-card--tr { right: -8px; }
}

/* Dark variant of the editorial hero (used by Bulk & Custom Orders) */
.aw-hero--dark {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}
.aw-hero--dark::before { opacity: 0.5; }
.aw-hero--dark::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 55%;
  height: 160%;
  background: radial-gradient(circle, rgba(213, 48, 63, 0.16) 0%, rgba(213, 48, 63, 0) 65%);
  pointer-events: none;
}
.aw-hero--dark h1 { color: var(--white); }
.aw-hero--dark .lede { color: var(--silver); }
.aw-hero--dark .aw-hero__visual-frame {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.aw-hero--dark .aw-hero__float-card {
  background: rgba(19, 20, 22, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.aw-hero--dark .aw-hero__float-card strong { color: var(--white); }
.aw-hero--dark .aw-hero__float-card span { color: var(--silver); }

/* ---- Bento grid ----------------------------------------------------------- */
.aw-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 152px;
  gap: var(--sp-3);
}
.aw-bento__cell {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out), border-color 0.3s ease;
}
.aw-bento__cell:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
  border-color: rgba(32, 33, 36, 0.14);
}
.aw-bento__cell--lg { grid-column: span 2; grid-row: span 2; }
.aw-bento__cell--wide { grid-column: span 2; }
.aw-bento__cell--tall { grid-row: span 2; }
.aw-bento__cell--dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-color: transparent;
}
.aw-bento__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--silver-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.aw-bento__cell--dark .aw-bento__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.aw-bento__cell:hover .aw-bento__icon {
  background: var(--navy);
  color: var(--white);
}
.aw-bento__cell--dark:hover .aw-bento__icon {
  background: rgba(255, 255, 255, 0.18);
}
.aw-bento__icon svg { width: 22px; height: 22px; }
.aw-bento__cell--lg .aw-bento__icon { width: 56px; height: 56px; }
.aw-bento__cell--lg .aw-bento__icon svg { width: 26px; height: 26px; }
.aw-bento__num {
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.aw-bento__cell--lg .aw-bento__num { font-size: 46px; }
.aw-bento__cell--dark .aw-bento__num { color: var(--white); }
.aw-bento__num span { font-size: 20px; color: var(--gray); }
.aw-bento__cell--dark .aw-bento__num span { color: var(--silver); }
.aw-bento__cell h3 {
  font-size: 15px;
  font-weight: 500;
  margin-top: 6px;
}
.aw-bento__cell--lg h3 { font-size: 19px; margin-top: 10px; }
.aw-bento__cell p {
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 4px;
}
.aw-bento__cell--dark p { color: var(--silver); }
@media (max-width: 980px) {
  .aw-bento { grid-template-columns: repeat(2, 1fr); }
  .aw-bento__cell--lg { grid-column: span 2; grid-row: span 1; }
  .aw-bento__cell--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .aw-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .aw-bento__cell--lg,
  .aw-bento__cell--wide,
  .aw-bento__cell--tall { grid-column: span 1; grid-row: span 1; }
  .aw-bento__cell { min-height: 132px; }
}

/* ---- Editorial alternating feature rows (numbered) ------------------------ */
.aw-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.aw-feature-row:first-of-type { padding-top: 0; }
.aw-feature-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.aw-feature-row__media { order: 1; }
.aw-feature-row--reverse .aw-feature-row__media { order: 2; }
.aw-feature-row__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 320px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, var(--silver-light) 0%, var(--white) 100%);
}
.aw-feature-row__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  transition: transform 0.7s var(--ease-out);
}
.aw-feature-row:hover .aw-feature-row__media img { transform: scale(1.06); }
.aw-feature-row__index {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}
.aw-feature-row__index::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--border);
}
.aw-feature-row__body h3 { margin-bottom: 12px; }
.aw-feature-row__body p { color: var(--gray); max-width: 46ch; }
.aw-feature-row__link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.25s ease, gap 0.25s ease;
}
.aw-feature-row__link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.aw-feature-row__link:hover { color: var(--red); gap: 10px; }
.aw-feature-row__link:hover svg { transform: translateX(3px); }
@media (max-width: 900px) {
  .aw-feature-row { grid-template-columns: 1fr; gap: 26px; padding: 36px 0; }
  .aw-feature-row__media { order: -1 !important; }
}

/* Simple numbered rows (no media) — used for compact differentiator lists */
.aw-num-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}
.aw-num-row:last-child { border-bottom: 1px solid var(--border); }
.aw-num-row__index {
  font-size: 15px;
  font-weight: 600;
  color: var(--border);
  transition: color 0.3s ease;
}
.aw-num-row:hover .aw-num-row__index { color: var(--navy); }
.aw-num-row h3 { margin-bottom: 6px; }
.aw-num-row p { color: var(--gray); font-size: 14.5px; max-width: 56ch; }
@media (max-width: 560px) {
  .aw-num-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ---- Process timeline (Bulk & Custom Orders) ------------------------------ */
.aw-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.aw-timeline__step {
  position: relative;
  padding-top: 58px;
}
.aw-timeline__step-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aw-timeline__step::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 40px;
  right: -16px;
  height: 1px;
  background: var(--border);
}
.aw-timeline__step:last-child::after { display: none; }
.aw-timeline__step h3 { font-size: 16px; margin-bottom: 8px; }
.aw-timeline__step p { color: var(--gray); font-size: 13.5px; line-height: 1.6; }
@media (max-width: 900px) {
  .aw-timeline { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5) var(--sp-3); }
  .aw-timeline__step::after { display: none; }
}
@media (max-width: 560px) {
  .aw-timeline { grid-template-columns: 1fr; }
}

/* Dark variant */
.aw-timeline--dark .aw-timeline__step-num { background: var(--white); color: var(--navy); }
.aw-timeline--dark .aw-timeline__step::after { background: rgba(255, 255, 255, 0.16); }
.aw-timeline--dark h3 { color: var(--white); }
.aw-timeline--dark p { color: var(--silver); }

/* ---- Marquee statement ------------------------------------------------------ */
.aw-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.aw-marquee__track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: aw-marquee-scroll 26s linear infinite;
  white-space: nowrap;
}
.aw-marquee__track span {
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
}
.aw-marquee__track span em {
  font-style: normal;
  color: var(--navy);
}
.aw-marquee__track span::after {
  content: "—";
  color: var(--silver);
}
@keyframes aw-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .aw-marquee__track { animation: none; }
}

/* ---- Glass cards ------------------------------------------------------------ */
.aw-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---- Section dividers / labels ---------------------------------------------- */
.aw-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 18px;
}
.aw-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--border);
}

/* ---- Related pages strip (bottom cross-links between the 3 new pages) ------- */
.aw-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.aw-related__card {
  display: block;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out), border-color 0.3s ease;
}
.aw-related__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}
.aw-related__card span.aw-kicker { margin-bottom: 10px; }
.aw-related__card h3 { margin-bottom: 8px; }
.aw-related__card p { color: var(--gray); font-size: 13.5px; }
.aw-related__card .aw-feature-row__link { margin-top: 16px; }
@media (max-width: 900px) {
  .aw-related { grid-template-columns: 1fr; }
}

/* ---- Stat strip — premium minimal, hairline-divided matrix
   (Why Choose Us: "What Export Quality actually means") ---------------- */
.aw-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border); /* shows through the 1px gaps as hairline rules */
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.aw-stat-strip__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 38px 30px;
  background: var(--white);
  transition: background-color 0.25s ease;
}
.aw-stat-strip__item:hover {
  background: var(--silver-light);
}
.aw-stat-strip__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--silver-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}
.aw-stat-strip__item:hover .aw-stat-strip__icon {
  transform: translateY(-2px);
}
.aw-stat-strip__icon svg { width: 19px; height: 19px; }
.aw-stat-strip__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aw-stat-strip__num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.aw-stat-strip__num span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--gray);
}
.aw-stat-strip__item h3 {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.45;
  margin: 0;
}
/* Qualitative items (no number) — promote the label to the value slot so
   every cell keeps the same vertical rhythm. */
.aw-stat-strip__item:not(:has(.aw-stat-strip__num)) h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .aw-stat-strip { grid-template-columns: repeat(2, 1fr); }
  .aw-stat-strip__item { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .aw-stat-strip { grid-template-columns: 1fr; }
  .aw-stat-strip__item {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 22px 20px;
  }
  .aw-stat-strip__icon { flex: 0 0 auto; }
  .aw-stat-strip__num { font-size: 26px; }
}

/* ---- Differentiator cards — ghost-numbered grid (Why Choose Us: "Why buyers keep coming back") */
.aw-diff-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
.aw-diff-card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out), border-color 0.3s ease;
}
.aw-diff-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
  border-color: rgba(32, 33, 36, 0.14);
}
.aw-diff-card__num {
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  color: var(--silver-light);
  z-index: 0;
  user-select: none;
}
.aw-diff-card__icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--silver-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.aw-diff-card__icon svg { width: 21px; height: 21px; }
.aw-diff-card:hover .aw-diff-card__icon {
  background: var(--navy);
  color: var(--white);
}
.aw-diff-card h3 { position: relative; z-index: 1; margin-bottom: 8px; }
.aw-diff-card p { position: relative; z-index: 1; color: var(--gray); font-size: 14.5px; max-width: 40ch; }
@media (max-width: 640px) {
  .aw-diff-cards { grid-template-columns: 1fr; }
}

/* ---- Benefit grid — underline-accent cards (Bulk & Custom Orders: "Built for repeat, high-volume orders") */
.aw-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.aw-benefit-card {
  position: relative;
  padding: 30px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.aw-benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 0 0 3px 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.aw-benefit-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}
.aw-benefit-card:hover::before { transform: scaleX(1); }
.aw-benefit-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--silver-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.aw-benefit-card__icon svg { width: 22px; height: 22px; }
.aw-benefit-card:hover .aw-benefit-card__icon {
  background: var(--navy);
  color: var(--white);
}
.aw-benefit-card h3 { margin-bottom: 8px; font-size: 16px; }
.aw-benefit-card p { color: var(--gray); font-size: 13.5px; }
@media (max-width: 900px) {
  .aw-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .aw-benefit-grid { grid-template-columns: 1fr; }
}

/* ---- Utility ------------------------------------------------------------------ */
.aw-center { text-align: center; margin-left: auto; margin-right: auto; }
.aw-max-640 { max-width: 640px; }
.aw-max-720 { max-width: 720px; }
