/* ============================================================
   CHEBIZZ INDIA -- Master Stylesheet
   "No Clutter, Just Better"
   ============================================================ */

/* --- Google Fonts (fallback for Aller Bold / Calibri) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700;800;900&display=swap');

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand colors */
  --clr-red:        #c1443e;
  --clr-red-dark:   #a33832;
  --clr-red-light:  #e8736d;
  --clr-blue:       #293377;
  --clr-blue-dark:  #1c2458;
  --clr-blue-light: #3d4a9e;
  --clr-grey:       #898989;
  --clr-grey-dark:  #555555;
  --clr-yellow:     #eabe03;
  --clr-yellow-dark:#c9a002;
  --clr-silver:     #dddddd;

  /* Neutrals */
  --clr-white:      #ffffff;
  --clr-off-white:  #f7f8fa;
  --clr-bg-alt:     #f2f3f5;
  --clr-border:     #e2e4e9;
  --clr-text:       #1a1a2e;
  --clr-text-muted: #5a5f72;
  --clr-text-light: #8b8fa3;

  /* Typography */
  --ff-heading: "Aller Bold", "Montserrat", "Arial Black", sans-serif;
  --ff-body:    "Calibri", "Inter", "Arial", sans-serif;

  --fs-xs:   0.75rem;   /* 12px */
  --fs-sm:   0.875rem;  /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md:   1.125rem;  /* 18px */
  --fs-lg:   1.25rem;   /* 20px */
  --fs-xl:   1.5rem;    /* 24px */
  --fs-2xl:  2rem;      /* 32px */
  --fs-3xl:  2.5rem;    /* 40px */
  --fs-4xl:  3rem;      /* 48px */
  --fs-5xl:  3.75rem;   /* 60px */

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-black:    900;

  --lh-tight:  1.2;
  --lh-snug:   1.35;
  --lh-normal: 1.6;
  --lh-loose:  1.8;

  /* Spacing (8px grid) */
  --sp-1:  0.25rem;  /* 4px  */
  --sp-2:  0.5rem;   /* 8px  */
  --sp-3:  0.75rem;  /* 12px */
  --sp-4:  1rem;     /* 16px */
  --sp-5:  1.5rem;   /* 24px */
  --sp-6:  2rem;     /* 32px */
  --sp-7:  2.5rem;   /* 40px */
  --sp-8:  3rem;     /* 48px */
  --sp-9:  4rem;     /* 64px */
  --sp-10: 5rem;     /* 80px */
  --sp-11: 6rem;     /* 96px */
  --sp-12: 8rem;     /* 128px */

  /* Borders & Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm:   0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:   0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg:   0 10px 15px rgba(0, 0, 0, 0.06), 0 4px 6px rgba(0, 0, 0, 0.04);
  --shadow-xl:   0 20px 25px rgba(0, 0, 0, 0.08), 0 8px 10px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.55, 0.06, 0.68, 0.19);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

  /* Layout */
  --container-sm:  640px;
  --container-md:  768px;
  --container-lg:  1024px;
  --container-xl:  1200px;
  --container-2xl: 1400px;
  --nav-height:    72px;
}


/* ============================================================
   2. MODERN CSS RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-white);
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
}

p {
  overflow-wrap: break-word;
}

::selection {
  background-color: var(--clr-blue);
  color: var(--clr-white);
}


/* ============================================================
   3. TYPOGRAPHY SYSTEM
   ============================================================ */
h1 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
}

h4 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
}

h5 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
}

h6 {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
}

p {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--clr-text-muted);
}

p.lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: var(--clr-text-muted);
}

small,
.text-sm {
  font-size: var(--fs-sm);
}

.text-xs {
  font-size: var(--fs-xs);
}

.overline {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-red);
}

/* Responsive typography */
@media (max-width: 768px) {
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  h3 { font-size: var(--fs-xl); }
  h4 { font-size: var(--fs-lg); }
}


/* ============================================================
   4. LAYOUT -- Container & Grid
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.container--sm  { max-width: var(--container-sm); }
.container--md  { max-width: var(--container-md); }
.container--lg  { max-width: var(--container-lg); }
.container--xl  { max-width: var(--container-xl); }
.container--2xl { max-width: var(--container-2xl); }

/* Responsive grid */
.grid {
  display: grid;
  gap: var(--sp-6);
}

.grid--2  { grid-template-columns: 1fr; }
.grid--3  { grid-template-columns: 1fr; }
.grid--4  { grid-template-columns: 1fr; }

/* Tablet: 768px+ */
@media (min-width: 768px) {
  .grid--2  { grid-template-columns: repeat(2, 1fr); }
  .grid--3  { grid-template-columns: repeat(2, 1fr); }
  .grid--4  { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .grid--3  { grid-template-columns: repeat(3, 1fr); }
  .grid--4  { grid-template-columns: repeat(4, 1fr); }
}

.flex {
  display: flex;
}

.flex--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex--column {
  display: flex;
  flex-direction: column;
}

.flex--wrap {
  flex-wrap: wrap;
}

.gap-1 { gap: var(--sp-1); }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-5 { gap: var(--sp-5); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--duration-base) var(--ease-smooth);
}

.nav--scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-blue);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}

.nav__link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  transition: color var(--duration-fast) var(--ease-smooth);
  padding: var(--sp-2) 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-red);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover,
.nav__link--active {
  color: var(--clr-text);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: var(--sp-4);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1010;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--clr-text);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-smooth);
  transform-origin: center;
}

.nav__hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown (Products) */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  cursor: pointer;
  padding: var(--sp-2) 0;
  transition: color var(--duration-fast) var(--ease-smooth);
  background: none;
  border: none;
  font-family: inherit;
}

.nav__dropdown-toggle:hover {
  color: var(--clr-text);
}

.nav__dropdown-toggle svg {
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.nav__dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-fast) var(--ease-smooth),
              visibility var(--duration-fast) var(--ease-smooth);
  z-index: 1020;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-item {
  display: block;
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: background-color var(--duration-fast) var(--ease-smooth),
              color var(--duration-fast) var(--ease-smooth);
}

.nav__dropdown-item:hover {
  background-color: var(--clr-off-white);
  color: var(--clr-red);
}

/* JS-driven toggle classes (.nav-toggle, .nav-menu, .scrolled, .active) */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    gap: var(--sp-6);
    background-color: var(--clr-white);
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-out);
    z-index: 1005;
  }

  .nav__links--open,
  .nav__links.active {
    transform: translateX(0);
  }

  .nav__link {
    font-size: var(--fs-lg);
  }

  .nav__dropdown-toggle {
    font-size: var(--fs-lg);
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    padding: var(--sp-2) 0 0 var(--sp-5);
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav__dropdown-menu.is-open {
    display: block;
  }

  .nav__dropdown-item {
    color: var(--clr-text-muted);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--sp-4);
  }
}


/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding: var(--sp-10) 0;
  overflow: hidden;
  background-color: var(--clr-blue);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(41, 51, 119, 0.92) 0%,
    rgba(41, 51, 119, 0.75) 40%,
    rgba(193, 68, 62, 0.6) 100%
  );
}

/* --- Abstract Hero Variant --- */
.hero--abstract {
  background: linear-gradient(135deg, #1a2158 0%, #293377 35%, #3a4599 60%, #293377 80%, #1e1442 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 25% 25%, transparent 0%, transparent 48%, #ffffff 49%, #ffffff 51%, transparent 52%),
    radial-gradient(circle at 75% 75%, transparent 0%, transparent 48%, #ffffff 49%, #ffffff 51%, transparent 52%);
  background-size: 60px 60px;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(193, 68, 62, 0.25), rgba(193, 68, 62, 0.05));
  animation: heroFloat 20s ease-in-out infinite;
}

.hero__shape--2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle at 70% 70%, rgba(234, 190, 3, 0.15), rgba(234, 190, 3, 0.03));
  animation: heroFloat 25s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 15%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: heroFloat 18s ease-in-out infinite 2s;
}

.hero__shape--4 {
  width: 120px;
  height: 120px;
  bottom: 25%;
  left: 20%;
  background: radial-gradient(circle, rgba(193, 68, 62, 0.12), transparent);
  border: 1px solid rgba(193, 68, 62, 0.08);
  animation: heroFloat 22s ease-in-out infinite 4s;
}

.hero__shape--5 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 40%;
  background: rgba(234, 190, 3, 0.08);
  border: 1px solid rgba(234, 190, 3, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: heroMorph 15s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.03); }
}

@keyframes heroMorph {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) translateY(0);
  }
  33% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: rotate(60deg) translateY(-15px);
  }
  66% {
    border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
    transform: rotate(120deg) translateY(10px);
  }
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero__shape { animation: none !important; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__tagline {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-yellow);
  margin-bottom: var(--sp-4);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid rgba(234, 190, 3, 0.4);
  border-radius: var(--radius-full);
}

.hero__title {
  font-size: var(--fs-5xl);
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--sp-9) 0;
  }

  .hero__title {
    font-size: var(--fs-3xl);
  }

  .hero__subtitle {
    font-size: var(--fs-base);
  }
}


/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 28px;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-smooth);
  white-space: nowrap;
  text-align: center;
}

.btn:focus-visible {
  outline: 2px solid var(--clr-blue);
  outline-offset: 2px;
}

/* Primary (Red) */
.btn--primary {
  background-color: var(--clr-red);
  color: var(--clr-white);
  border-color: var(--clr-red);
}

.btn--primary:hover {
  background-color: var(--clr-red-dark);
  border-color: var(--clr-red-dark);
  box-shadow: 0 4px 12px rgba(193, 68, 62, 0.3);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Secondary (Blue) */
.btn--secondary {
  background-color: var(--clr-blue);
  color: var(--clr-white);
  border-color: var(--clr-blue);
}

.btn--secondary:hover {
  background-color: var(--clr-blue-dark);
  border-color: var(--clr-blue-dark);
  box-shadow: 0 4px 12px rgba(41, 51, 119, 0.3);
  transform: translateY(-1px);
}

.btn--secondary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Outline Primary (Red border) */
.btn--outline-primary {
  background-color: transparent;
  color: var(--clr-red);
  border-color: var(--clr-red);
}

.btn--outline-primary:hover {
  background-color: var(--clr-red);
  color: var(--clr-white);
  transform: translateY(-1px);
}

/* Outline Secondary (Blue border) */
.btn--outline-secondary {
  background-color: transparent;
  color: var(--clr-blue);
  border-color: var(--clr-blue);
}

.btn--outline-secondary:hover {
  background-color: var(--clr-blue);
  color: var(--clr-white);
  transform: translateY(-1px);
}

/* Ghost (White / for dark backgrounds) */
.btn--ghost {
  background-color: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--clr-white);
}

/* Sizes */
.btn--sm {
  padding: 8px 18px;
  font-size: var(--fs-xs);
}

.btn--lg {
  padding: 16px 36px;
  font-size: var(--fs-base);
}

.btn--full {
  width: 100%;
}

.btn--icon {
  padding: 10px;
  border-radius: var(--radius-md);
}


/* ============================================================
   8. SECTIONS
   ============================================================ */
.section {
  padding: var(--sp-11) 0;
}

.section--sm {
  padding: var(--sp-9) 0;
}

.section--lg {
  padding: var(--sp-12) 0;
}

/* Alternating backgrounds */
.section--alt {
  background-color: var(--clr-off-white);
}

.section--dark {
  background-color: var(--clr-blue);
  color: var(--clr-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5 {
  color: var(--clr-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-9);
}

.section__header .overline {
  margin-bottom: var(--sp-3);
}

.section__header h2 {
  margin-bottom: var(--sp-4);
}

.section__header p {
  font-size: var(--fs-md);
}

@media (max-width: 768px) {
  .section {
    padding: var(--sp-9) 0;
  }

  .section__header {
    margin-bottom: var(--sp-7);
  }
}


/* ============================================================
   9. CARD COMPONENTS
   ============================================================ */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-smooth);
}

.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.card:hover .card__image img {
  transform: scale(1.04);
}

.card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  background-color: var(--clr-red);
  border-radius: var(--radius-full);
  z-index: 1;
}

.card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
}

.card__category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-red);
  margin-bottom: var(--sp-2);
}

.card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-snug);
}

.card__description {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-5);
  flex-grow: 1;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}

.card__price {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-blue);
}

.card__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-red);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.card__link:hover {
  color: var(--clr-red-dark);
}

/* Horizontal card variant */
@media (min-width: 768px) {
  .card--horizontal {
    flex-direction: row;
  }

  .card--horizontal .card__image {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: auto;
  }
}


/* ============================================================
   10. CONTACT FORM
   ============================================================ */
.form {
  max-width: 640px;
  margin-inline: auto;
}

.form__group {
  margin-bottom: var(--sp-5);
}

.form__label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.form__label--required::after {
  content: " *";
  color: var(--clr-red);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--fs-base);
  color: var(--clr-text);
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-fast) var(--ease-smooth),
              box-shadow var(--duration-fast) var(--ease-smooth);
  appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px rgba(41, 51, 119, 0.12);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--clr-text-light);
}

.form__input--error {
  border-color: var(--clr-red);
}

.form__input--error:focus {
  box-shadow: 0 0 0 3px rgba(193, 68, 62, 0.12);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23898989' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form__row {
  display: grid;
  gap: var(--sp-5);
}

@media (min-width: 768px) {
  .form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form__hint {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
  margin-top: var(--sp-1);
}

.form__error {
  font-size: var(--fs-xs);
  color: var(--clr-red);
  margin-top: var(--sp-1);
}

/* Checkbox / Radio */
.form__check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}

.form__check input[type="checkbox"],
.form__check input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--clr-blue);
  cursor: pointer;
}


/* ============================================================
   11. FOOTER
   ============================================================ */
.footer {
  background-color: var(--clr-blue);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--sp-10);
}

.footer__grid {
  display: grid;
  gap: var(--sp-8);
  padding-bottom: var(--sp-9);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer__brand {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer__brand {
    grid-column: auto;
  }
}

.footer__brand img {
  height: 36px;
  margin-bottom: var(--sp-4);
}

.footer__brand p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  line-height: var(--lh-normal);
}

.footer__tagline {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-yellow);
  margin-top: var(--sp-4);
}

.footer__column h6 {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__column a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer__column a:hover {
  color: var(--clr-white);
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color var(--duration-fast) var(--ease-smooth);
}

.footer__social a:hover {
  background-color: rgba(255, 255, 255, 0.16);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer__legal {
  display: flex;
  gap: var(--sp-5);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.footer__legal a:hover {
  color: var(--clr-white);
}


/* ============================================================
   12. ANIMATIONS & TRANSITIONS
   ============================================================ */

/* Fade-in on scroll (JS applies .is-visible) */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

/* Staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide in from left / right */
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.slide-left.is-visible,
.slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse (for CTAs) */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(193, 68, 62, 0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(193, 68, 62, 0); }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Spin (for loaders) */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 0.8s linear infinite;
}


/* ============================================================
   13. IMAGE HANDLING
   ============================================================ */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aspect-square  { aspect-ratio: 1 / 1; }
.aspect-video   { aspect-ratio: 16 / 9; }
.aspect-wide    { aspect-ratio: 21 / 9; }
.aspect-photo   { aspect-ratio: 4 / 3; }
.aspect-portrait{ aspect-ratio: 3 / 4; }

.img-rounded    { border-radius: var(--radius-lg); }
.img-circle     { border-radius: var(--radius-full); }

.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.img-wrapper:hover img {
  transform: scale(1.03);
}


/* ============================================================
   14. FEATURE / STATS COMPONENTS
   ============================================================ */
.feature {
  text-align: center;
  padding: var(--sp-6);
}

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-5);
  background-color: rgba(193, 68, 62, 0.08);
  border-radius: var(--radius-lg);
  color: var(--clr-red);
  transition: background-color var(--duration-base) var(--ease-smooth);
}

.feature:hover .feature__icon {
  background-color: var(--clr-red);
  color: var(--clr-white);
}

.feature__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-3);
}

.feature__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* Stats */
.stat {
  text-align: center;
  padding: var(--sp-5);
}

.stat__number {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: var(--clr-red);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat__label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ============================================================
   15. TESTIMONIAL
   ============================================================ */
.testimonial {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  text-align: center;
  transition: box-shadow var(--duration-base) var(--ease-smooth);
}

.testimonial:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial__quote {
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-5);
  position: relative;
}

.testimonial__quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--clr-red);
  opacity: 0.3;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto var(--sp-3);
}

.testimonial__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.testimonial__role {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
}


/* ============================================================
   16. CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-9) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-full);
  background: rgba(193, 68, 62, 0.12);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--sp-7);
  position: relative;
}

.cta-banner .btn {
  position: relative;
}


/* ============================================================
   17. UTILITY CLASSES
   ============================================================ */

/* --- Text alignment --- */
.text-left    { text-align: left; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }

@media (min-width: 768px) {
  .md\:text-left   { text-align: left; }
  .md\:text-center { text-align: center; }
  .md\:text-right  { text-align: right; }
}

/* --- Text colors --- */
.text-red     { color: var(--clr-red); }
.text-blue    { color: var(--clr-blue); }
.text-grey    { color: var(--clr-grey); }
.text-yellow  { color: var(--clr-yellow); }
.text-white   { color: var(--clr-white); }
.text-muted   { color: var(--clr-text-muted); }

/* --- Background colors --- */
.bg-white   { background-color: var(--clr-white); }
.bg-off-white { background-color: var(--clr-off-white); }
.bg-red     { background-color: var(--clr-red); }
.bg-blue    { background-color: var(--clr-blue); }
.bg-grey    { background-color: var(--clr-grey); }
.bg-silver  { background-color: var(--clr-silver); }

/* --- Spacing (margin) --- */
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: var(--sp-1); }
.mt-2  { margin-top: var(--sp-2); }
.mt-3  { margin-top: var(--sp-3); }
.mt-4  { margin-top: var(--sp-4); }
.mt-5  { margin-top: var(--sp-5); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-9  { margin-top: var(--sp-9); }
.mt-10 { margin-top: var(--sp-10); }

.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: var(--sp-1); }
.mb-2  { margin-bottom: var(--sp-2); }
.mb-3  { margin-bottom: var(--sp-3); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-5  { margin-bottom: var(--sp-5); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.mb-9  { margin-bottom: var(--sp-9); }
.mb-10 { margin-bottom: var(--sp-10); }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mx-auto { margin-inline: auto; }

/* --- Spacing (padding) --- */
.pt-0  { padding-top: 0; }
.pt-4  { padding-top: var(--sp-4); }
.pt-6  { padding-top: var(--sp-6); }
.pt-8  { padding-top: var(--sp-8); }
.pt-10 { padding-top: var(--sp-10); }

.pb-0  { padding-bottom: 0; }
.pb-4  { padding-bottom: var(--sp-4); }
.pb-6  { padding-bottom: var(--sp-6); }
.pb-8  { padding-bottom: var(--sp-8); }
.pb-10 { padding-bottom: var(--sp-10); }

.px-4  { padding-inline: var(--sp-4); }
.px-5  { padding-inline: var(--sp-5); }
.px-6  { padding-inline: var(--sp-6); }

.py-4  { padding-block: var(--sp-4); }
.py-6  { padding-block: var(--sp-6); }
.py-8  { padding-block: var(--sp-8); }
.py-10 { padding-block: var(--sp-10); }

.p-4   { padding: var(--sp-4); }
.p-5   { padding: var(--sp-5); }
.p-6   { padding: var(--sp-6); }
.p-8   { padding: var(--sp-8); }

/* --- Display --- */
.d-none      { display: none; }
.d-block     { display: block; }
.d-flex      { display: flex; }
.d-grid      { display: grid; }
.d-inline    { display: inline; }
.d-inline-block { display: inline-block; }

@media (min-width: 768px) {
  .md\:d-none  { display: none; }
  .md\:d-block { display: block; }
  .md\:d-flex  { display: flex; }
}

@media (min-width: 1024px) {
  .lg\:d-none  { display: none; }
  .lg\:d-block { display: block; }
  .lg\:d-flex  { display: flex; }
}

/* --- Width / Height --- */
.w-full  { width: 100%; }
.h-full  { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* --- Position --- */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky   { position: sticky; }

/* --- Overflow --- */
.overflow-hidden { overflow: hidden; }

/* --- Border --- */
.border        { border: 1px solid var(--clr-border); }
.border-top    { border-top: 1px solid var(--clr-border); }
.border-bottom { border-bottom: 1px solid var(--clr-border); }
.rounded-sm    { border-radius: var(--radius-sm); }
.rounded-md    { border-radius: var(--radius-md); }
.rounded-lg    { border-radius: var(--radius-lg); }
.rounded-xl    { border-radius: var(--radius-xl); }
.rounded-full  { border-radius: var(--radius-full); }

/* --- Shadow --- */
.shadow-sm  { box-shadow: var(--shadow-sm); }
.shadow-md  { box-shadow: var(--shadow-md); }
.shadow-lg  { box-shadow: var(--shadow-lg); }
.shadow-xl  { box-shadow: var(--shadow-xl); }

/* --- Max-width for readability --- */
.max-w-prose { max-width: 65ch; }
.max-w-sm    { max-width: var(--container-sm); }
.max-w-md    { max-width: var(--container-md); }
.max-w-lg    { max-width: var(--container-lg); }


/* ============================================================
   18. DIVIDER / SEPARATOR
   ============================================================ */
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--clr-border);
  border: none;
  margin: var(--sp-8) 0;
}

.divider--accent {
  height: 3px;
  width: 48px;
  background-color: var(--clr-red);
  border-radius: var(--radius-full);
  margin: var(--sp-5) auto;
}


/* ============================================================
   19. BADGE / TAG
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  line-height: 1.4;
}

.badge--red {
  background-color: rgba(193, 68, 62, 0.1);
  color: var(--clr-red);
}

.badge--blue {
  background-color: rgba(41, 51, 119, 0.1);
  color: var(--clr-blue);
}

.badge--grey {
  background-color: var(--clr-off-white);
  color: var(--clr-grey);
}

.badge--yellow {
  background-color: rgba(234, 190, 3, 0.12);
  color: var(--clr-yellow-dark);
}


/* ============================================================
   20. SCROLL-TRIGGERED ANIMATION (IntersectionObserver helper)
   ============================================================
   Include this JS snippet on the page:

   const observer = new IntersectionObserver((entries) => {
     entries.forEach(entry => {
       if (entry.isIntersecting) {
         entry.target.classList.add('is-visible');
       }
     });
   }, { threshold: 0.15 });

   document.querySelectorAll('.fade-in, .scale-in, .slide-left, .slide-right, .stagger')
     .forEach(el => observer.observe(el));
   ============================================================ */


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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  padding: var(--sp-3) var(--sp-5);
  background-color: var(--clr-blue);
  color: var(--clr-white);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top var(--duration-fast) var(--ease-smooth);
}

.skip-link:focus {
  top: var(--sp-4);
}

/* Focus ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--clr-blue);
  outline-offset: 2px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .scale-in,
  .slide-left,
  .slide-right,
  .stagger > * {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   22. PAGE HERO (Product pages -- 40vh)
   ============================================================ */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: var(--sp-9) 0;
  background-color: var(--clr-blue);
  overflow: hidden;
  text-align: center;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(41, 51, 119, 0.92) 0%,
    rgba(41, 51, 119, 0.8) 50%,
    rgba(193, 68, 62, 0.65) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: var(--fs-4xl);
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

@media (max-width: 768px) {
  .page-hero__title {
    font-size: var(--fs-2xl);
  }
}


/* ============================================================
   23. BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: var(--sp-2);
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.breadcrumb a:hover {
  color: var(--clr-white);
}

.breadcrumb .breadcrumb--current {
  color: var(--clr-yellow);
}


/* ============================================================
   24. ACCORDION (Product pages)
   ============================================================ */
.accordion {
  max-width: 800px;
  margin-inline: auto;
}

.accordion-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: box-shadow var(--duration-base) var(--ease-smooth);
}

.accordion-item:hover {
  box-shadow: var(--shadow-sm);
}

.accordion-item.active {
  border-color: var(--clr-red);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-5);
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  background-color: var(--clr-white);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-smooth);
  border: none;
}

.accordion-header:hover {
  background-color: var(--clr-off-white);
}

.accordion-header::after {
  content: "+";
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-red);
  transition: transform var(--duration-base) var(--ease-smooth);
  flex-shrink: 0;
  margin-left: var(--sp-4);
}

.accordion-item.active .accordion-header::after {
  content: "\2212";
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-smooth);
}

.accordion-content__inner {
  padding: 0 var(--sp-5) var(--sp-5);
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}


/* ============================================================
   25. TWO-COLUMN SPLIT (Sellers / Buyers)
   ============================================================ */
.split {
  display: grid;
  gap: var(--sp-8);
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split__column {
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  background-color: var(--clr-white);
}

.split__column h3 {
  margin-bottom: var(--sp-5);
  color: var(--clr-blue);
}

.split__column ul {
  list-style: none;
  padding: 0;
}

.split__column ul li {
  position: relative;
  padding-left: var(--sp-5);
  padding-bottom: var(--sp-3);
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}

.split__column ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--clr-red);
}


/* ============================================================
   26. BENEFIT / ICON CARD
   ============================================================ */
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-6);
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-base) var(--ease-smooth);
}

.benefit-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--sp-4);
  background-color: rgba(193, 68, 62, 0.08);
  border-radius: var(--radius-lg);
  color: var(--clr-red);
}

.benefit-card:hover .benefit-card__icon {
  background-color: var(--clr-red);
  color: var(--clr-white);
}

.benefit-card__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-2);
}

.benefit-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}


/* ============================================================
   27. ABOUT PAGE SECTIONS
   ============================================================ */

/* --- Our Story two-column layout --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}

@media (min-width: 768px) {
  .about-story {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--sp-9);
  }
}

.about-story__text h2 {
  margin-bottom: var(--sp-5);
}

.about-story__text .overline {
  margin-bottom: var(--sp-3);
  display: block;
}

.about-story__text p {
  margin-bottom: var(--sp-4);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
}

.about-story__card {
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story__card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 260px;
  height: 260px;
  border-radius: var(--radius-full);
  background: rgba(193, 68, 62, 0.15);
  pointer-events: none;
}

.about-story__card::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-full);
  background: rgba(234, 190, 3, 0.1);
  pointer-events: none;
}

.about-story__card h3 {
  color: var(--clr-white);
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
}

.about-story__card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-md);
  position: relative;
  z-index: 1;
}

.about-story__card .stat-row {
  display: flex;
  gap: var(--sp-7);
  margin-top: var(--sp-6);
  position: relative;
  z-index: 1;
}

.about-story__card .stat-item .stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--clr-yellow);
  line-height: 1;
}

.about-story__card .stat-item .stat-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--sp-1);
}

/* --- Vision & Mission cards --- */
.vm-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .vm-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.vm-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.vm-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.vm-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-5);
  font-size: 1.5rem;
}

.vm-card__icon--blue {
  background-color: rgba(41, 51, 119, 0.08);
  color: var(--clr-blue);
}

.vm-card__icon--red {
  background-color: rgba(193, 68, 62, 0.08);
  color: var(--clr-red);
}

.vm-card h3 {
  margin-bottom: var(--sp-4);
}

.vm-card p {
  margin-bottom: var(--sp-3);
}

.vm-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: 0;
  list-style: none;
}

.vm-card ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}

.vm-card ul li .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(193, 68, 62, 0.1);
  color: var(--clr-red);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  margin-top: 2px;
}

/* --- Values & Culture feature blocks --- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-block {
  text-align: center;
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background-color: var(--clr-white);
  transition: all var(--duration-base) var(--ease-smooth);
}

.value-block:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.value-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-4);
  background-color: rgba(193, 68, 62, 0.08);
  border-radius: var(--radius-lg);
  color: var(--clr-red);
  font-size: 1.4rem;
  transition: all var(--duration-base) var(--ease-smooth);
}

.value-block:hover .value-block__icon {
  background-color: var(--clr-red);
  color: var(--clr-white);
}

.value-block h4 {
  margin-bottom: var(--sp-3);
  font-size: var(--fs-md);
}

.value-block p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* --- About CTA sections (Join Us, Advertise, Franchisee) --- */
.about-cta-section {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.about-cta-section h2 {
  margin-bottom: var(--sp-4);
}

.about-cta-section .lead-quote {
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
}

.about-cta-section p {
  margin-bottom: var(--sp-5);
  font-size: var(--fs-base);
}

.about-cta-section .btn {
  margin-top: var(--sp-2);
}

/* Info blocks side-by-side */
.about-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}

@media (min-width: 768px) {
  .about-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-info-block {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-7);
  text-align: center;
  transition: all var(--duration-base) var(--ease-smooth);
}

.about-info-block:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.about-info-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-5);
  background-color: rgba(41, 51, 119, 0.08);
  border-radius: var(--radius-full);
  color: var(--clr-blue);
  font-size: 1.6rem;
}

.about-info-block h3 {
  margin-bottom: var(--sp-3);
}

.about-info-block p {
  margin-bottom: var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* People section */
.people-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}

@media (min-width: 768px) {
  .people-section {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.people-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.people-icon-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  text-align: center;
  transition: all var(--duration-base) var(--ease-smooth);
}

.people-icon-card:hover {
  border-color: var(--clr-red);
  box-shadow: var(--shadow-md);
}

.people-icon-card .icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-2);
}

.people-icon-card span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ============================================================
   28. PRINT STYLES
   ============================================================ */
@media print {
  .nav,
  .footer,
  .btn,
  .nav__hamburger {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}
