/* =========================================================
   Chetak Ply — Component Styles (v2)
   Consumes tokens from chetak-tokens.css.
   ========================================================= */

/* ---------------------------------------------------------
   Inline SVG sizing defaults for icon-slot classes.
   --------------------------------------------------------- */
.chetak-header__nav-caret svg,
.chetak-mega__compare svg,
.chetak-product-card__arrow svg,
.chetak-mobile__toggle-icon svg {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
}

/* ---------------------------------------------------------
   Buttons — red-rectangle primary + ink-border ghost.
   --------------------------------------------------------- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 13px;
  letter-spacing: var(--ls-narrow);
  text-transform: uppercase;
  line-height: 1;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--duration-fast) var(--ease),
    color var(--duration-fast) var(--ease),
    transform var(--duration-fast) var(--ease),
    border-color var(--duration-fast) var(--ease),
    box-shadow var(--duration-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.c-btn--primary {
  background: var(--c-red);
  color: var(--c-white);
}
.c-btn--primary:hover,
.c-btn--primary:focus-visible {
  background: var(--c-red-deep);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(225, 37, 27, 0.22);
}

.c-btn--ghost {
  background: var(--c-white);
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.c-btn--ghost:hover,
.c-btn--ghost:focus-visible {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
}

.c-btn--ghost-dark {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}
.c-btn--ghost-dark:hover,
.c-btn--ghost-dark:focus-visible {
  background: var(--c-white);
  color: var(--c-ink);
}

.c-btn--small {
  padding: 10px 18px;
  font-size: 12px;
}

.c-btn--large {
  padding: 18px 30px;
  font-size: 14px;
}

/* ---------------------------------------------------------
   Section scaffolding
   --------------------------------------------------------- */
.c-container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.c-container--wide {
  max-width: 1440px;
}

.c-section {
  padding-block: clamp(48px, 8vw, 120px);
}

/* ---------------------------------------------------------
   Scroll reveal
   --------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--duration-slow) var(--ease),
    transform var(--duration-slow) var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------------------------------------------------------
   HEADER — white bg, red-rectangle CTA, Archivo nav.
   --------------------------------------------------------- */
.chetak-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line-soft);
  transition:
    height var(--duration-fast) var(--ease),
    box-shadow var(--duration-fast) var(--ease);
}
.chetak-header.is-scrolled {
  height: 64px;
  box-shadow: var(--shadow-header);
}

body {
  padding-top: 80px;
  transition: padding-top var(--duration-fast) var(--ease);
}
body.has-scrolled { padding-top: 64px; }

.chetak-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.chetak-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 22px;
  letter-spacing: 0.04em;
}

.chetak-header__brand-mark {
  display: inline-block;
  height: 44px;
  color: var(--c-red);
  line-height: 0;
}
.chetak-header__brand-mark svg,
.chetak-header__brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}
.chetak-header.is-scrolled .chetak-header__brand-mark { height: 36px; }

.chetak-header__nav {
  display: none;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chetak-header__nav-link {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

.chetak-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--c-red);
  transition: width var(--duration-fast) var(--ease);
}

.chetak-header__nav-link:hover,
.chetak-header__nav-link:focus-visible,
.chetak-header__nav-item.is-active .chetak-header__nav-link,
.chetak-header__nav-item.is-open .chetak-header__nav-link {
  color: var(--c-red);
}
.chetak-header__nav-link:hover::after,
.chetak-header__nav-link:focus-visible::after,
.chetak-header__nav-item.is-active .chetak-header__nav-link::after,
.chetak-header__nav-item.is-open .chetak-header__nav-link::after {
  width: 100%;
}

.chetak-header__nav-item--has-mega { position: static; }

.chetak-header__nav-caret {
  display: inline-block;
  margin-left: 4px;
  transition: transform var(--duration-fast) var(--ease);
}
.chetak-header__nav-item.is-open .chetak-header__nav-caret { transform: rotate(180deg); }

/* Mega-dropdown */
.chetak-header__mega {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  box-shadow: 0 12px 32px rgba(11, 11, 12, 0.06);
  padding: 40px 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
  z-index: 99;
}
.chetak-header__nav-item.is-open .chetak-header__mega,
.chetak-header__mega:hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chetak-mega {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.chetak-mega__col h4 {
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 12px;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-red);
  margin: 0 0 16px;
}

.chetak-mega__products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chetak-mega__product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--c-line-soft);
  text-decoration: none;
  color: var(--c-ink);
  transition:
    border-color var(--duration-fast) var(--ease),
    background-color var(--duration-fast) var(--ease),
    transform var(--duration-fast) var(--ease);
}
.chetak-mega__product:hover {
  border-color: var(--c-red);
  background: var(--c-off-white);
  transform: translateY(-1px);
}

.chetak-mega__thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  background: var(--c-blue-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 18px;
  color: var(--c-blue-deep);
}

.chetak-mega__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.chetak-mega__name {
  font-family: var(--font-display);
  font-weight: var(--fw-x);
  font-size: 16px;
  color: var(--c-ink);
}

.chetak-mega__is {
  display: inline-block;
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-red);
}

.chetak-mega__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chetak-mega__new {
  display: block;
  padding: 20px;
  background: var(--c-blue-deep);
  color: var(--c-white);
  text-decoration: none;
  border-left: 3px solid var(--c-red);
  transition: transform var(--duration-fast) var(--ease);
}
.chetak-mega__new:hover { transform: translateY(-2px); }

.chetak-mega__new-eyebrow {
  display: inline-block;
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 11px;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 6px;
}

.chetak-mega__new-title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 22px;
  color: var(--c-white);
  margin: 0 0 4px;
}

.chetak-mega__new-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.chetak-mega__compare {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-red);
  text-decoration: none;
}
.chetak-mega__compare:hover { color: var(--c-ink); }

/* Header right group */
.chetak-header__cta-group {
  display: none;
  align-items: center;
  gap: 16px;
}

.chetak-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 13px;
  color: var(--c-ink);
  text-decoration: none;
}
.chetak-header__phone:hover { color: var(--c-red); }
.chetak-header__phone svg { width: 14px; height: 14px; }

/* Hamburger */
.chetak-header__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--c-ink);
}
.chetak-header__burger-lines {
  position: relative;
  width: 22px;
  height: 16px;
}
.chetak-header__burger-lines span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms var(--ease), top 220ms var(--ease), opacity 160ms var(--ease);
}
.chetak-header__burger-lines span:nth-child(1) { top: 0; }
.chetak-header__burger-lines span:nth-child(2) { top: 7px; }
.chetak-header__burger-lines span:nth-child(3) { top: 14px; }

body.chetak-nav-open .chetak-header__burger-lines span:nth-child(1) { top: 7px; transform: rotate(45deg); }
body.chetak-nav-open .chetak-header__burger-lines span:nth-child(2) { opacity: 0; }
body.chetak-nav-open .chetak-header__burger-lines span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ---------------------------------------------------------
   Mobile overlay
   --------------------------------------------------------- */
.chetak-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--c-white);
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  overflow-y: auto;
  padding: 96px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
}
body.chetak-nav-open .chetak-mobile {
  transform: translateX(0);
  visibility: visible;
}

.chetak-mobile__list {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chetak-mobile__item {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 320ms var(--ease),
    transform 320ms var(--ease);
  transition-delay: calc(var(--i, 0) * 40ms);
}
body.chetak-nav-open .chetak-mobile__item {
  opacity: 1;
  transform: translateY(0);
}

.chetak-mobile__link {
  font-family: var(--font-display);
  font-weight: var(--fw-x);
  font-size: 22px;
  color: var(--c-ink);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}
.chetak-mobile__link:hover,
.chetak-mobile__link:focus-visible { color: var(--c-red); }

.chetak-mobile__sub {
  list-style: none;
  margin: 12px 0 0;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--c-red);
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chetak-mobile__item.is-open .chetak-mobile__sub {
  max-height: 420px;
  margin-top: 14px;
}

.chetak-mobile__sub-link {
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-grey);
  text-decoration: none;
}

.chetak-mobile__toggle {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chetak-mobile__toggle-icon {
  transition: transform var(--duration-fast) var(--ease);
}
.chetak-mobile__item.is-open .chetak-mobile__toggle-icon { transform: rotate(180deg); }

.chetak-mobile__footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chetak-mobile__hindi {
  font-family: var(--font-hindi);
  font-style: italic;
  font-size: 20px;
  color: var(--c-red);
  text-align: center;
  margin-top: 24px;
}

body.chetak-nav-open { overflow: hidden; }

@media (min-width: 1025px) {
  .chetak-header__nav { display: flex; }
  .chetak-header__cta-group { display: inline-flex; }
  .chetak-header__burger { display: none; }
  .chetak-mobile { display: none; }
}

/* ---------------------------------------------------------
   SECTION HEADER (saved template 3a)
   --------------------------------------------------------- */
.chetak-section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.chetak-section-header--center {
  text-align: center;
  align-items: center;
}

.chetak-section-header__eyebrow {
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 12px;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-red);
}

.chetak-section-header__heading {
  font-family: var(--font-display);
  font-weight: var(--fw-x);
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  color: var(--c-ink);
  margin: 0;
}

.chetak-section-header__rule {
  width: 64px;
  height: 2px;
  background: var(--c-red);
  border: 0;
  margin: 4px 0 0;
}
.chetak-section-header--center .chetak-section-header__rule { margin: 4px auto 0; }

.chetak-section-header__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-grey);
  max-width: 60ch;
  margin: 0;
}
.chetak-section-header--center .chetak-section-header__sub { margin-inline: auto; }

/* ---------------------------------------------------------
   PRODUCT CARD (saved template 3b)
   --------------------------------------------------------- */
.chetak-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  overflow: hidden;
  text-decoration: none;
  color: var(--c-ink);
  transition:
    transform var(--duration-normal) var(--ease),
    box-shadow var(--duration-normal) var(--ease),
    border-color var(--duration-normal) var(--ease);
  aspect-ratio: 1 / 1.2;
  min-height: 420px;
}
.chetak-product-card:hover,
.chetak-product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--c-red);
}

.chetak-product-card__image {
  flex: 1;
  background: var(--c-off-white);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.chetak-product-card__image-inner {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--c-red);
  letter-spacing: -0.02em;
  transition: transform 400ms var(--ease);
}
.chetak-product-card:hover .chetak-product-card__image-inner { transform: scale(1.04); }

.chetak-product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chetak-product-card__is {
  display: inline-block;
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-red);
  background: var(--c-blue-soft);
  padding: 6px 10px;
  width: fit-content;
}

.chetak-product-card__name {
  font-family: var(--font-display);
  font-weight: var(--fw-x);
  font-size: 26px;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.chetak-product-card__use {
  font-family: var(--font-body);
  font-weight: var(--fw-reg);
  font-size: 14px;
  color: var(--c-grey);
  margin: 0;
}

.chetak-product-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
}

.chetak-product-card__warranty {
  font-family: var(--font-narrow);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-red);
  border-bottom: 1px solid var(--c-red);
  padding-bottom: 2px;
}

.chetak-product-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink);
  transition: color var(--duration-fast) var(--ease);
}
.chetak-product-card:hover .chetak-product-card__arrow { color: var(--c-red); }

/* Compare-select button (top-right) */
.chetak-product-card__compare-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-ink);
  cursor: pointer;
  font: inherit;
  padding: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: all var(--duration-fast) var(--ease);
}
.chetak-product-card__compare-btn:hover {
  border-color: var(--c-red);
  color: var(--c-red);
}
.chetak-product-card.is-in-compare .chetak-product-card__compare-btn {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
}
.chetak-product-card__compare-btn svg { width: 14px; height: 14px; }

/* New Launch pulse badge */
.chetak-product-card__new {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.chetak-product-card__new::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid var(--c-red);
  opacity: 0.5;
  animation: chetak-pulse 1.8s ease-out infinite;
}
@keyframes chetak-pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Filter transition states. !important resists LiteSpeed's unused-CSS
   pruning, which runs against initial-render DOM and can drop rules
   that only apply after a user interaction. */
.chetak-range__item.is-hidden,
.chetak-product-card.is-hidden {
  display: none !important;
}

/* ---------------------------------------------------------
   STAT COUNTER (saved template 3c)
   --------------------------------------------------------- */
.chetak-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chetak-stat__rule {
  width: 64px;
  height: 2px;
  background: var(--c-red);
  margin-bottom: 4px;
}

.chetak-stat__number-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.chetak-stat__number {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--c-red);
}

.chetak-stat__suffix {
  font-family: var(--font-display);
  font-weight: var(--fw-x);
  font-size: 0.55em;
  color: var(--c-red);
  margin-left: 2px;
}

.chetak-stat__label {
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink);
}

/* ---------------------------------------------------------
   CTA BANNER (saved template 3d)
   --------------------------------------------------------- */
.chetak-cta {
  padding: clamp(48px, 10vw, 200px) 0;
  text-align: center;
  position: relative;
}

.chetak-cta--dark {
  background: var(--c-blue-deep);
  color: var(--c-white);
}
.chetak-cta--light {
  background: var(--c-off-white);
  color: var(--c-ink);
}

.chetak-cta__inner {
  max-width: 960px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.chetak-cta__eyebrow {
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 12px;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-red);
}

.chetak-cta__heading {
  font-family: var(--font-display);
  font-weight: var(--fw-x);
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: inherit;
}
.chetak-cta--light .chetak-cta__heading { color: var(--c-ink); }
.chetak-cta--dark  .chetak-cta__heading { color: var(--c-white); }

.chetak-cta__body {
  font-size: 17px;
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
  color: inherit;
  opacity: 0.9;
}

.chetak-cta__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.chetak-cta__watermark {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  opacity: 0.04;
  color: var(--c-white);
  pointer-events: none;
  z-index: 1;
}
.chetak-cta__watermark svg { width: 100%; height: auto; }

/* ---------------------------------------------------------
   TESTIMONIAL CARD (saved template 3e)
   --------------------------------------------------------- */
.chetak-testimonial {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  padding: 40px 32px 32px;
  max-width: 560px;
}

.chetak-testimonial__mark {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 48px;
  height: 48px;
  color: var(--c-red);
}
.chetak-testimonial__mark svg { width: 100%; height: 100%; display: block; }

.chetak-testimonial__quote {
  font-family: var(--font-display);
  font-weight: var(--fw-med);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--c-ink);
  margin: 40px 0 24px;
}

.chetak-testimonial__attr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chetak-testimonial__avatar {
  width: 40px;
  height: 40px;
  background: var(--c-blue-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: var(--fw-x);
  font-size: 14px;
  color: var(--c-blue-deep);
}

.chetak-testimonial__name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 14px;
  color: var(--c-ink);
  line-height: 1.2;
}

.chetak-testimonial__role {
  font-family: var(--font-narrow);
  font-weight: var(--fw-reg);
  font-size: 12px;
  color: var(--c-grey);
  line-height: 1.2;
}

/* ---------------------------------------------------------
   FOOTER — Blue-deep bg, white logo variant.
   --------------------------------------------------------- */
.chetak-footer {
  background: var(--c-blue-deep);
  color: var(--c-white);
  font-family: var(--font-body);
}

.chetak-footer__main { padding: clamp(48px, 7vw, 88px) 0 48px; }

.chetak-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 640px) { .chetak-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .chetak-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.chetak-footer__brand-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 26px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.chetak-footer__brand-mark {
  display: inline-block;
  height: 52px;
  color: var(--c-white);
  line-height: 0;
}
.chetak-footer__brand-mark svg,
.chetak-footer__brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}

.chetak-footer__hindi {
  font-family: var(--font-hindi);
  font-style: italic;
  font-size: 20px;
  color: var(--c-red);
  margin: 0 0 16px;
}

.chetak-footer__descriptor {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 24px;
  max-width: 42ch;
}

.chetak-footer__social { display: inline-flex; gap: 10px; }
.chetak-footer__social a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--c-white);
  transition: background var(--duration-fast) var(--ease),
              color var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease);
}
.chetak-footer__social a:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
}
.chetak-footer__social svg { width: 14px; height: 14px; }

.chetak-footer__col-heading {
  font-family: var(--font-narrow);
  font-weight: var(--fw-bold);
  font-size: 12px;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-red);
  margin: 0 0 18px;
}

.chetak-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chetak-footer__menu a {
  color: var(--c-white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.88;
  transition: color var(--duration-fast) var(--ease), opacity var(--duration-fast) var(--ease);
}
.chetak-footer__menu a:hover { color: var(--c-red); opacity: 1; }

.chetak-footer__address {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.chetak-footer__address strong { color: var(--c-white); font-weight: var(--fw-mid); }
.chetak-footer__address a { color: var(--c-white); text-decoration: none; }
.chetak-footer__address a:hover { color: var(--c-red); }

.chetak-footer__legal {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.5);
  min-height: 40px;
  display: flex;
  align-items: center;
}

.chetak-footer__legal-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-block: 10px;
  width: 100%;
}

@media (min-width: 720px) {
  .chetak-footer__legal-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.chetak-footer__legal-copy,
.chetak-footer__legal-links { font-size: 12px; }
.chetak-footer__legal-links { display: inline-flex; gap: 16px; }
.chetak-footer__legal-links a { color: inherit; text-decoration: none; }
.chetak-footer__legal-links a:hover { color: var(--c-red); }
