/* ============================================
   MS LIFE STEEL — Landing Page Stylesheet
   Palette extracted from logo:
     Orange  #F26522  (helmet outline / primary)
     Yellow  #FDB913  (helmet body / highlight)
     Black   #0E0E10  (wordmark / dark surfaces)
   Type: Poppins (display) + Roboto (body)
   ============================================ */

:root {
  --orange: #f26522;
  --orange-600: #e4571a;
  --orange-700: #c8460f;
  --yellow: #fdb913;
  --yellow-600: #e8a500;
  --black: #0e0e10;
  --ink: #1a1a1f;
  --ink-2: #2c2c34;
  --muted: #6b6b75;
  --line: #e6e6eb;
  --bg: #ffffff;
  --bg-soft: #f7f7f9;
  --bg-cream: #fff8eb;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm:
    0 1px 3px rgba(14, 14, 16, 0.06), 0 1px 2px rgba(14, 14, 16, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 14, 16, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 14, 16, 0.14);
  --shadow-orange: 0 14px 30px rgba(242, 101, 34, 0.32);

  --container: 1240px;
  --gutter: 24px;

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}
.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-600) 100%);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(242, 101, 34, 0.42);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn--ghost-dark {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--link {
  color: var(--orange);
  font-weight: 600;
  font-family: var(--font-display);
  padding: 4px 0;
}
.btn--link:hover {
  color: var(--orange-700);
}

/* ---------- UTILITY BAR ---------- */
.utility-bar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.utility-bar__left,
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hide-sm {
  display: inline-flex;
}
.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.utility-link:hover {
  color: var(--yellow);
}
.utility-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
}
.utility-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(253, 185, 19, 0.14);
  border: 1px solid rgba(253, 185, 19, 0.3);
  color: var(--yellow);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lang-switch {
  display: flex;
  gap: 2px;
}
.lang-switch button {
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 4px;
}
.lang-switch button.lang-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.25s,
    padding 0.25s;
}
.header.is-scrolled {
  box-shadow: 0 4px 24px rgba(14, 14, 16, 0.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.header__logo img {
  height: 72px;
  width: auto;
}
.header__nav {
  display: flex;
  gap: 34px;
}
.header__nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.header__nav a:hover {
  color: var(--ink);
}
.header__nav a:hover::after {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__menu span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: #fff;
  overflow: hidden;
  padding: 70px 0 90px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 75% 40%,
      rgba(242, 101, 34, 0.25),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 15% 90%,
      rgba(253, 185, 19, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #0e0e10 0%, #18181c 100%);
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero__content {
  color: #fff;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(253, 185, 19, 0.12);
  border: 1px solid rgba(253, 185, 19, 0.32);
  color: var(--yellow);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.kicker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(253, 185, 19, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(253, 185, 19, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(253, 185, 19, 0.05);
  }
}

.hero__title {
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  margin: 22px 0 22px;
  color: #fff;
  letter-spacing: -0.025em;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
.text-orange {
  color: var(--orange);
}

.hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero__sub strong {
  color: #fff;
  font-weight: 500;
}

.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 580px;
}
.chip {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.chip:hover {
  border-color: rgba(253, 185, 19, 0.4);
  transform: translateY(-2px);
}
.chip strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 2px;
}

/* ---------- HERO QUOTE FORM ---------- */
.quote-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.quote-card__top {
  margin-bottom: 22px;
}
.quote-card__badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--bg-cream);
  color: var(--orange-700);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.quote-card__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px;
}
.quote-card__sub {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-form--final {
  padding: 36px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.quote-form--final h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.field input,
.field select {
  padding: 13px 14px;
  background: #fafafc;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--ink);
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.field input::placeholder {
  color: #b5b5bd;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.1);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field--phone {
  display: flex;
  align-items: center;
  background: #fafafc;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.field--phone:focus-within {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.1);
}
.field--phone span {
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.04);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-right: 1.5px solid var(--line);
}
.field--phone input {
  border: none;
  background: transparent;
  box-shadow: none;
}
.field--phone input:focus {
  box-shadow: none;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.form-note svg {
  color: #4caf50;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: linear-gradient(135deg, #18181c 0%, #0e0e10 100%);
  color: #fff;
  border-bottom: 3px solid var(--orange);
  padding: 38px 0;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.counter {
  position: relative;
}
.counter:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 20%;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.12);
}
.counter__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.counter__num sup {
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  vertical-align: super;
}
.counter__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 100px 0;
}
.section--alt {
  background: var(--bg-soft);
}
.section--narrow {
  padding: 50px 0;
}
.section--dark {
  background: var(--black);
  color: #fff;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 25px;
}
.section-head--light p {
  color: rgba(255, 255, 255, 0.7);
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-cream);
  color: var(--orange-700);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section--dark .eyebrow {
  background: rgba(253, 185, 19, 0.12);
  color: var(--yellow);
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ---------- PRODUCT CARDS ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  position: relative;
  background: #fff;
  padding: 30px 26px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.product-card__tag {
  display: inline-block;
  padding: 4px 11px;
  background: var(--bg-soft);
  color: var(--ink-2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-card h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--ink) 30%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  min-height: 42px;
}
.product-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px;
  padding: 18px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.product-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.product-specs li strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
}
.link-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
  padding: 0;
  transition: gap 0.2s;
}
.link-btn:hover {
  color: var(--orange-700);
}

.product-card--featured {
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  border-color: var(--orange);
  box-shadow: 0 14px 40px rgba(242, 101, 34, 0.12);
}
.product-card--featured .product-card__tag {
  background: var(--orange);
  color: #fff;
}
.product-card__ribbon {
  position: absolute;
  top: 18px;
  right: -8px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 4px 0 0 4px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px rgba(242, 101, 34, 0.3);
}
.product-card__ribbon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid var(--orange-700);
  border-right: 8px solid transparent;
}
.link-btn--filled {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-orange);
}
.link-btn--filled:hover {
  background: var(--orange-700);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- WHY GRID ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.why-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe4c2 100%);
  color: var(--orange);
  border-radius: 12px;
  margin-bottom: 18px;
  transition: transform 0.3s;
}
.why-card__icon svg {
  width: 24px;
  height: 24px;
}
.why-card:hover .why-card__icon {
  transform: rotate(-6deg) scale(1.05);
}
.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}
.why-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- PROCESS ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 40px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.process__step {
  position: relative;
  background: #fff;
  padding: 22px 16px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
  z-index: 1;
}
.process__step:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}
.process__step:hover .process__num {
  background: var(--orange);
  color: #fff;
}
.process__step h5 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 4px;
}
.process__step p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.process__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- PROJECTS ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.project {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(14, 14, 16, 0.85) 100%
  );
  pointer-events: none;
}
.project:hover img {
  transform: scale(1.08);
}
.project figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}
.project figcaption span {
  display: block;
  font-size: 12px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.project figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin-top: 2px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.logo-strip span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.logo-strip span:hover {
  color: var(--yellow);
}

/* ---------- CALCULATOR ---------- */
.calc-section {
  background: linear-gradient(135deg, #fff8eb 0%, #ffffff 60%);
}
.calc {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.calc__left h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
}
.calc__left p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
}
.calc__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.calc__benefits svg {
  width: 16px;
  height: 16px;
  padding: 4px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.calc__form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
}
.calc__form h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 22px;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.testimonial footer strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}
.testimonial footer span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- CERTIFICATIONS ---------- */
.cert-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.cert {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  padding: 14px 8px;
  border-right: 1px solid var(--line);
  line-height: 1.4;
}
.cert:last-child {
  border-right: none;
}
.cert small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ---------- DEALER LOCATOR ---------- */
.dealer-section {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
}
.dealer-section .eyebrow {
  background: rgba(253, 185, 19, 0.12);
  color: var(--yellow);
}
.dealer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.dealer h2 {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 38px);
  margin: 14px 0 16px;
}
.dealer p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 18px;
  max-width: 480px;
}
.dealer__form label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.dealer__input-row {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  transition: border-color 0.25s;
}
.dealer__input-row:focus-within {
  border-color: var(--yellow);
}
.dealer__input-row input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  outline: none;
  letter-spacing: 0.04em;
}
.dealer__input-row input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.faq details[open] {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 26px;
  height: 26px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease;
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq details[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq details p {
  padding: 0 26px 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-700) 100%);
  color: #fff;
  padding: 90px 0;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(253, 185, 19, 0.25),
      transparent 50%
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.2), transparent 50%);
}
.final-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.final-cta__text h2 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.final-cta__text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 26px;
  max-width: 500px;
}
.final-cta__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.final-cta__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #fff;
}
.final-cta__list li::before {
  content: "";
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M20 6L9 17l-5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ---------- CONTACT BAND ---------- */
.contact-band {
  background: var(--bg-soft);
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.contact-band__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.contact-block h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 14px;
}
.contact-block p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.contact-block a {
  color: var(--ink);
  transition: color 0.2s;
}
.contact-block a:hover {
  color: var(--orange);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer__brand img {
  height: 90px;
  margin-bottom: 18px;
}
.footer__brand p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.socials a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.footer__col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  transition:
    color 0.2s,
    padding 0.2s;
}
.footer__col a:hover {
  color: var(--yellow);
  padding-left: 4px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 13px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom a:hover {
  color: var(--yellow);
}

/* ---------- MOBILE STICKY BAR ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(14, 14, 16, 0.08);
  padding: 8px;
  gap: 8px;
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  background: var(--bg-soft);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
}
.mobile-bar__btn--wa {
  background: #25d366;
  color: #fff;
}
.mobile-bar__btn--cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
  color: #fff;
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid #4caf50;
  transform: translateY(120%);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.4s;
  max-width: 360px;
}
.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.toast svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: #e8f5e9;
  color: #4caf50;
  border-radius: 50%;
}
.toast strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.toast span {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NEW SECTIONS — Real MS Life content
   ============================================ */

/* Hero adjustments */
.btn--play .play-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 50%;
  color: #fff;
}
.kicker--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* ---------- ABOUT SNAPSHOT ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 70px;
  align-items: center;
}
.about__media {
  position: relative;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
}
.about__badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-700) 100%);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(242, 101, 34, 0.4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__badge strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.about__badge span {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about__stat {
  position: absolute;
  top: 22px;
  right: -30px;
  background: #fff;
  border: 2px solid var(--yellow);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.about__stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.about__stat span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.about__content h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin: 14px 0 22px;
  letter-spacing: -0.02em;
}
.about__content .lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.about__content p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 22px;
}
.about__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 0 0 28px;
}
.about__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.about__bullets svg {
  width: 14px;
  height: 14px;
  padding: 4px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- 4-PRODUCT GRID ---------- */
.prod4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.prod4 {
  position: relative;
  background: #fff;
  padding: 36px 28px 32px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.prod4:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.prod4__icon {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe4c2 100%);
  color: var(--orange);
  border-radius: 22px;
  margin-bottom: 22px;
  transition:
    transform 0.3s,
    background 0.3s;
}
.prod4__icon svg {
  width: 44px;
  height: 44px;
}
.prod4:hover .prod4__icon {
  transform: rotate(-4deg) scale(1.05);
}
.prod4 h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.prod4 p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.6;
  min-height: 52px;
}
.prod4--featured {
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  border-color: var(--orange);
  box-shadow: 0 14px 40px rgba(242, 101, 34, 0.15);
  transform: translateY(-6px);
}
.prod4--featured .prod4__icon {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #fff;
}
.prod4__ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

/* ---------- TMT DETAIL — 8 ADVANTAGES ---------- */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}
.adv-card {
  background: #fff;
  padding: 28px 24px 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.adv-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.adv-card__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--orange);
  background: var(--bg-cream);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.adv-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}
.adv-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ---------- SPEC TABLE ---------- */
.spec-table-wrap {
  background: linear-gradient(135deg, #18181c 0%, #0e0e10 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(253, 185, 19, 0.12);
}
.spec-table-wrap h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 24px;
  text-align: center;
}
.spec-table {
  overflow-x: auto;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}
.spec-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.spec-table th {
  background: rgba(253, 185, 19, 0.1);
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.spec-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.spec-table tr:last-child td {
  border-bottom: none;
}
.spec-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.spec-table td:first-child {
  font-weight: 500;
  color: #fff;
}

/* ---------- CUT & BEND ---------- */
.cnb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cnb__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.cnb__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cnb__overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}
.cnb__overlay span {
  display: block;
  font-size: 11px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cnb__overlay strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.cnb__content h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
}
.cnb__content > p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 26px;
  line-height: 1.65;
}
.cnb__advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin: 0 0 26px;
}
.cnb__advantages li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.25s;
}
.cnb__advantages li:hover {
  border-color: var(--orange);
}
.cnb__advantages li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.cnb__shapes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.shape-pill {
  padding: 7px 14px;
  background: var(--bg-cream);
  color: var(--orange-700);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* ---------- INTEGRATED PLANT / PROCESS FLOW ---------- */
.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 60px;
}
.pf-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px 16px 20px;
  text-align: center;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.25s,
    background 0.25s;
}
.pf-step:hover {
  border-color: var(--yellow);
  background: rgba(253, 185, 19, 0.06);
  transform: translateY(-3px);
}
.pf-step__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 185, 19, 0.1);
  color: var(--yellow);
  border-radius: 14px;
}
.pf-step__icon svg {
  width: 26px;
  height: 26px;
}
.pf-step__num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
}
.pf-step h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
}
.pf-step p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.4;
}
.pf-arrow {
  color: rgba(253, 185, 19, 0.5);
  font-size: 22px;
  font-weight: bold;
}

.plant-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pf {
  text-align: center;
  padding: 18px;
}
.pf strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pf span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- CORPORATE VIDEO ---------- */
.video-section {
  background: var(--bg-soft);
}
.video {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.video__text h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
}
.video__text p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 26px;
  line-height: 1.65;
}
.video__player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-lg);
}
.video__player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}
.video__player:hover img {
  transform: scale(1.04);
  filter: brightness(0.7);
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(242, 101, 34, 0.5);
  transition: transform 0.25s;
}
.video__play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(242, 101, 34, 0.4);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.video__player:hover .video__play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video__caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: #fff;
}
.video__caption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}
.video__caption span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- VISION / MISSION / PURPOSE ---------- */
.vmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vmp {
  background: #fff;
  padding: 40px 32px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.vmp:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.vmp__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe4c2 100%);
  color: var(--orange);
  border-radius: 22px;
  transition: transform 0.3s;
}
.vmp__icon svg {
  width: 36px;
  height: 36px;
}
.vmp:hover .vmp__icon {
  transform: rotate(-6deg) scale(1.05);
}
.vmp h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
}
.vmp p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.vmp--featured {
  background: linear-gradient(180deg, #18181c 0%, #0e0e10 100%);
  border-color: transparent;
  color: #fff;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.vmp--featured h3 {
  color: #fff;
}
.vmp--featured p {
  color: rgba(255, 255, 255, 0.75);
}
.vmp--featured .vmp__icon {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #fff;
}

/* ---------- VALUES GRID ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}
.value-card__bullet {
  display: block;
  width: 32px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 2px;
  margin-bottom: 16px;
}
.value-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.value-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.value-card:nth-child(7) {
  grid-column: 2 / span 2;
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- AWARDS ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.award {
  position: relative;
  background: #fff;
  padding: 32px 30px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  overflow: hidden;
}
.award::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.award:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.award:hover::before {
  transform: scaleX(1);
}
.award__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--ink), #2a2a35);
  color: var(--yellow);
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.award h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
}
.award p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ---------- CLIENTS STRIP ---------- */
.clients-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 0;
  margin-bottom: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
.cs-row span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  transition:
    color 0.25s,
    transform 0.25s;
}
.cs-row span:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}
.approved-by {
  text-align: center;
}
.approved-by__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
}
.approved-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
}
.approved-list span {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-weight: 500;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.approved-list span:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ---------- DEALER NETWORK + INDIA MAP ---------- */
.dealer__content h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: -0.02em;
}
.dealer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}
.ds {
  text-align: center;
  position: relative;
}
.ds:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 20%;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.1);
}
.ds strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--yellow);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.ds strong sup {
  font-size: 16px;
  vertical-align: super;
  color: var(--orange);
}
.ds span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
  display: block;
}
.india-map {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.india-map svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(242, 101, 34, 0.25));
}
.india-map__caption {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- PRICE / RECOMMENDED PRICES ---------- */
.price-section {
  background: linear-gradient(135deg, #fff8eb 0%, #ffffff 60%);
}
.price {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.price__left h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
}
.price__left > p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 26px;
}
.price__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
}
.price__benefits svg {
  width: 16px;
  height: 16px;
  padding: 4px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.price__form {
  background: #fff;
  padding: 38px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
}
.price__form h3 {
  font-size: 22px;
  margin-bottom: 6px;
  text-align: center;
}
.form-note--center {
  justify-content: center;
  text-align: center;
}

/* ---------- CONTACT BAND with icons ---------- */
.contact-block {
  position: relative;
  padding-left: 0;
}
.contact-block__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe4c2 100%);
  color: var(--orange);
  border-radius: 14px;
  margin-bottom: 14px;
}
.contact-block__icon svg {
  width: 22px;
  height: 22px;
}
.contact-block h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-block p {
  font-size: 14px;
}

/* ---------- FINAL CTA tweaks ---------- */
.final-cta__text .kicker {
  margin-bottom: 18px;
}
.final-cta__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.final-cta__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    transform 0.25s;
}
.final-cta__contact a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* ---------- FOOTER tagline ---------- */
.footer__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--yellow);
  margin: 0 0 8px !important;
  line-height: 1.4;
}
.footer__tagline strong {
  color: #fff;
  font-weight: 800;
}
.footer__about {
  font-size: 13.5px !important;
  margin: 0 0 22px !important;
  color: rgba(255, 255, 255, 0.55) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__chips {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-card:nth-child(7) {
    grid-column: 1 / span 2;
    max-width: none;
  }
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vmp-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .vmp--featured {
    transform: none;
  }
  .process {
    grid-template-columns: repeat(3, 1fr);
  }
  .process::before {
    display: none;
  }
  .process-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .pf-arrow {
    display: none;
  }
  .plant-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about__bullets {
    grid-template-columns: 1fr;
  }
  .about__stat {
    right: auto;
    left: 22px;
    top: auto;
    bottom: 22px;
  }
  .about__badge {
    left: auto;
    right: 22px;
    bottom: 22px;
  }
  .cnb {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cnb__advantages {
    grid-template-columns: 1fr;
  }
  .calc,
  .dealer,
  .final-cta__inner,
  .price,
  .video {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-strip__inner {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }
  .counter:nth-child(3)::after {
    display: none;
  }
  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    row-gap: 40px;
  }
  .footer__brand {
    grid-column: span 3;
  }
  .cert-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }
  .cert {
    border-right: none;
  }
  .india-map {
    order: -1;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 70px 0;
  }
  .hero {
    padding: 50px 0 70px;
  }
  .header__nav {
    display: none;
  }
  .header__menu {
    display: flex;
  }
  .header__logo img {
    height: 72px;
  }
  .utility-bar__right .lang-switch,
  .utility-divider {
    display: none;
  }
  .utility-bar__inner {
    font-size: 12px;
    height: 36px;
  }
  .utility-bar__left,
  .utility-bar__right {
    gap: 12px;
  }
  .utility-badge {
    display: none;
  }
  .hero__title {
    font-size: 38px;
  }
  .hero__chips {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid,
  .why-grid,
  .prod4-grid,
  .adv-grid,
  .values-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }
  .process-flow {
    grid-template-columns: 1fr 1fr;
  }
  .plant-features {
    grid-template-columns: 1fr 1fr;
  }
  .dealer-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ds:not(:last-child)::after {
    display: none;
  }
  .ds:not(:last-child) {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .spec-table-wrap {
    padding: 24px;
  }
  .video__play {
    width: 64px;
    height: 64px;
  }
  .video__play svg {
    width: 26px;
    height: 26px;
  }
  .hide-sm {
    display: none !important;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter::after {
    display: none !important;
  }
  .contact-band__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: span 2;
  }
  .quote-card {
    padding: 26px;
  }
  .quote-form--final {
    padding: 26px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .cert-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 78px;
  }
  .toast {
    left: 16px;
    right: 16px;
    bottom: 88px;
    max-width: none;
  }
  .final-cta {
    padding: 70px 0;
  }
}

/* ============================================
   LEGACY OVERRIDE
   Solid colors only · sharp edges · classic
   industrial trust aesthetic. No gradients.
   ============================================ */

:root {
  --orange: #f26522;
  --orange-700: #c8460f;
  --yellow: #fdb913;
  --black: #0e0e10;
  --ink: #1a1a1a;
  --ink-2: #333333;
  --muted: #666666;
  --line: #dddddd;
  --line-strong: #c9c9c9;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --bg-cream: #fff4e0;

  --radius: 4px;
  --radius-sm: 2px;
  --radius-lg: 6px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 6px 18px rgba(0, 0, 0, 0.12);
  --shadow-orange: none;
}

body {
  color: var(--ink);
}
img {
  max-width: 100%;
}

/* ---------- Buttons ---------- */
.btn {
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 2px solid transparent;
  box-shadow: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.btn--sm {
  font-size: 11.5px;
  padding: 11px 22px;
}
.btn--primary {
  background: #f26522;
  color: #fff;
  border-color: #f26522;
  box-shadow: none;
}
.btn--primary:hover {
  background: #c8460f;
  border-color: #c8460f;
  transform: none;
  box-shadow: none;
}
.btn--dark {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.btn--dark:hover {
  background: #f26522;
  border-color: #f26522;
  transform: none;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: none;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn--ghost-dark {
  background: #fff;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}
.btn--ghost-dark:hover {
  background: #1a1a1a;
  color: #fff;
}
.btn--link {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-bottom: 2px solid #f26522;
  padding: 4px 0;
  border-radius: 0;
}
.btn--block {
  width: 100%;
}

/* ---------- Utility bar ---------- */
.utility-bar {
  background: #1a1a1a;
}
.utility-badge {
  background: transparent;
  border: 1px solid #fdb913;
  color: #fdb913;
  border-radius: 0;
  text-transform: uppercase;
}

/* ---------- Header ---------- */
.header {
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
  backdrop-filter: none;
}
.header.is-scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.header__nav a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.header__nav a::after {
  background: #f26522;
  height: 3px;
}

/* ---------- Hero ---------- */
.hero {
  background: #0e0e10;
  padding: 80px 0 100px;
}
.hero__bg {
  background: #0e0e10;
  transform: none !important;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: none;
  -webkit-mask-image: none;
  opacity: 0.9;
}
.hero__bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: #f26522;
}

.kicker {
  background: rgba(253, 185, 19, 0.08);
  border: 1px solid #fdb913;
  border-radius: 0;
  border-left-width: 4px;
  color: #fdb913;
  padding: 8px 14px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}
.kicker__dot {
  box-shadow: none;
  animation: none;
}
.kicker--light {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
  color: #fff;
}

.hero__title {
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.08;
}
.hero__title-accent {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #fdb913;
  font-weight: 900;
}
.text-orange {
  color: #f26522;
}
.hero__sub strong {
  color: #fff;
  font-weight: 600;
}

.chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 16px 18px;
}
.chip:hover {
  border-color: #fdb913;
  transform: none;
}
.chip strong {
  color: #fdb913;
  font-weight: 700;
}

/* ---------- Quote card ---------- */
.quote-card {
  background: #fff;
  border: 1px solid #dddddd;
  border-top: 5px solid #f26522;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  padding: 32px;
}
.quote-card::before {
  display: none;
}
.quote-card__top {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eeeeee;
}
.quote-card__badge {
  background: #fff4e0;
  color: #c8460f;
  border-radius: 0;
  padding: 6px 12px;
  border-left: 3px solid #f26522;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.08em;
}
.quote-card__title {
  font-weight: 700;
  font-size: 24px;
}

/* ---------- Form fields ---------- */
.field label {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #666666;
}
.field input,
.field select {
  background: #fafafa;
  border: 1px solid #cccccc;
  border-radius: 3px;
  padding: 13px 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.field input:focus,
.field select:focus {
  border-color: #f26522;
  background: #fff;
  box-shadow: none;
  outline: 2px solid rgba(242, 101, 34, 0.15);
  outline-offset: 0;
}
.field--phone {
  background: #fafafa;
  border: 1px solid #cccccc;
  border-radius: 3px;
}
.field--phone:focus-within {
  border-color: #f26522;
  background: #fff;
  box-shadow: none;
  outline: 2px solid rgba(242, 101, 34, 0.15);
}
.field--phone span {
  background: #eeeeee;
  border-right: 1px solid #cccccc;
  font-weight: 600;
  color: #1a1a1a;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: #0e0e10;
  border-top: none;
  border-bottom: 4px solid #f26522;
  padding: 50px 0;
}
.counter__num {
  font-weight: 800;
}
.counter__num sup {
  color: #fdb913;
  font-weight: 700;
}
.counter:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.1);
}
.counter__label {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

/* ---------- Section heads ---------- */
.section {
  padding: 90px 0;
}
.section--alt {
  background: #f5f5f5;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.eyebrow {
  background: transparent;
  color: #f26522;
  border: none;
  border-bottom: 3px solid #f26522;
  border-radius: 0;
  padding: 0 0 6px;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.section--dark .eyebrow {
  background: transparent;
  color: #fdb913;
  border-color: #fdb913;
}
.section-head h2 {
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* ---------- About ---------- */
.about__img-wrap {
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.about__badge {
  background: #f26522;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.about__stat {
  background: #fff;
  border: 1px solid #dddddd;
  border-top: 4px solid #f26522;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.about__stat strong {
  color: #f26522;
  font-weight: 800;
}
.about__bullets svg {
  background: #f26522;
}

/* ---------- 4-product grid ---------- */
.prod4,
.product-card {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.prod4:hover,
.product-card:hover {
  transform: none;
  border-color: #f26522;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.prod4__icon {
  background: #fff4e0;
  border-radius: 4px;
  color: #f26522;
}
.prod4:hover .prod4__icon {
  transform: none;
}
.prod4--featured,
.product-card--featured {
  background: #fff4e0;
  border: 1px solid #f26522;
  border-top: 4px solid #f26522;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transform: none;
}
.prod4--featured .prod4__icon {
  background: #f26522;
  color: #fff;
}
.prod4__ribbon,
.product-card__ribbon {
  background: #1a1a1a;
  color: #fdb913;
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
  text-transform: uppercase;
}
.product-card__ribbon::after {
  display: none;
}
.product-card h3 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #1a1a1a;
  font-weight: 800;
}
.link-btn--filled {
  background: #f26522;
  border: 2px solid #f26522;
  border-radius: 4px;
  padding: 11px 22px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: none;
}
.link-btn--filled:hover {
  background: #c8460f;
  border-color: #c8460f;
  transform: none;
}

/* ---------- TMT advantage cards ---------- */
.adv-card {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  border-left: 3px solid #f26522;
}
.adv-card:hover {
  transform: none;
  border-color: #f26522;
  border-left-color: #f26522;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.adv-card__num {
  background: transparent;
  color: #f26522;
  border: 1px solid #f26522;
  border-radius: 0;
  font-weight: 700;
}

/* ---------- Spec table ---------- */
.spec-table-wrap {
  background: #1a1a1a;
  border-radius: 4px;
  border: 1px solid #2a2a2a;
  padding: 36px;
}
.spec-table {
  background: transparent;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.spec-table th {
  background: #0e0e10;
  color: #fdb913;
  border-bottom: 1px solid #f26522;
  font-weight: 700;
}
.spec-table td {
  color: rgba(255, 255, 255, 0.85);
}
.spec-table tr:hover td {
  background: rgba(253, 185, 19, 0.04);
}
.spec-table td:first-child {
  color: #fff;
  font-weight: 600;
}

/* ---------- Cut & Bend ---------- */
.cnb__media {
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.cnb__overlay {
  background: rgba(14, 14, 16, 0.92);
  backdrop-filter: none;
  border-radius: 0;
  border-left: 4px solid #f26522;
}
.cnb__overlay span {
  color: #fdb913;
}
.cnb__advantages li {
  background: #fff;
  border: 1px solid #dddddd;
  border-left: 3px solid #f26522;
  border-radius: 2px;
}
.cnb__advantages li::before {
  display: none;
}
.shape-pill {
  background: #fff4e0;
  color: #c8460f;
  border-radius: 0;
  border: 1px solid #f26522;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Process flow / Plant ---------- */
.pf-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid #f26522;
  border-radius: 0;
}
.pf-step:hover {
  transform: none;
  border-color: rgba(253, 185, 19, 0.4);
  border-top-color: #fdb913;
}
.pf-step__icon {
  background: rgba(253, 185, 19, 0.1);
  border-radius: 4px;
  color: #fdb913;
}
.pf-step__num {
  background: #f26522;
  border-radius: 0;
  font-weight: 700;
}
.pf-arrow {
  color: #f26522;
}
.pf strong {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #fdb913;
  font-weight: 800;
}
.plant-features {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Video ---------- */
.video-section {
  background: #f5f5f5;
}
.video__player {
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.video__play {
  background: #f26522;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
.video__play::before {
  display: none;
}
.video__player:hover .video__play {
  transform: translate(-50%, -50%) scale(1.06);
}

/* ---------- Vision / Mission / Purpose ---------- */
.vmp {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  border-top: 4px solid #f26522;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.vmp:hover {
  transform: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.vmp--featured {
  background: #1a1a1a;
  border-color: #1a1a1a;
  border-top-color: #fdb913;
  transform: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.vmp__icon {
  background: #fff4e0;
  border-radius: 4px;
  color: #f26522;
}
.vmp:hover .vmp__icon {
  transform: none;
}
.vmp--featured .vmp__icon {
  background: #f26522;
  color: #fff;
}

/* ---------- Values grid ---------- */
.value-card {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 4px;
}
.value-card:hover {
  transform: none;
  border-color: #f26522;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.value-card__bullet {
  background: #f26522;
  border-radius: 0;
  height: 3px;
  width: 32px;
}
.value-card h4 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- Awards ---------- */
.award {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  border-top: 4px solid #f26522;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.award:hover {
  transform: none;
  border-color: #f26522;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.award::before {
  display: none;
}
.award__year {
  background: #1a1a1a;
  color: #fdb913;
  border-radius: 4px;
  font-weight: 800;
}

/* ---------- Why card ---------- */
.why-card {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  border-top: 3px solid #f26522;
}
.why-card:hover {
  transform: none;
  border-color: #f26522;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.why-card__icon {
  background: #fff4e0;
  border-radius: 4px;
  color: #f26522;
}
.why-card:hover .why-card__icon {
  transform: none;
}

/* ---------- Clients strip ---------- */
.clients-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cs-row span:hover {
  transform: none;
  color: #fdb913;
}
.approved-by__label {
  border-bottom: 3px solid #f26522;
  padding-bottom: 6px;
}
.approved-list span {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
}
.approved-list span:hover {
  border-color: #fdb913;
  color: #fdb913;
}

/* ---------- Dealer ---------- */
.dealer-section {
  background: #1a1a1a;
}
.dealer-stats {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #f26522;
  border-radius: 0;
}
.ds strong {
  color: #fdb913;
  font-weight: 800;
}
.ds strong sup {
  color: #f26522;
}
.ds:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.08);
}
.dealer__input-row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 6px 6px 6px 18px;
}
.dealer__input-row:focus-within {
  border-color: #fdb913;
}
.india-map svg {
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.3));
}
.india-map__caption {
  color: #fdb913;
  border-top: 2px solid #f26522;
  padding-top: 10px;
  display: inline-block;
}

/* ---------- Price section ---------- */
.price-section {
  background: #fff4e0;
}
.price__form {
  background: #fff;
  border: 1px solid #dddddd;
  border-top: 5px solid #f26522;
  border-radius: 4px;
  padding: 36px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.price__benefits svg {
  background: #f26522;
}

/* ---------- Calc section (legacy carry-over) ---------- */
.calc-section {
  background: #fff4e0;
}
.calc__form {
  background: #fff;
  border: 1px solid #dddddd;
  border-top: 5px solid #f26522;
  border-radius: 4px;
}
.calc__benefits svg {
  background: #f26522;
  border-radius: 50%;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  border-left: 4px solid #f26522;
}
.testimonial:hover {
  transform: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.avatar {
  background: #f26522;
  border-radius: 50%;
}

/* ---------- FAQ ---------- */
.faq details {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 3px;
}
.faq details[open] {
  border-color: #f26522;
  border-left: 4px solid #f26522;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: #f26522;
  padding: 90px 0;
}
.final-cta::before {
  display: none;
}
.final-cta__text h2 {
  font-weight: 800;
}
.final-cta__list li::before {
  border-radius: 0;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F26522' stroke-width='3'><path d='M20 6L9 17l-5-5'/></svg>");
}
.final-cta__contact a {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12.5px;
  backdrop-filter: none;
}
.final-cta__contact a:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: none;
}
.quote-form--final {
  background: #fff;
  border: 1px solid #dddddd;
  border-top: 5px solid #1a1a1a;
  border-radius: 4px;
}

/* ---------- Contact band ---------- */
.contact-band {
  background: #f5f5f5;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.contact-block__icon {
  background: #fff4e0;
  border-radius: 4px;
  color: #f26522;
}
.contact-block h4 {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

/* ---------- Certifications ---------- */
.cert-strip {
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 4px;
}
.cert {
  border-right: 1px solid #dddddd;
}

/* ---------- Footer ---------- */
.footer {
  background: #0a0a0c;
}
.footer__col h5 {
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid #f26522;
  padding-bottom: 8px;
  display: inline-block;
}
.footer__bottom {
  background: #050507;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.socials a {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}
.socials a:hover {
  background: #f26522;
  transform: none;
}
.footer__col a:hover {
  color: #fdb913;
  padding-left: 0;
}
.footer__tagline {
  color: #fdb913;
}

/* ---------- Mobile bar ---------- */
.mobile-bar__btn {
  border-radius: 4px;
  text-transform: uppercase;
}
.mobile-bar__btn--wa {
  background: #1a1a1a;
  color: #fff;
}
.mobile-bar__btn--cta {
  background: #f26522;
  color: #fff;
}

/* ---------- Toast ---------- */
.toast {
  border-radius: 4px;
  border-left-width: 5px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* ---------- Section dark overrides ---------- */
.section--dark {
  background: #0e0e10;
}
.logo-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-strip span:hover {
  color: #fdb913;
}

/* ---------- Disable trendy hovers globally ---------- */
.btn:hover {
  transform: none !important;
  box-shadow: none !important;
}
.btn--primary:hover {
  background: #c8460f !important;
}
.btn--dark:hover {
  background: #f26522 !important;
}

/* ============================================
   ITERATION 2 — Calm, declutter, fix layouts
   ============================================ */

/* ---------- Header utility bar ---------- */
.utility-bar {
  font-size: 12.5px;
}
.utility-bar__inner {
  height: 40px;
}
.utility-bar__right {
  gap: 12px;
}
.utility-bar__right .utility-link {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.7);
}
.utility-bar__right .utility-link:hover {
  color: #fdb913;
  border-color: #fdb913;
}

/* ---------- Header ---------- */
.header__inner {
  height: 84px;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  border-left: 3px solid #f26522;
  color: #1a1a1a;
}
.header__phone svg {
  color: #f26522;
  flex-shrink: 0;
}
.header__phone span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.header__phone small {
  font-size: 9.5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
}
.header__phone strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
}
.header__phone:hover strong {
  color: #f26522;
}

/* ---------- Hero — calm + breathable ---------- */
.hero {
  padding: 90px 0 110px;
}
.hero__inner {
  gap: 70px;
  align-items: center;
}
.hero__bg::after {
  display: none;
}
.hero__title {
  font-size: clamp(34px, 4.6vw, 56px);
  margin: 22px 0 24px;
  line-height: 1.1;
}
.hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero__sub strong {
  color: #fff;
  font-weight: 600;
}
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 18px 26px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #f26522;
  margin-top: 32px;
}
.hero__meta > span:not(.hero__meta-divider) {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.hero__meta strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: #fdb913;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.hero__meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}
.kicker {
  padding: 7px 14px;
  font-size: 11.5px;
}

/* ---------- Trust strip — remove heavy borders ---------- */
.trust-strip {
  padding: 44px 0;
  border-top: none;
  border-bottom: none;
}

/* ---------- About bullets ---------- */
.about__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
}
.about__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f7f7f7;
  border-left: 3px solid #f26522;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  white-space: nowrap;
}
.about__bullets svg {
  width: 12px;
  height: 12px;
  padding: 3px;
  background: #f26522;
}

/* ---------- Flagship advantage cards — calmer ---------- */
.adv-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-left: none;
  border-radius: 4px;
  padding: 28px 24px 26px;
  position: relative;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.adv-card:hover {
  border-color: #c9c9c9;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.adv-card__num {
  position: absolute;
  top: 22px;
  right: 22px;
  background: transparent;
  border: none;
  color: #dddddd;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}
.adv-card h4 {
  margin-top: 0;
  padding-right: 40px;
  font-size: 16px;
  color: #1a1a1a;
}
.adv-card h4::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: #f26522;
  margin-bottom: 14px;
}

/* ---------- Spec table — white, scannable ---------- */
.spec-table-wrap {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
}
.spec-table-head {
  padding: 32px 36px 28px;
  border-bottom: 1px solid #eeeeee;
  background: #f7f7f7;
  text-align: center;
}
.spec-table-head h3 {
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}
.spec-table-head p {
  color: #666;
  font-size: 14px;
  margin: 0;
}
.spec-table {
  background: #fff;
  border: none;
}
.spec-table table {
  font-size: 14.5px;
}
.spec-table th {
  background: #fff;
  color: #1a1a1a;
  padding: 22px 24px 20px;
  font-size: 14.5px;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 2px solid #1a1a1a;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
}
.spec-table th:first-child {
  text-align: left;
  background: #f7f7f7;
  border-bottom-color: #e5e5e5;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  font-weight: 600;
}
.spec-table td {
  padding: 16px 24px;
  text-align: center;
  color: #333;
  border-bottom: 1px solid #eeeeee;
}
.spec-table td:first-child {
  text-align: left;
  background: #fafafa;
  font-weight: 600;
  color: #1a1a1a;
  border-right: 1px solid #eeeeee;
}
.spec-table tr:last-child td {
  border-bottom: none;
}
.spec-table tr:last-child td:not(:first-child) {
  background: #fff8eb;
  color: #c8460f;
  font-weight: 600;
  font-size: 13.5px;
}
.spec-table tr:hover td:not(:first-child) {
  background: #fffaf0;
}
.spec-table tr:last-child:hover td:not(:first-child) {
  background: #fff4e0;
}

.grade-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: #f7f7f7;
  color: #888;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  margin-bottom: 8px;
}
.grade-tag--featured {
  background: #f26522;
  color: #fff;
  border-color: #f26522;
}

/* ---------- Cut & Bend — de-orange ---------- */
.cnb__overlay {
  border-left-color: #fdb913;
}
.cnb__overlay span {
  color: #fdb913;
}
.cnb__advantages li {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-left: none;
  padding: 14px 18px;
  position: relative;
  padding-left: 40px;
}
.cnb__advantages li::before {
  content: "";
  display: block;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F26522' stroke-width='3'><path d='M20 6L9 17l-5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
}
.cnb__advantages li:hover {
  border-color: #c9c9c9;
}
.shape-pill {
  background: #fff;
  color: #333;
  border: 1px solid #dddddd;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
  padding: 8px 14px;
}
.shape-pill:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

/* ---------- Mines to Mills process — bigger 3x2 grid ---------- */
.process-flow {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
.pf-arrow {
  display: none;
}
.pf-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid #f26522;
  border-radius: 0;
  padding: 36px 30px 32px;
  text-align: left;
}
.pf-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(253, 185, 19, 0.4);
  border-top-color: #fdb913;
}
.pf-step__icon {
  width: 64px;
  height: 64px;
  margin: 0 0 22px 0;
  background: rgba(253, 185, 19, 0.1);
  border-radius: 4px;
}
.pf-step__icon svg {
  width: 32px;
  height: 32px;
}
.pf-step__num {
  position: absolute;
  top: 22px;
  right: 22px;
  width: auto;
  height: auto;
  background: transparent;
  color: rgba(253, 185, 19, 0.4);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  border-radius: 0;
  padding: 0;
}
.pf-step h5 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}
.pf-step p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

/* ---------- Values 7-card layout (4 + 3 centered) ---------- */
.values-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.value-card {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  padding: 30px 26px 26px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 3px solid #f26522;
  border-radius: 4px;
}
.value-card:nth-child(7) {
  grid-column: auto;
  max-width: calc(25% - 15px);
  margin: 0;
}
.value-card__bullet {
  display: none;
}
.value-card h4 {
  font-size: 14.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}
.value-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

/* ---------- Dealer section — LIGHT background ---------- */
.dealer-section {
  background: #ffffff;
  color: #1a1a1a;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 100px 0;
}
.dealer-section .eyebrow {
  background: transparent;
  color: #f26522;
  border-bottom: 3px solid #f26522;
}
.dealer__content h2 {
  color: #1a1a1a;
}
.dealer__content p {
  color: #666;
  max-width: 540px;
}
.dealer__content p strong {
  color: #1a1a1a;
}
.dealer-stats {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-left: 4px solid #f26522;
  padding: 28px 24px;
  margin: 28px 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ds {
  text-align: left;
}
.ds:not(:last-child)::after {
  background: #dddddd;
  right: 0;
}
.ds strong {
  color: #1a1a1a;
  font-size: 38px;
}
.ds strong sup {
  color: #f26522;
  font-size: 18px;
}
.ds span {
  color: #666;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dealer__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.india-map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.india-map img {
  max-width: 100%;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.08));
}

/* ---------- Price section — neutral white ---------- */
.price-section {
  background: #f5f5f5;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.price-cta {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 5px solid #f26522;
  border-radius: 4px;
  padding: 44px 40px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.price-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #fff4e0;
  color: #f26522;
  border-radius: 4px;
  margin-bottom: 22px;
}
.price-cta__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  margin-bottom: 10px;
}
.price-cta h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.price-cta > p {
  font-size: 13.5px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0 0 24px;
}
.price-cta__divider {
  position: relative;
  margin: 6px 0 18px;
  text-align: center;
}
.price-cta__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e5e5;
}
.price-cta__divider span {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 14px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #999;
}
.price-cta__email {
  display: block;
  margin-top: 18px;
  font-size: 13.5px;
  color: #666;
  text-decoration: none;
}
.price-cta__email:hover {
  color: #f26522;
}

/* ---------- Final CTA — DARK, readable ---------- */
.final-cta {
  background: #1a1a1a;
  position: relative;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #f26522;
  display: block;
}
.final-cta__text h2 {
  color: #fff;
  font-weight: 800;
}
.final-cta__text > p {
  color: rgba(255, 255, 255, 0.75);
}
.final-cta__list li {
  color: rgba(255, 255, 255, 0.85);
}
.final-cta__list li::before {
  background-color: #f26522;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M20 6L9 17l-5-5'/></svg>");
  border-radius: 0;
}
.final-cta__contact {
  margin-top: 26px;
  gap: 12px;
}
.final-cta__contact a {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 4px;
}
.final-cta__contact a:hover {
  background: #f26522;
  border-color: #f26522;
}
.final-cta__contact a svg {
  color: #fdb913;
}
.final-cta__contact a:hover svg {
  color: #fff;
}
.quote-form--final {
  background: #fff;
  border-top: 5px solid #f26522;
}
.quote-form--final h3 {
  color: #1a1a1a;
  font-weight: 800;
}

.kicker--light {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fdb913;
  color: #fdb913;
}

/* ---------- Section flow polish ---------- */
.section {
  padding: 90px 0;
}
.video-section {
  background: #f5f5f5;
}

/* ---------- Form note ---------- */
.form-note {
  color: #888;
}

/* ---------- Responsive iteration 2 ---------- */
@media (max-width: 1024px) {
  .hero__meta {
    flex-wrap: wrap;
    gap: 16px 22px;
  }
  .process-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .value-card:nth-child(7) {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .about__bullets li {
    white-space: normal;
  }
  .header__phone {
    display: none;
  }
  .dealer-stats {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 22px;
  }
  .dealer-stats .ds {
    padding: 16px 0;
    border-bottom: 1px solid #dddddd;
  }
  .dealer-stats .ds:last-child {
    border-bottom: none;
  }
  .dealer-stats .ds:not(:last-child)::after {
    display: none;
  }
  .spec-table-wrap {
    overflow-x: auto;
  }
}
@media (max-width: 720px) {
  .hero {
    padding: 60px 0 80px;
  }
  .hero__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px;
  }
  .hero__meta-divider {
    display: none;
  }
  .about__bullets {
    grid-template-columns: 1fr;
  }
  .process-flow {
    grid-template-columns: 1fr;
  }
  .value-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .value-card:nth-child(7) {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .price-cta {
    padding: 32px 24px;
  }
  .price-cta h3 {
    font-size: 26px;
  }
  .spec-table th,
  .spec-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  .grade-tag {
    font-size: 9px;
    padding: 2px 6px;
  }
}

/* ============================================
   ITERATION 3 — Final polish
   Light trust strip · clean eyebrows · new
   process timeline · de-repetitive accents
   ============================================ */

/* ---------- Eyebrow: remove repetitive underline ---------- */
.eyebrow {
  background: transparent !important;
  color: #f26522 !important;
  border: none !important;
  border-bottom: 3px solid #f26522 !important;
  padding: 0 0 6px !important;
  margin-bottom: 16px !important;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11.5px;
  display: inline-block;
}
.section--dark .eyebrow {
  color: #fdb913 !important;
  border-bottom-color: #fdb913 !important;
}

/* ---------- Hero — calm + readable ---------- */
.hero {
  padding: 100px 0 110px;
}
.hero__inner {
  gap: 80px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-left: 3px solid #f26522 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 9px 18px !important;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.kicker__dot {
  display: none;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800 !important;
  font-size: clamp(36px, 4.6vw, 56px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  margin: 26px 0 24px !important;
}
.hero__title-accent {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}
.text-orange {
  color: #f26522;
}

.hero__sub {
  font-size: 16.5px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  line-height: 1.7 !important;
  max-width: 540px !important;
  margin-bottom: 32px !important;
}
.hero__sub strong {
  color: #fff;
  font-weight: 600;
}
.hero .hero__content > .btn {
  margin-bottom: 36px;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #f26522;
  margin-top: 0;
}
.hero__meta > span:not(.hero__meta-divider) {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  font-family: var(--font-display);
}
.hero__meta strong {
  font-weight: 800;
  font-size: 19px;
  color: #ffffff;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.hero__meta-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Trust strip — LIGHT GRAY with lines ---------- */
.trust-strip {
  background: #f5f5f5 !important;
  color: #1a1a1a !important;
  border-top: 1px solid #e5e5e5 !important;
  border-bottom: 1px solid #e5e5e5 !important;
  padding: 50px 0 !important;
  position: relative;
}
.trust-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f26522;
}
.counter__num {
  color: #1a1a1a !important;
  font-weight: 800;
}
.counter__num span {
  color: #1a1a1a;
}
.counter__num sup {
  color: #f26522 !important;
  font-weight: 700;
}
.counter__label {
  color: #888 !important;
  font-weight: 600;
  font-family: var(--font-display);
}
.counter:not(:last-child)::after {
  background: #dddddd !important;
}

/* ---------- Values — clean cards, no orange top ---------- */
.value-card {
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-top: 1px solid #e5e5e5 !important;
  border-radius: 4px;
  padding: 32px 28px 28px !important;
  transition: border-color 0.2s;
}
.value-card:hover {
  border-color: #1a1a1a !important;
  box-shadow: none !important;
}
.value-card h4 {
  font-size: 14px !important;
  margin: 0 0 14px !important;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  position: relative;
}
.value-card h4::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: #f26522;
}
.value-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.value-card__bullet {
  display: none !important;
}

/* ---------- Awards — clean cards, year badge is anchor ---------- */
.award {
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-top: 1px solid #e5e5e5 !important;
  border-radius: 4px !important;
  padding: 30px 30px 28px !important;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.award:hover {
  border-color: #1a1a1a !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
}
.award::before {
  display: none !important;
}
.award__year {
  background: #f26522 !important;
  color: #fff !important;
  border-radius: 4px;
  font-weight: 800;
}

/* ---------- Mines to Mills — proper process timeline ---------- */
.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 60px 0 56px;
}
.pr-line {
  position: absolute;
  top: 38px;
  left: 8.33%;
  right: 8.33%;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    rgba(253, 185, 19, 0.4) 50%,
    transparent 50%
  );
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.pr-step {
  position: relative;
  text-align: center;
  padding: 0 14px;
  z-index: 1;
}
.pr-step__circle {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  background: #1a1a1a;
  border: 2px solid #f26522;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.pr-step__circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: #0e0e10;
  border-radius: 50%;
  z-index: -1;
}
.pr-step__circle svg {
  width: 32px;
  height: 32px;
  color: #fdb913;
}
.pr-step:hover .pr-step__circle {
  background: #f26522;
  border-color: #fdb913;
  transform: translateY(-3px);
}
.pr-step:hover .pr-step__circle svg {
  color: #fff;
}
.pr-step__num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  background: #fdb913;
  color: #1a1a1a;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #0e0e10;
}
.pr-step h5 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  margin: 0 0 6px;
}
.pr-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}
.process-flow {
  display: none !important;
}

/* ---------- Final CTA — orange ticks, no boxes ---------- */
.final-cta__list {
  gap: 14px;
}
.final-cta__list li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 12px;
}
.final-cta__list li::before {
  content: "" !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  background: none !important;
  background-color: transparent !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F26522' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  border: none !important;
  border-radius: 0 !important;
  flex-shrink: 0;
}

/* ---------- FAQ — white background ---------- */
.faq-section {
  background: #ffffff !important;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 90px 0;
}
.faq details {
  background: #fafafa !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 4px !important;
}
.faq details[open] {
  background: #fff !important;
  border-color: #1a1a1a !important;
  border-left: 4px solid #f26522 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

/* ---------- Contact band — white background ---------- */
.contact-band {
  background: #ffffff !important;
  border-top: 1px solid #eeeeee !important;
  border-bottom: 1px solid #eeeeee !important;
  padding: 70px 0;
}

/* ---------- Section--alt subtle tone tweak ---------- */
.section--alt {
  background: #f7f7f7;
}
.price-cta__divider span {
  background: #fff;
}

/* ---------- Responsive iteration 3 ---------- */
@media (max-width: 1024px) {
  .process-rail {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
  }
  .pr-line {
    display: none;
  }
  .hero__inner {
    gap: 50px;
  }
  .hero__meta {
    flex-wrap: wrap;
    gap: 14px 22px;
    padding: 16px 22px;
  }
}
@media (max-width: 720px) {
  .process-rail {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .hero__title {
    font-size: 36px !important;
  }
  .hero__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .hero__meta-divider {
    display: none;
  }
}

/* ============================================
   ITERATION 4 — Polish & rebalance
   Calmer dark sections · de-orange dealer/about
   · richer values · clean borders · new hero stats
   ============================================ */

/* ---------- Trust strip — remove orange top line ---------- */
.trust-strip::before {
  display: none !important;
}
.trust-strip {
  border-top: 1px solid #e5e5e5 !important;
  border-bottom: 1px solid #e5e5e5 !important;
}

/* ---------- Hero — new stats design (no container) ---------- */
.hero__meta {
  display: inline-flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  background: transparent !important;
  border: none !important;
  border-left: none !important;
  padding: 0 !important;
  margin-top: 36px !important;
}
.hero__meta > span:not(.hero__meta-divider) {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 32px !important;
  font-size: 10.5px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 600 !important;
  font-family: var(--font-display);
  justify-content: center;
}
.hero__meta > span:not(.hero__meta-divider):first-child {
  padding-left: 0 !important;
}
.hero__meta > span:not(.hero__meta-divider):last-child {
  padding-right: 0 !important;
}
.hero__meta strong {
  font-family: var(--font-display);
  font-weight: 800 !important;
  font-size: 32px !important;
  color: #ffffff !important;
  line-height: 1 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.02em !important;
}
.hero__meta-divider {
  width: 1px !important;
  height: 56px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  align-self: center !important;
}

/* ---------- About section — less orange ---------- */
.about__badge {
  background: #1a1a1a !important;
  border: 2px solid #f26522 !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}
.about__badge strong {
  color: #f26522 !important;
}
.about__badge span {
  color: rgba(255, 255, 255, 0.85) !important;
}

.about__bullets li {
  background: #fafafa !important;
  border: 1px solid #e5e5e5 !important;
  border-left: 1px solid #e5e5e5 !important;
  padding: 14px 18px !important;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a1a1a !important;
}
.about__bullets svg {
  background: transparent !important;
  color: #f26522 !important;
  width: 14px !important;
  height: 14px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  flex-shrink: 0;
}

/* ---------- Mines to Mills — subtler dark section ---------- */
.section--dark {
  background: #16161a !important;
}

.pr-step__circle {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(253, 185, 19, 0.28) !important;
  width: 76px !important;
  height: 76px !important;
}
.pr-step__circle::before {
  background: #16161a !important;
  inset: -7px !important;
}
.pr-step__circle svg {
  width: 30px !important;
  height: 30px !important;
  color: rgba(253, 185, 19, 0.65) !important;
}
.pr-step__num {
  background: rgba(253, 185, 19, 0.14) !important;
  color: #fdb913 !important;
  border: 2px solid #16161a !important;
  width: 24px !important;
  height: 24px !important;
}
.pr-step h5 {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}
.pr-step p {
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 11.5px !important;
}
.pr-line {
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 50%
  ) !important;
}
.pr-step:hover .pr-step__circle {
  background: rgba(253, 185, 19, 0.06) !important;
  border-color: rgba(253, 185, 19, 0.5) !important;
  transform: translateY(-2px) !important;
}
.pr-step:hover .pr-step__circle svg {
  color: #fdb913 !important;
}

/* Plant features — subtler */
.plant-features {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.pf strong {
  color: rgba(253, 185, 19, 0.75) !important;
  font-size: 26px !important;
}
.pf span {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ---------- Dealer section — much less orange ---------- */
.dealer-stats {
  background: #fafafa !important;
  border: 1px solid #e5e5e5 !important;
  border-left: 1px solid #e5e5e5 !important;
  padding: 28px 24px !important;
  margin: 28px 0 30px !important;
}
.ds strong {
  color: #1a1a1a !important;
  font-weight: 800 !important;
  font-size: 36px !important;
}
.ds strong sup {
  color: #888 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
.ds span {
  color: #888 !important;
}
.ds:not(:last-child)::after {
  background: #e5e5e5 !important;
}

/* ---------- Values — richer treatment with numbered badges ---------- */
.values-grid {
  counter-reset: vc;
}
.value-card {
  counter-increment: vc;
  position: relative;
  padding: 32px 28px 28px !important;
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-top: 1px solid #e5e5e5 !important;
}
.value-card::before {
  content: counter(vc, decimal-leading-zero);
  display: inline-block;
  padding: 7px 12px;
  background: #1a1a1a;
  color: #fdb913;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  border-radius: 2px;
  transition:
    background 0.2s,
    color 0.2s;
}
.value-card:hover::before {
  background: #f26522;
  color: #fff;
}
.value-card h4 {
  font-size: 14px !important;
  margin: 0 0 10px !important;
  padding-bottom: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}
.value-card h4::after {
  display: none !important;
}
.value-card p {
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.6 !important;
}

/* ---------- Border glitch fixes ---------- */
.adv-card {
  border: 1px solid #e5e5e5 !important;
  border-left: 1px solid #e5e5e5 !important;
  border-right: 1px solid #e5e5e5 !important;
}
.cnb__advantages li {
  border: 1px solid #e5e5e5 !important;
  border-left: 1px solid #e5e5e5 !important;
}
.testimonial {
  border: 1px solid #e5e5e5 !important;
  border-left: 1px solid #e5e5e5 !important;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #f26522;
}

/* ---------- Section--alt slight tone ---------- */
.section--alt {
  background: #f7f7f7;
}

/* ---------- Responsive iteration 4 ---------- */
@media (max-width: 1024px) {
  .hero__meta {
    flex-wrap: wrap;
    gap: 24px !important;
  }
  .hero__meta > span:not(.hero__meta-divider) {
    padding: 0 !important;
  }
  .hero__meta-divider {
    display: none !important;
  }
}
@media (max-width: 720px) {
  .hero__meta {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px !important;
  }
  .hero__meta strong {
    font-size: 26px !important;
  }
}

/* ============================================
   ITERATION 5 — Targeted polish
   ============================================ */

/* ---------- Hero yellow accent ---------- */
.text-yellow {
  color: #fdb913 !important;
}
.hero__title .text-yellow {
  color: #fdb913 !important;
}

/* ---------- About badge — yellow outline ---------- */
.about__badge {
  background: #1a1a1a !important;
  border: 2px solid #fdb913 !important;
  color: #fff !important;
}
.about__badge strong {
  color: #fdb913 !important;
}
.about__badge span {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ---------- Products — give flagship breathing room ---------- */
.prod4--featured {
  padding-top: 56px !important;
}
.prod4__ribbon {
  top: 18px !important;
  right: 50% !important;
  transform: translateX(50%) !important;
  background: #f26522 !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 10px !important;
  padding: 6px 14px !important;
  letter-spacing: 0.12em !important;
  white-space: nowrap;
}

/* ---------- Compare TMT Grades — make it visible ---------- */
.spec-table-wrap {
  background: #fff !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 4px !important;
  overflow: hidden;
  margin-top: 30px;
}
.spec-table-head {
  background: #1a1a1a !important;
  padding: 38px 36px 34px !important;
  border-bottom: 4px solid #f26522 !important;
  text-align: center !important;
  position: relative;
}
.spec-table-head::before {
  content: "ENGINEERING DATASHEET";
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #fdb913;
  margin-bottom: 12px;
}
.spec-table-head h3 {
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 800 !important;
  font-size: 30px !important;
  margin: 0 0 10px !important;
  letter-spacing: -0.01em;
}
.spec-table-head p {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 14.5px !important;
  margin: 0 !important;
  max-width: 560px;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.6;
}

/* ---------- Mines to Mills — orange/yellow used correctly, no numbers ---------- */
.section--dark {
  background: #16161a !important;
}

.pr-step__num {
  display: none !important;
}

.pr-step__circle {
  position: relative;
  width: 82px !important;
  height: 82px !important;
  background: #1a1a1a !important;
  border: 2px solid #f26522 !important;
  border-radius: 50% !important;
  margin: 0 auto 22px !important;
  box-shadow: 0 0 0 8px #16161a;
}
.pr-step__circle::before {
  display: none !important;
}
.pr-step__circle svg {
  width: 34px !important;
  height: 34px !important;
  color: #fdb913 !important;
  opacity: 1 !important;
}
.pr-line {
  top: 41px !important;
  background-image: linear-gradient(
    90deg,
    rgba(242, 101, 34, 0.45) 50%,
    transparent 50%
  ) !important;
  background-size: 14px 2px !important;
}
.pr-step h5 {
  color: #fff !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
}
.pr-step p {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 12px !important;
}
.pr-step:hover .pr-step__circle {
  background: #f26522 !important;
  transform: translateY(-3px) !important;
}
.pr-step:hover .pr-step__circle svg {
  color: #fff !important;
}

/* ---------- Vision/Mission/Purpose — Roman numerals, no top lines ---------- */
.vmp {
  position: relative !important;
  overflow: hidden;
  border: 1px solid #e5e5e5 !important;
  border-top: 1px solid #e5e5e5 !important;
}
.vmp--featured {
  border: 1px solid #1a1a1a !important;
  border-top: 1px solid #1a1a1a !important;
}
.vmp::after {
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 60px;
  color: #f2f2f2;
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
}
.vmp:nth-child(1)::after {
  content: "I";
}
.vmp:nth-child(2)::after {
  content: "II";
}
.vmp:nth-child(3)::after {
  content: "III";
}
.vmp--featured::after {
  color: rgba(255, 255, 255, 0.06);
}

.vmp__icon {
  position: relative;
  z-index: 1;
}
.vmp h3,
.vmp p {
  position: relative;
  z-index: 1;
}

/* ---------- Values — clean 4-col grid alignment ---------- */
.values-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  flex-wrap: nowrap !important;
}
.value-card {
  flex: none !important;
  max-width: none !important;
  width: auto !important;
}
.value-card:nth-child(7) {
  flex: none !important;
  max-width: none !important;
  margin: 0 !important;
  grid-column: auto !important;
}

/* ---------- Responsive iteration 5 ---------- */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .vmp::after {
    font-size: 50px;
  }
}
@media (max-width: 720px) {
  .values-grid {
    grid-template-columns: 1fr !important;
  }
  .spec-table-head {
    padding: 28px 20px !important;
  }
  .spec-table-head h3 {
    font-size: 22px !important;
  }
}

/* ============================================
   ITERATION 6 — Targeted polish round 2
   ============================================ */

/* ---------- Flagship product — old corner ribbon, more breathing room ---------- */
.prod4--featured {
  padding-top: 62px !important;
}
.prod4__ribbon {
  top: 16px !important;
  right: 16px !important;
  left: auto !important;
  transform: none !important;
  background: #1a1a1a !important;
  color: #fdb913 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--font-display);
  font-weight: 800 !important;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
  padding: 6px 12px !important;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- Mines to Mills — fully on-brand orange/yellow ---------- */
.pr-line {
  top: 41px !important;
  background-image: linear-gradient(
    90deg,
    #f26522 50%,
    transparent 50%
  ) !important;
  background-size: 14px 2px !important;
  height: 2px !important;
  opacity: 0.85;
}

.pr-step__circle {
  width: 84px !important;
  height: 84px !important;
  background: #1a1a1a !important;
  border: 2px solid #f26522 !important;
  box-shadow: 0 0 0 10px #16161a !important;
}
.pr-step__circle svg {
  width: 36px !important;
  height: 36px !important;
  color: #fdb913 !important;
  opacity: 1 !important;
}
.pr-step__num {
  display: none !important;
}

.pr-step h5 {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-top: 4px !important;
}
.pr-step p {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 12px !important;
}
.pr-step:hover .pr-step__circle {
  background: #f26522 !important;
  border-color: #fdb913 !important;
  transform: translateY(-3px) !important;
}
.pr-step:hover .pr-step__circle svg {
  color: #fff !important;
}

/* ---------- Dark section eyebrow → orange (like other sections) ---------- */
.section--dark .eyebrow {
  color: #f26522 !important;
  border-bottom-color: #f26522 !important;
}

/* ---------- VMP — remove Roman numerals, rich hover ---------- */
.vmp::after {
  display: none !important;
}
.vmp::before {
  display: none !important;
}

.vmp {
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-top: 1px solid #e5e5e5 !important;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease !important;
  cursor: default;
  overflow: hidden;
}
.vmp:hover {
  border-color: #1a1a1a !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12) !important;
}
.vmp__icon {
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    border-radius 0.3s ease !important;
  background: #fff4e0 !important;
  color: #f26522 !important;
  border-radius: 4px !important;
}
.vmp:hover .vmp__icon {
  background: #1a1a1a !important;
  color: #fdb913 !important;
  transform: rotate(-6deg) scale(1.05) !important;
}
.vmp:hover h3 {
  color: #f26522 !important;
}
.vmp h3 {
  transition: color 0.3s ease;
}

.vmp--featured {
  background: #1a1a1a !important;
  border: 1px solid #1a1a1a !important;
}
.vmp--featured .vmp__icon {
  background: #f26522 !important;
  color: #fff !important;
}
.vmp--featured:hover {
  border-color: #f26522 !important;
}
.vmp--featured:hover .vmp__icon {
  background: #fdb913 !important;
  color: #1a1a1a !important;
  transform: rotate(6deg) scale(1.05) !important;
}
.vmp--featured:hover h3 {
  color: #fdb913 !important;
}

/* ---------- Values — small orange number, no badge ---------- */
.values-grid {
  counter-reset: vc;
}
.value-card {
  counter-increment: vc;
  position: relative;
  padding: 30px 28px 28px !important;
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-top: 1px solid #e5e5e5 !important;
}
.value-card::before {
  content: "0" counter(vc) " /";
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: #f26522;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.value-card:hover::before {
  background: transparent !important;
  color: #f26522 !important;
}
.value-card h4 {
  font-size: 14px !important;
  margin: 0 0 10px !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}
.value-card h4::after {
  display: none !important;
}
.value-card p {
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.6 !important;
}
.value-card:hover {
  border-color: #1a1a1a !important;
}

/* ---------- Flagship 8 features — new horizontal layout ---------- */
.adv-card {
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 4px !important;
  padding: 28px 28px 26px !important;
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 4px 22px;
  align-items: start;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.adv-card:hover {
  border-color: #f26522 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-3px);
}
.adv-card__num {
  position: static !important;
  display: block !important;
  grid-row: 1 / span 2;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 38px !important;
  color: #f26522 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center;
  border-right: 2px solid #f26522;
  padding-right: 22px !important;
  align-self: stretch;
  display: flex !important;
  align-items: center;
}
.adv-card h4 {
  margin: 0 0 8px !important;
  padding: 0 !important;
  font-size: 16px !important;
  color: #1a1a1a !important;
  font-weight: 700;
}
.adv-card h4::before {
  display: none !important;
}
.adv-card p {
  margin: 0 !important;
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.6 !important;
}

/* ---------- Engineering Datasheet — orange underline ---------- */
.spec-table-head::before {
  content: "ENGINEERING DATASHEET";
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #f26522;
  border-bottom: 3px solid #f26522;
  padding: 0 0 6px;
  margin-bottom: 14px;
  background: transparent;
}

/* ---------- Responsive iteration 6 ---------- */
@media (max-width: 1024px) {
  .adv-card {
    gap: 4px 18px;
  }
  .adv-card__num {
    font-size: 32px !important;
    padding-right: 18px !important;
  }
}
@media (max-width: 720px) {
  .adv-card {
    padding: 24px 22px !important;
  }
  .adv-card__num {
    font-size: 28px !important;
    padding-right: 16px !important;
  }
}

/* ============================================
   ITERATION 7 — Polish round 3
   ============================================ */

/* ---------- Dark section eyebrows: yellow text, orange underline ---------- */
.section--dark .eyebrow {
  color: #fdb913 !important;
  border-bottom: 3px solid #f26522 !important;
  border-bottom-color: #f26522 !important;
}

/* ---------- Engineering Datasheet: yellow text, orange underline ---------- */
.spec-table-head::before {
  content: "ENGINEERING DATASHEET";
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #fdb913 !important;
  border-bottom: 3px solid #f26522 !important;
  padding: 0 0 6px;
  margin-bottom: 14px;
  background: transparent;
}

/* ---------- Values — adopt flagship 8-features layout ---------- */
.values-grid {
  counter-reset: vc;
}
.value-card {
  counter-increment: vc;
  position: relative;
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-top: 1px solid #e5e5e5 !important;
  border-radius: 4px !important;
  padding: 28px 26px 26px !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 4px 22px !important;
  align-items: start !important;
  flex: none !important;
  max-width: none !important;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.value-card:hover {
  border-color: #f26522 !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}
.value-card::before {
  content: "0" counter(vc) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 40px !important;
  color: #f26522 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  background: transparent !important;
  border: none !important;
  border-right: 2px solid #f26522 !important;
  padding: 0 22px 0 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  grid-row: 1 / span 2 !important;
  align-self: stretch !important;
  text-align: center;
}
.value-card:nth-child(7) {
  flex: none !important;
  max-width: none !important;
  grid-column: auto !important;
  margin: 0 !important;
}
.value-card h4 {
  margin: 0 0 8px !important;
  padding: 0 !important;
  font-size: 14px !important;
  color: #1a1a1a !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.value-card h4::after {
  display: none !important;
}
.value-card h4::before {
  display: none !important;
}
.value-card p {
  margin: 0 !important;
  font-size: 12.5px !important;
  color: #666 !important;
  line-height: 1.55 !important;
}

/* ---------- Mines to Mills — subtler, simpler, brighter yellow ---------- */
.pr-step__circle {
  width: 68px !important;
  height: 68px !important;
  background: #1a1a1a !important;
  border: 1px solid #f26522 !important;
  box-shadow: 0 0 0 6px #16161a !important;
  margin: 0 auto 20px !important;
}
.pr-step__circle svg {
  width: 28px !important;
  height: 28px !important;
  color: #ffc72c !important;
  opacity: 1 !important;
}
.pr-step__circle svg * {
  stroke-width: 2.2 !important;
}
.pr-step__circle::before {
  display: none !important;
}
.pr-line {
  top: 34px !important;
  background-image: linear-gradient(
    90deg,
    rgba(242, 101, 34, 0.5) 50%,
    transparent 50%
  ) !important;
  background-size: 12px 1px !important;
  height: 1px !important;
  opacity: 1 !important;
}
.pr-step__num {
  display: none !important;
}
.pr-step h5 {
  color: #fff !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  margin-top: 4px !important;
}
.pr-step p {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 11.5px !important;
  line-height: 1.5 !important;
}
.pr-step:hover .pr-step__circle {
  background: #f26522 !important;
  border-color: #f26522 !important;
  transform: translateY(-2px) !important;
}
.pr-step:hover .pr-step__circle svg {
  color: #fff !important;
}

/* ---------- Responsive iteration 7 ---------- */
@media (max-width: 1024px) {
  .value-card {
    padding: 26px 22px 24px !important;
    gap: 4px 18px !important;
  }
  .value-card::before {
    font-size: 34px !important;
    padding-right: 18px !important;
  }
}
@media (max-width: 720px) {
  .value-card {
    padding: 24px 20px !important;
    gap: 4px 16px !important;
  }
  .value-card::before {
    font-size: 30px !important;
    padding-right: 16px !important;
  }
}

/* ============================================
   ITERATION 8 — Vertical layout for both
   Values + Flagship 8 features share the same
   design: big bold orange number on top
   ============================================ */

/* ---------- Shared vertical card pattern ---------- */
.value-card,
.adv-card {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  padding: 32px 28px 28px !important;
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-top: 1px solid #e5e5e5 !important;
  border-radius: 4px !important;
  text-align: left !important;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.value-card:hover,
.adv-card:hover {
  border-color: #f26522 !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

/* ---------- Values: number via counter ---------- */
.values-grid {
  counter-reset: vc;
}
.value-card {
  counter-increment: vc;
}
.value-card::before {
  content: "0" counter(vc) !important;
  position: static !important;
  display: block !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 40px !important;
  color: #f26522 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  text-align: left !important;
  width: auto !important;
  height: auto !important;
  align-self: auto !important;
  grid-row: auto !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}
.value-card h4 {
  margin: 0 0 10px !important;
  padding: 0 !important;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1a1a !important;
  font-weight: 700;
}
.value-card h4::before {
  display: none !important;
}
.value-card h4::after {
  display: none !important;
}
.value-card p {
  margin: 0 !important;
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.6 !important;
}

/* ---------- Flagship 8 features: number is HTML ---------- */
.adv-card__num {
  position: static !important;
  display: block !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 40px !important;
  color: #f26522 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: none !important;
  border-right: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  text-align: left !important;
  width: auto !important;
  height: auto !important;
  align-self: auto !important;
  grid-row: auto !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}
.adv-card h4 {
  margin: 0 0 10px !important;
  padding: 0 !important;
  font-size: 16px !important;
  color: #1a1a1a !important;
  font-weight: 700;
}
.adv-card h4::before {
  display: none !important;
}
.adv-card h4::after {
  display: none !important;
}
.adv-card p {
  margin: 0 !important;
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.6 !important;
}

/* ---------- Responsive iteration 8 ---------- */
@media (max-width: 1024px) {
  .value-card,
  .adv-card {
    padding: 28px 24px 26px !important;
  }
  .value-card::before,
  .adv-card__num {
    font-size: 36px !important;
  }
}
@media (max-width: 720px) {
  .value-card,
  .adv-card {
    padding: 26px 22px !important;
  }
  .value-card::before,
  .adv-card__num {
    font-size: 32px !important;
  }
}

/* ============================================
   ITERATION 9 — Number tweaks
   Smaller, semibold, slash restored
   ============================================ */

.value-card::before {
  content: "0" counter(vc) " /" !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  margin: 0 0 16px !important;
}

.adv-card__num {
  font-size: 30px !important;
  font-weight: 600 !important;
  margin: 0 0 16px !important;
}
.adv-card__num::after {
  content: " /";
}

@media (max-width: 1024px) {
  .value-card::before,
  .adv-card__num {
    font-size: 28px !important;
  }
}
@media (max-width: 720px) {
  .value-card::before,
  .adv-card__num {
    font-size: 26px !important;
  }
}

/* ============================================
   ITERATION 10 — Restore original small "01 /" style
   Apply to BOTH values and flagship 8 features
   ============================================ */

.value-card::before {
  content: "0" counter(vc) " /" !important;
  display: block !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  color: #f26522 !important;
  letter-spacing: 0.14em !important;
  line-height: 1 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  text-align: left !important;
}

.adv-card__num {
  display: block !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  color: #f26522 !important;
  letter-spacing: 0.14em !important;
  line-height: 1 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  text-align: left !important;
  border: none !important;
  background: transparent !important;
}
.adv-card__num::after {
  content: " /";
}

@media (max-width: 1024px) {
  .value-card::before,
  .adv-card__num {
    font-size: 12px !important;
  }
}
@media (max-width: 720px) {
  .value-card::before,
  .adv-card__num {
    font-size: 12px !important;
  }
}

/* ============================================
   ITERATION 11 — Bump number label size
   ============================================ */

.value-card::before {
  font-size: 15px !important;
  margin-bottom: 16px !important;
}
.adv-card__num {
  font-size: 15px !important;
  margin-bottom: 16px !important;
}

/* ============================================
   ITERATION 12 — VMP icon: no tilt on hover
   ============================================ */

.vmp:hover .vmp__icon,
.vmp--featured:hover .vmp__icon {
  transform: none !important;
}

/* ============================================
   ITERATION 13 — Remove final CTA top border
   ============================================ */

.final-cta::before {
  display: none !important;
}

/* ============================================
   ITERATION 14 — Hero logo in banner
   ============================================ */

.hero__logo {
  margin-top: 2rem;
}
.hero__logo-img {
  width: 120px;
  height: auto;

}

@media (max-width: 768px) {
  .hero__logo {
    margin-top: 1.5rem;
  }
  .hero__logo-img {
    width: 90px;
  }
}

/* ============================================
   ITERATION 15 — MS Agarwal Foundries section
   ============================================ */

.foundries-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.foundries-section.section--dark .foundries-content .lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}
.foundries-section.section--dark .foundries-content p:last-child {
  color: rgba(255, 255, 255, 0.6);
}
.foundries-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.foundries-logo img {
  height: 140px;
  width: auto;
}

/* ============================================
   ITERATION 16 — YouTube video embed aspect ratio
   ============================================ */

.video__player--yt {
  aspect-ratio: 16/9;
}
.video__player--yt iframe {
  border-radius: var(--radius);
}
.video__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
