/* =========================================================   MY INDIFUELS - PRODUCTS PAGE   MODERN CUSTOM STYLING   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;800;900&display=swap");

/* ========================================================= 
  ROOT VARIABLES  
 ========================================================= */
:root {
  --mif-primary: #e97136;
  --mif-primary-dark: #c95722;
  --mif-primary-light: #fff4ed;
  --mif-black: #111111;
  --mif-heading: #171717;
  --mif-body: #5c5c5c;
  --mif-white: #ffffff;
  --mif-soft-bg: #fff8f4;
  --mif-border: #e8e8e8;
  --mif-border-light: #f0f0f0;
  --mif-shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.05);
  --mif-shadow-md: 0 15px 40px rgba(0, 0, 0, 0.08);
  --mif-shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);
  --mif-radius-sm: 8px;
  --mif-radius-md: 14px;
  --mif-radius-lg: 20px;
}

/* =========================================================   GLOBAL   ========================================================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background: var(--mif-white);
  color: var(--mif-body);
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ========================================================= 
  PAGE WRAPPER   
========================================================= */
.mif-scope {
  width: 100%;
  overflow: hidden;
}

/* =========================================================
   SECTION   
   ========================================================= */
.mif-sec {
  position: relative;
  padding: 50px 0;
}

.mif-sec--soft {
  background: linear-gradient(
    135deg,
    rgba(233, 113, 54, 0.06),
    rgba(255, 255, 255, 0.9)
  );
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}

.mif-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =========================================================   TYPOGRAPHY   ========================================================= */
.mif-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--mif-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* H1 */
.mif-h1 {
  max-width: 950px;
  margin: 0 0 22px;
  color: var(--mif-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

/* H2 */
.mif-h2 {
  max-width: 850px;
  margin: 0 0 18px;
  color: var(--mif-heading);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

/* H3 */
.mif-h3 {
  margin: 0 0 12px;
  color: var(--mif-heading);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.35;
}

/* Lead */
.mif-lead {
  max-width: 900px;
  margin: 0;
  color: #666666;
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Paragraph */
.mif-p {
  margin: 0 0 16px;
  color: var(--mif-body);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* =========================================================   SECTION SPACING FIX   ========================================================= */
.mif-sec .mif-eyebrow + .mif-h1,
.mif-sec .mif-eyebrow + .mif-h2 {
  margin-top: 0;
}

.mif-h1 + .mif-lead,
.mif-h2 + .mif-lead {
  margin-top: 4px;
}

/* =========================================================   HERO / OUR COMPANY   ========================================================= */
.hero-sec {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: url("/assets/images/page-titles/10.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay over background image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Content stays above background + overlay */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 40px;
}

/* Hero eyebrow */
.hero-sec .mif-eyebrow {
  color: #e97136;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Hero heading */
.hero-sec .mif-h1 {
  color: #ffffff;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 900px;
}

/* Hero paragraph */
.hero-sec .mif-lead {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  max-width: 900px;
  margin-bottom: 30px;
}

/* Navigation chips */
.hero-sec .mif-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-sec .mif-chips li {
  margin: 0;
  padding: 0;
}

/* Chip */
.hero-sec .mif-chips a {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid #e97136;
  border-radius: 50px;
  background: #e97136;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

/* Chip hover */
.hero-sec .mif-chips a:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* =========================================================   TABLET   ========================================================= */
@media (max-width: 991.98px) {
  .hero-sec {
    min-height: 620px;
    background-position: center;
  }

  .hero-sec .mif-h1 {
    font-size: 2.5rem;
  }

  .hero-sec .mif-lead {
    font-size: 20px;
  }
}

/* =========================================================   MOBILE   ========================================================= */
@media (max-width: 768px) {
  .hero-sec {
    min-height: 620px;
    align-items: center;
    background-position: center;
  }

  .hero-sec .mif-h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-sec .mif-lead {
    font-size: 20px;
    line-height: 1.5;
  }

  .hero-sec .mif-chips {
    gap: 8px;
  }

  .hero-sec .mif-chips a {
    padding: 8px 13px;
    font-size: 0.82rem;
  }
}

/* ========================================================= 
  SMALL MOBILE   
========================================================= */
@media (max-width: 575.98px) {
  .hero-sec {
    min-height: 620px;
  }

  .hero-sec .mif-h1 {
    font-size: 1.7rem;
  }

  .hero-sec .mif-lead {
    font-size: 18px;
  }
}

/* =========================================================   PRODUCT  section   ========================================================= */
#mif-fuels .row {
  margin-top: 45px;
  row-gap: 30px;
}

.mif-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 30px;
  border: 1px solid var(--mif-border);
  border-radius: var(--mif-radius-md);
  background: var(--mif-white);
  overflow: hidden;
  box-shadow: var(--mif-shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Top accent line */
.mif-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--mif-primary), #f49a6d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  content: "";
}

/* Hover */
.mif-card:hover {
  border-color: rgba(233, 113, 54, 0.35);
  transform: translateY(-7px);
  box-shadow: var(--mif-shadow-lg);
}

.mif-card:hover::before {
  transform: scaleX(1);
}

/* =========================================================   PRODUCT NAME   ========================================================= */
.mif-card .mif-h3 {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--mif-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* =========================================================   PRODUCT DESCRIPTION   ========================================================= */
/* Short description */
.mif-card > .mif-p:first-of-type {
  margin-bottom: 12px;
  color: var(--mif-primary-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

/* Main description */
.mif-card > .mif-p:nth-of-type(2) {
  margin-bottom: 22px;
  color: var(--mif-body);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* =========================================================   PRODUCT INFORMATION LIST   ========================================================= */
.mif-list {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--mif-border-light);
}

/* List Item */
.mif-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(115px, 145px) 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--mif-border-light);
  color: var(--mif-body);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Remove default bullet */
.mif-list li::before {
  display: none;
}

/* Last item */
.mif-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* =========================================================   LIST LABEL   ========================================================= */
.mif-list li b {
  display: block;
  color: var(--mif-heading);
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.5;
}

/* List content */
.mif-list li > span {
  color: var(--mif-body);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* =========================================================   STATUS TAG   ========================================================= */
.mif-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(233, 113, 54, 0.15);
  border-radius: 50px;
  background: var(--mif-primary-light);
  color: var(--mif-primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Planned Tag */
.mif-tag--amber {
  border-color: rgba(233, 113, 54, 0.2);
  background: #fff1e8;
  color: #c95722;
}

/* =========================================================   CARD STATUS ROW   ========================================================= */
.mif-list li:last-child {
  align-items: center;
}

/* =========================================================   SOFT SECTION IMPROVEMENT   ========================================================= */
.mif-sec--soft {
  background:
    radial-gradient(
      circle at top right,
      rgba(233, 113, 54, 0.08),
      transparent 35%
    ),
    linear-gradient(135deg, #fffaf7 0%, #ffffff 50%, #fff7f2 100%);
}

/* =========================================================   RESPONSIVE — TABLET   ========================================================= */
@media (max-width: 991.98px) {
  #mif-fuels .row {
    margin-top: 35px;
  }

  .mif-card {
    padding: 28px 25px;
  }
}

@media (min-width: 992px) {
  #mif-fuels .row {
    column-gap: 30px;
  }

  #mif-fuels .row > .mif-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  #mif-allied .row > .mif-card {
    flex: 0 0 calc(33.3% - 15px);
    max-width: calc(33.3% - 15px);
  }
}

/* =========================================================   RESPONSIVE — MOBILE   ========================================================= */
@media (max-width: 767.98px) {
  #mif-fuels .row {
    margin-top: 30px;
  }

  .mif-card {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .mif-card:hover {
    transform: translateY(-4px);
  }

  /* Product Name */
  .mif-card .mif-h3 {
    font-size: 1.25rem;
  }

  /* List Layout */
  .mif-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px 0;
  }

  /* Label */
  .mif-list li b {
    font-size: 0.8rem;
  }

  .mif-list li > span {
    font-size: 0.9rem;
  }

  /* Tags */
  .mif-tag {
    padding: 5px 10px;
    font-size: 0.65rem;
    white-space: normal;
  }
}

/* =========================================================   SMALL MOBILE   ========================================================= */
@media (max-width: 575.98px) {
  .mif-card {
    padding: 22px 18px;
  }

  .mif-card .mif-h3 {
    font-size: 1.15rem;
  }

  .mif-card > .mif-p:first-of-type {
    font-size: 0.95rem;
  }

  .mif-card > .mif-p:nth-of-type(2) {
    font-size: 0.9rem;
  }

  .mif-list li {
    font-size: 0.88rem;
  }
}

/* =========================================================
   SECTION 3 — ALLIED PRODUCTS
   ========================================================= */

#mif-allied {
  position: relative;
  padding: 50px 0;
  background: var(--mif-white);
  overflow: hidden;
}

/* =========================================================
   SOFT BACKGROUND DECORATION
   ========================================================= */

#mif-allied::before {
  position: absolute;

  top: -180px;
  right: -180px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: rgba(233, 113, 54, 0.05);

  content: "";

  pointer-events: none;
}

#mif-allied .mif-wrap {
  position: relative;

  z-index: 1;
}

/* =========================================================
   SECTION CONTENT
   ========================================================= */

#mif-allied .mif-eyebrow {
  margin-bottom: 14px;
}

#mif-allied .mif-h2 {
  max-width: 850px;

  margin-bottom: 18px;
}

#mif-allied .mif-lead {
  max-width: 920px;

  margin-bottom: 0;
}

/* =========================================================
   ALLIED PRODUCT GRID
   ========================================================= */

/* =========================================================
   ALLIED PRODUCT GRID GAP
   ========================================================= */

#mif-allied .row {
  margin-top: 45px;
  column-gap: 20px;
}

/* =========================================================
   PRODUCT CARD
   ========================================================= */

#mif-allied .mif-card {
  position: relative;

  display: flex;
  flex-direction: column;

  height: 100%;

  padding: 32px 28px;

  border: 1px solid var(--mif-border);

  border-radius: var(--mif-radius-md);

  background: var(--mif-white);

  overflow: hidden;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* =========================================================
   TOP ORANGE ACCENT
   ========================================================= */

#mif-allied .mif-card::before {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: var(--mif-primary);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.35s ease;

  content: "";
}

/* =========================================================
   CARD HOVER
   ========================================================= */

#mif-allied .mif-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease;
}

/* Card hover background */

#mif-allied .mif-card:hover {
  background: #111111;

  border-color: #111111;

  color: #ffffff;

  transform: translateY(-6px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

#mif-allied .mif-card:hover .mif-h3 {
  color: #ffffff;
}

#mif-allied .mif-card:hover > .mif-p:first-of-type {
  color: #ffffff;
}

#mif-allied .mif-card:hover > .mif-p:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.82);
}

#mif-allied .mif-card:hover .mif-list li b {
  color: #ffffff;
}

#mif-allied .mif-card:hover .mif-list li > span {
  color: rgba(255, 255, 255, 0.82);
}

#mif-allied .mif-card:hover .mif-list li {
  color: rgba(255, 255, 255, 0.82);
}

#mif-allied .mif-card:hover .mif-list {
  border-top-color: rgba(255, 255, 255, 0.25);
}

#mif-allied .mif-card:hover .mif-list li {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

#mif-allied .mif-card:hover .mif-list li b::before {
  background: var(--mif-primary);
}

#mif-allied .mif-card:hover .mif-tag {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--mif-primary-dark);
}

#mif-allied .mif-card .mif-h3,
#mif-allied .mif-card .mif-p,
#mif-allied .mif-list li,
#mif-allied .mif-list li b,
#mif-allied .mif-list li > span,
#mif-allied .mif-list,
#mif-allied .mif-tag {
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

/* =========================================================
   PRODUCT DESCRIPTION
   ========================================================= */

/* Short product description */

#mif-allied .mif-card > .mif-p:first-of-type {
  margin-bottom: 12px;

  color: var(--mif-primary-dark);

  font-size: 0.98rem;

  font-weight: 700;

  line-height: 1.55;
}

/* Main description */

#mif-allied .mif-card > .mif-p:nth-of-type(2) {
  margin-bottom: 22px;

  color: var(--mif-body);

  font-size: 0.94rem;

  line-height: 1.75;
}

/* =========================================================
   PRODUCT INFORMATION LIST
   ========================================================= */

#mif-allied .mif-list {
  margin: auto 0 0;

  padding: 0;

  border-top: 1px solid var(--mif-border-light);

  list-style: none;
}

/* List item */

#mif-allied .mif-list li {
  display: grid;

  grid-template-columns: 105px 1fr;

  gap: 14px;

  margin: 0;

  padding: 15px 0;

  border-bottom: 1px solid var(--mif-border-light);

  list-style: none;

  color: var(--mif-body);

  font-size: 0.9rem;

  line-height: 1.65;
}

#mif-allied .mif-list li::before {
  display: none;
}

/* Last item */

#mif-allied .mif-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* =========================================================
   LIST LABEL
   ========================================================= */

#mif-allied .mif-list li b {
  display: block;
  color: var(--mif-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

/* List content */

#mif-allied .mif-list li > span {
  color: var(--mif-body);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =========================================================
   STATUS TAG
   ========================================================= */

#mif-allied .mif-tag {
  display: inline-flex;
  align-items: center;

  padding: 6px 12px;

  border: 1px solid rgba(233, 113, 54, 0.15);

  border-radius: 50px;

  background: var(--mif-primary-light);

  color: var(--mif-primary-dark);

  font-size: 0.68rem;

  font-weight: 800;

  letter-spacing: 0.05em;

  line-height: 1.3;

  text-transform: uppercase;
}

/* =========================================================
   DEALER NOTE
   ========================================================= */

#mif-allied .mif-note {
  position: relative;

  margin-top: 45px;

  padding: 28px 32px 28px 35px;

  border: 1px solid rgba(233, 113, 54, 0.18);

  border-left: 5px solid var(--mif-primary);

  border-radius: var(--mif-radius-md);

  background: linear-gradient(
    135deg,
    rgba(233, 113, 54, 0.07),
    rgba(255, 255, 255, 0.95)
  );

  box-shadow: var(--mif-shadow-sm);

  overflow: hidden;
}

/* Decorative circle */

#mif-allied .mif-note::before {
  position: absolute;

  top: -60px;
  right: -40px;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(233, 113, 54, 0.07);

  content: "";
}

/* Note content */

#mif-allied .mif-note p {
  position: relative;

  z-index: 1;

  max-width: 1050px;

  margin: 0;

  color: var(--mif-body);

  font-size: 1rem;

  line-height: 1.75;
}

/* Strong text */

#mif-allied .mif-note strong {
  color: var(--mif-heading);

  font-weight: 800;
}

/* =========================================================
   TABLET RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
  #mif-allied {
    padding: 75px 0;
  }

  #mif-allied .row {
    column-gap: 20px;
  }

  #mif-allied .row > .mif-card {
    width: calc((100% - 60px) / 2);
    flex: 0 0 calc((100% - 60px) / 2);
  }

  #mif-allied .mif-card {
    padding: 28px 24px;
  }

  #mif-allied .mif-note {
    margin-top: 35px;
  }
}

/* =========================================================
   MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 767.98px) {
  #mif-allied {
    padding: 60px 0;
  }

  #mif-allied .row {
    gap: 20px;
  }

  #mif-allied .row > .mif-card {
    width: 100%;
    flex: 0 0 100%;
  }

  #mif-allied .mif-card {
    padding: 25px 20px;

    border-radius: 12px;
  }

  #mif-allied .mif-card:hover {
    transform: translateY(-4px);
  }

  /* Product title */

  #mif-allied .mif-card .mif-h3 {
    font-size: 1.2rem;
  }

  /* List mobile */

  #mif-allied .mif-list li {
    grid-template-columns: 1fr;

    gap: 6px;

    padding: 14px 0;
  }

  /* Note */

  #mif-allied .mif-note {
    margin-top: 30px;

    padding: 22px 20px 22px 24px;

    border-radius: 10px;
  }

  #mif-allied .mif-note p {
    font-size: 0.94rem;

    line-height: 1.7;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
  #mif-allied {
    padding: 50px 0;
  }

  #mif-allied .mif-card {
    padding: 22px 18px;
  }

  #mif-allied .mif-card .mif-h3 {
    font-size: 1.12rem;
  }

  #mif-allied .mif-card > .mif-p:first-of-type {
    font-size: 0.92rem;
  }

  #mif-allied .mif-card > .mif-p:nth-of-type(2) {
    font-size: 0.9rem;
  }

  #mif-allied .mif-list li {
    font-size: 0.88rem;
  }

  #mif-allied .mif-note {
    padding: 20px 17px 20px 20px;
  }
}

#mif-how {
  padding: 50px 0;
}

#mif-how .mif-lead {
  max-width: 900px;
  margin-bottom: 45px;
}

/* Cards Grid */

#mif-how .mif-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

/* Card */

#mif-how .mif-list li {
  position: relative;
  min-height: 220px;
  display: block;
  padding: 30px 24px;
  border: 1px solid var(--mif-border);
  border-radius: var(--mif-radius-md);
  background: var(--mif-white);
  list-style: none;
  counter-increment: process;
  box-shadow: var(--mif-shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

/* Number */

#mif-how .mif-list li::before {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  margin-bottom: 16px;

  border-radius: 50%;

  background: var(--mif-primary);

  color: var(--mif-white);

  font-size: 0.85rem;

  font-weight: 800;

  content: counter(process);
}

/* Title */

#mif-how .mif-list li b {
  display: block;

  margin-bottom: 10px;

  color: var(--mif-heading);

  font-size: 1.05rem;

  font-weight: 800;

  line-height: 1.4;

  transition: color 0.3s ease;
}

/* Description */

#mif-how .mif-list li span {
  display: block;

  color: var(--mif-body);

  font-size: 0.95rem;

  line-height: 1.75;

  transition: color 0.3s ease;
}

/* Hover */

#mif-how .mif-list li:hover {
  border-color: var(--mif-primary);

  transform: translateY(-8px);

  box-shadow: var(--mif-shadow-md);
}

#mif-how .mif-list li:hover::before {
  transform: scale(1.08);
}

#mif-how .mif-list li::before {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

#mif-how .mif-list li:hover b {
  color: var(--mif-primary);
}

/* Note */

#mif-how .mif-note {
  margin-top: 40px;

  padding: 28px 30px;

  border-left: 4px solid var(--mif-primary);

  border-radius: var(--mif-radius-md);

  background: var(--mif-white);

  box-shadow: var(--mif-shadow-sm);
}

#mif-how .mif-note p {
  margin: 0;

  color: var(--mif-body);

  font-size: 0.98rem;

  line-height: 1.75;
}

#mif-how .mif-note strong {
  color: var(--mif-heading);
}

/* Tablet */

@media (max-width: 1199.98px) {
  #mif-how .mif-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  #mif-how {
    padding: 70px 0;
  }

  #mif-how .mif-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 767.98px) {
  #mif-how {
    padding: 60px 0;
  }

  #mif-how .mif-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  #mif-how .mif-list li {
    min-height: auto;
    padding: 24px 20px;
  }

  #mif-how .mif-list li:hover {
    transform: translateY(-4px);
  }

  #mif-how .mif-note {
    margin-top: 30px;
    padding: 22px 20px;
  }
}

/* <-- SECTION QUALITY --> */

#mif-quality {
  position: relative;
  padding: 50px 0;
}

#mif-quality .mif-lead {
  max-width: 900px;
  margin-bottom: 40px;
}

#mif-quality .row {
  margin-top: 45px;
  row-gap: 30px;
}

/* <-- QUALITY CARD --> */

#mif-quality .mif-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 30px;
  border: 1px solid var(--mif-border);
  border-radius: var(--mif-radius-md);
  background: var(--mif-white);
  box-shadow: var(--mif-shadow-sm);
  transition: all 0.3s ease;
}

#mif-quality .mif-card .mif-tag {
  width: fit-content;
  margin-bottom: 18px;
}

#mif-quality .mif-card .mif-h3 {
  margin-bottom: 22px;
}

/* LIST */

#mif-quality .mif-list {
  padding: 0;
  list-style: none;
}

#mif-quality .mif-list li {
  position: relative;
  display: block;
  margin: 0;
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid var(--mif-border-light);
  color: var(--mif-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

#mif-quality .mif-list li::before {
  position: absolute;

  top: 18px;

  left: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 20px;

  height: 20px;

  border-radius: 50%;

  background: var(--mif-primary);

  color: var(--mif-white);

  font-size: 0.7rem;

  font-weight: 800;

  line-height: 1;

  content: "✓";
}

#mif-quality .mif-list li:first-child {
  padding-top: 0;
}

#mif-quality .mif-list li:first-child::before {
  top: 3px;
}

#mif-quality .mif-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* <-- NOTE --> */

#mif-quality .mif-note {
  margin-top: 45px;
  padding: 28px 32px;
  border-radius: var(--mif-radius-md);
  border-left: 5px solid var(--mif-primary);
  background: var(--mif-primary-light);
  box-shadow: var(--mif-shadow-sm);
}

#mif-quality .mif-note p {
  margin: 0 0 15px;
  color: var(--mif-body);
  font-size: 0.98rem;
  line-height: 1.75;
}

#mif-quality .mif-note p:last-child {
  margin-bottom: 0;
}

#mif-quality .mif-note strong {
  color: var(--mif-heading);
  font-weight: 800;
}

/* <-- HOVER --> */

#mif-quality .mif-card:hover {
  border-color: var(--mif-primary);
  transform: translateY(-6px);
  box-shadow: var(--mif-shadow-md);
}

#mif-quality .mif-card:hover .mif-h3 {
  color: var(--mif-primary);
}

/* <-- TABLET --> */

@media (max-width: 991.98px) {
  #mif-quality {
    padding: 70px 0;
  }

  #mif-quality .mif-card {
    padding: 28px 24px;
  }
}

/* <-- MOBILE --> */

@media (max-width: 767.98px) {
  #mif-quality {
    padding: 60px 0;
  }

  #mif-quality .mif-lead {
    margin-bottom: 30px;
  }

  #mif-quality .row {
    margin-top: 30px;
  }

  #mif-quality .mif-card {
    padding: 25px 20px;
  }

  #mif-quality .mif-note {
    margin-top: 30px;
    padding: 22px 20px;
  }

  #mif-quality .mif-list li {
    font-size: 0.9rem;
  }
}

/* <-- SMALL MOBILE --> */

@media (max-width: 575.98px) {
  #mif-quality {
    padding: 50px 0;
  }

  #mif-quality .mif-card {
    padding: 22px 18px;
  }

  #mif-quality .mif-note {
    padding: 20px 18px;
  }
}
/* Future section */

#mif-future {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

#mif-future .mif-lead {
  max-width: 900px;
  margin-bottom: 45px;
}

/* Cards row */

#mif-future .row {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: 0;
  margin-right: 0;
}

/* Bootstrap columns */

#mif-future .row > [class*="col-"] {
  display: flex;
}

/* Desktop 3 cards */

@media (min-width: 992px) {
  #mif-future .row > .col-lg-4 {
    width: calc((100% - 36px) / 3);
    flex: 0 0 calc((100% - 36px) / 3);
  }
}

/* Tablet 2 cards */

@media (min-width: 768px) and (max-width: 991.98px) {
  #mif-future .row > .col-md-6 {
    width: calc((100% - 18px) / 2);
    flex: 0 0 calc((100% - 18px) / 2);
  }
}

/* Card */

#mif-future .mif-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 35px 30px;
  border: 1px solid var(--mif-border);
  border-radius: var(--mif-radius-md);
  background: var(--mif-white);
  box-shadow: var(--mif-shadow-sm);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Tag */

#mif-future .mif-card .mif-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 14px;
  border: 1px solid rgba(233, 113, 54, 0.2);
  border-radius: 50px;
  background: var(--mif-primary-light);
  color: var(--mif-primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-transform: uppercase;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

/* Heading */

#mif-future .mif-card .mif-h3 {
  margin-bottom: 16px;

  color: var(--mif-heading);

  font-size: 1.4rem;

  font-weight: 800;

  line-height: 1.35;

  transition: color 0.35s ease;
}

/* Paragraph */

#mif-future .mif-card .mif-p {
  margin-bottom: 0;

  color: var(--mif-body);

  font-size: 0.96rem;

  line-height: 1.8;

  transition: color 0.35s ease;
}

/* Hover */

#mif-future .mif-card:hover {
  border-color: #e97136;

  background: #e97136;

  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(233, 113, 54, 0.25);
}

/* White heading */

#mif-future .mif-card:hover .mif-h3 {
  color: #ffffff;
}

/* White paragraph */

#mif-future .mif-card:hover .mif-p {
  color: #ffffff;
}

/* White tag */

#mif-future .mif-card:hover .mif-tag {
  border-color: rgba(255, 255, 255, 0.45);

  background: rgba(255, 255, 255, 0.15);

  color: #ffffff;
}

/* Note */

#mif-future .mif-note {
  position: relative;

  margin-top: 45px;

  padding: 28px 32px;

  border-left: 4px solid var(--mif-primary);

  border-radius: var(--mif-radius-md);

  background: var(--mif-white);

  box-shadow: var(--mif-shadow-sm);
}

#mif-future .mif-note p {
  margin: 0;

  color: var(--mif-body);

  font-size: 0.98rem;

  line-height: 1.75;
}

#mif-future .mif-note strong {
  color: var(--mif-heading);

  font-weight: 800;
}

/* Tablet */

@media (max-width: 991.98px) {
  #mif-future {
    padding: 70px 0;
  }

  #mif-future .row {
    margin-top: 35px;

    gap: 18px;
  }

  #mif-future .mif-card {
    padding: 28px;
  }
}

/* Mobile */

@media (max-width: 767.98px) {
  #mif-future {
    padding: 60px 0;
  }

  #mif-future .row {
    margin-top: 30px;

    gap: 15px;
  }

  #mif-future .row > [class*="col-"] {
    width: 100%;

    flex: 0 0 100%;
  }

  #mif-future .mif-card {
    padding: 25px 20px;
  }

  #mif-future .mif-card:hover {
    transform: translateY(-4px);
  }

  #mif-future .mif-card .mif-h3 {
    font-size: 1.2rem;
  }

  #mif-future .mif-note {
    margin-top: 30px;

    padding: 22px 20px;
  }
}

/* Small mobile */

@media (max-width: 575.98px) {
  #mif-future {
    padding: 50px 0;
  }

  #mif-future .row {
    gap: 15px;
  }

  #mif-future .mif-card {
    padding: 22px 18px;
  }

  #mif-future .mif-card .mif-h3 {
    font-size: 1.1rem;
  }

  #mif-future .mif-card .mif-p {
    font-size: 0.9rem;
  }
}
/* =========================
   WHERE TO BUY SECTION
========================= */

#mif-buy {
  padding: 80px 0;
  background: #f7f7f5;
}

.mif-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Small Heading */
.mif-eyebrow {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e85d04;
}

/* Main Heading */
.mif-h2 {
  margin-bottom: 45px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: #1f1f1f;
}

/* Cards */
.mif-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.mif-card:hover {
  transform: translateY(-5px);
  border-color: #e85d04;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Card Heading */
.mif-h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
}

/* Card Text */
.mif-p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
}

/* Buttons Wrapper */
.mif-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Common Button */
.mif-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary Button */
.mif-btn--pri {
  background: #e85d04;
  color: #ffffff;
  border: 1px solid #e85d04;
}

.mif-btn--pri:hover {
  background: #c94f03;
  border-color: #c94f03;
  color: #ffffff;
}

/* Secondary Button */
.mif-btn--sec {
  background: transparent;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.mif-btn--sec:hover {
  background: #1f1f1f;
  color: #ffffff;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 767px) {
  #mif-buy {
    padding: 60px 0;
  }

  .mif-h2 {
    margin-bottom: 30px;
  }

  .mif-card {
    padding: 25px;
  }

  .mif-btns {
    flex-direction: column;
  }

  .mif-btn {
    width: 100%;
  }
}/* =========================================
   PRODUCT ENQUIRY / CONTACT SECTION
========================================= */

#mif-contact {
  padding: 50px 0;
  background: #f3ece6;
}


/* =========================================
   HEADING
========================================= */

#mif-contact .mif-h2 {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  color: #1d1d1d;
}


/* =========================================
   LEAD TEXT
========================================= */

#mif-contact .mif-lead {
  max-width: 1050px;
  margin: 0 0 38px;
  font-size: 20px;
  line-height: 1.8;
  color: #747474;
}


/* =========================================
   CONTACT DETAILS
========================================= */

#mif-contact .mif-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1.7fr 1.3fr;
  gap: 20px;
  margin-bottom: 40px;
}

#mif-contact .mif-contact > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #303030;
}

#mif-contact .mif-contact b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #d9672c;
}


/* =========================================
   BUTTONS
========================================= */

#mif-contact .mif-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 40px;
}

#mif-contact .mif-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}


/* Primary Button */

#mif-contact .mif-btn--pri {
  background: #f36f2a;
  border: 1px solid #f36f2a;
  color: #ffffff;
}

#mif-contact .mif-btn--pri:hover {
  background: #d95718;
  border-color: #d95718;
  color: #ffffff;
  transform: translateY(-2px);
}


/* Secondary Button */

#mif-contact .mif-btn--sec {
  background: transparent;
  border: 1px solid #f36f2a;
  color: #c95720;
}

#mif-contact .mif-btn--sec:hover {
  background: #f36f2a;
  border-color: #f36f2a;
  color: #ffffff;

  transform: translateY(-2px);
}


/* =========================================
   DISCLAIMER
========================================= */

#mif-contact .mif-disclaimer {
  width: 100%;
  max-width: 100%;

  margin-top: 0;
  padding: 28px;

  background: rgba(255, 255, 255, 0.55);

  border: 1px solid #d2d2d2;
  border-radius: 14px;

  font-size: 17px;
  line-height: 1.8;
  color: #353535;
}

#mif-contact .mif-disclaimer b {
  font-weight: 700;
  color: #222222;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  #mif-contact {
    padding: 70px 0;
  }

  #mif-contact .mif-contact {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  #mif-contact {
    padding: 55px 0;
  }

  #mif-contact .mif-h2 {
    font-size: 36px;
  }

  #mif-contact .mif-lead {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.7;
  }

  #mif-contact .mif-contact {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
  }

  #mif-contact .mif-contact > div {
    font-size: 16px;
  }

  #mif-contact .mif-btns {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 30px;
  }

  #mif-contact .mif-btn {
    width: 100%;
    min-height: 56px;
  }

  #mif-contact .mif-disclaimer {
    padding: 22px 20px;
    font-size: 15px;
    line-height: 1.7;
  }

}