/* ============ DESIGN TOKENS ============ */
:root {
  --la-navy: #0033a0;
  --la-navy-dark: #001f5c;
  --la-navy-deep: #0a1845;
  --la-navy-light: #1a4ed8;
  --la-gold: #c9a961;
  --la-gold-dark: #a8884a;
  --la-gold-light: #e0c989;
  --la-ink: #0f172a;
  --la-ink-2: #1e293b;
  --la-slate: #475569;
  --la-slate-2: #64748b;
  --la-cloud: #f8fafc;
  --la-mist: #eef2f7;
  --la-line: #e2e8f0;
  --la-line-2: #cbd5e1;
  --la-white: #ffffff;
  --la-success: #16a34a;
  --la-success-bg: #dcfce7;
  --la-amber: #d97706;
  --la-amber-bg: #fef3c7;
  --la-danger: #dc2626;
  --la-danger-bg: #fee2e2;
  /* category accents */
  --cat-food: #16a34a;
  --cat-beverage: #0891b2;
  --cat-wine: #7c2d12;
  --cat-beer: #b45309;
  --cat-spirit: #4c1d95;
  --cat-coffee: #92400e;
  --cat-beauty: #be185d;
  --cat-candle: #a16207;
  --cat-nutra: #15803d;
  --cat-industrial: #475569;
  /* format accents */
  --la-roll: #0033a0;
  --la-sheet: #0891b2;
  --la-sticker: #7c3aed;
  --la-foil: #b8860b;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.14);
  --shadow-xl: 0 24px 60px rgba(0, 31, 92, 0.2);
  --shadow-gold: 0 12px 32px rgba(201, 169, 97, 0.3);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --container: 1200px;
  --container-narrow: 980px;
}

/* ============ RESET ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--la-ink);
  background: var(--la-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--la-ink);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}
h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}
p {
  color: var(--la-ink-2);
}
a {
  color: var(--la-navy);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--la-navy-dark);
}
img {
  max-width: 100%;
  height: auto;
}
ul,
ol {
  padding-left: 1.25rem;
}
li {
  color: var(--la-ink-2);
  margin-bottom: 0.4rem;
}
strong {
  color: var(--la-ink);
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--container-narrow);
}
section {
  padding: 72px 0;
}
section.section--tight {
  padding: 36px 0;
}
section.section--alt {
  background: var(--la-cloud);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-head h2 {
  margin-top: 8px;
}
.section-head p {
  margin-top: 12px;
  color: var(--la-slate);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--la-navy);
  background: var(--la-mist);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.accent {
  color: var(--la-navy);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.btn--primary {
  background: var(--la-navy);
  color: var(--la-white);
  box-shadow: 0 4px 14px rgba(0, 51, 160, 0.3);
}
.btn--primary:hover {
  background: var(--la-navy-dark);
  color: var(--la-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 51, 160, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--la-ink);
  border-color: var(--la-line-2);
}
.btn--ghost:hover {
  background: var(--la-white);
  border-color: var(--la-navy);
  color: var(--la-navy);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--la-gold);
  color: var(--la-ink);
  box-shadow: 0 4px 14px rgba(201, 169, 97, 0.3);
}
.btn--gold:hover {
  background: var(--la-gold-dark);
  color: var(--la-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}
.btn--lg {
  padding: 15px 20px;
  font-size: 1.02rem;
}
.btn--sm {
  padding: 9px 16px;
  font-size: 0.88rem;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn__group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--la-line);
  transition: box-shadow 0.2s;
}
.nav.is-scrolled {
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--la-ink);
}
.nav__brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--la-navy), var(--la-navy-light));
  color: var(--la-white);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.nav__brand:hover {
  color: var(--la-ink);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu a {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--la-ink-2);
  transition: color 0.2s;
}
.nav__menu a:hover {
  color: var(--la-navy);
}
.nav__menu a.is-active {
  color: var(--la-navy);
}
.nav__menu a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--la-navy);
  margin-top: 4px;
  border-radius: 1px;
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--la-ink);
}
.nav__toggle i {
  width: 24px;
  height: 24px;
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--la-line);
  background: var(--la-cloud);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  font-size: 0.85rem;
  color: var(--la-slate);
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  color: var(--la-slate);
  margin: 0;
}
.breadcrumbs li::after {
  content: "/";
  margin: 0 8px;
  color: var(--la-line-2);
}
.breadcrumbs li:last-child::after {
  display: none;
}
.breadcrumbs a {
  color: var(--la-slate);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--la-navy);
}
.breadcrumbs li[aria-current="page"] {
  color: var(--la-ink);
  font-weight: 600;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 84px 0 72px;
  background: linear-gradient(135deg, #001f5c 0%, #0033a0 55%, #1a4ed8 100%);
  overflow: hidden;
  color: var(--la-white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 700px 420px at 18% 28%,
      rgba(201, 169, 97, 0.28),
      transparent 60%
    ),
    radial-gradient(
      ellipse 600px 360px at 82% 72%,
      rgba(26, 78, 216, 0.45),
      transparent 60%
    );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 960px;
  text-align: center;
}
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--la-gold-light);
  border: 1px solid rgba(201, 169, 97, 0.4);
  backdrop-filter: blur(6px);
}
.hero h1 {
  color: var(--la-white);
  margin: 18px 0 14px;
}
.hero h1 .accent {
  color: var(--la-gold-light);
}
.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 760px;
  margin: 0 auto 26px;
  line-height: 1.65;
}
.hero .btn--primary {
  background: var(--la-gold);
  color: var(--la-ink);
}
.hero .btn--primary:hover {
  background: var(--la-gold-light);
  color: var(--la-ink);
}
.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--la-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}
.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--la-white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 0;
  position: relative;
}
.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.hero-stat__num {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--la-gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============ Two-column hero layout (mirrors custom-labels hero__grid) ============
   Splits the hero into a left content column (eyebrow, h1, lead, buttons) and a
   right visual column containing the stats card. Content is unchanged — only
   the layout grid is introduced. Activated by the .hero__grid wrapper.
   ========================================================================= */
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
/* Override the default centered narrow container when the grid is present */
.hero .container:has(.hero__grid) {
  max-width: 1200px;
  text-align: left;
}
.hero__grid .hero__lead {
  margin-left: 0;
  margin-right: 0;
  max-width: 580px;
}
.hero__grid .btn__group {
  justify-content: flex-start;
}
.hero__visual {
  position: relative;
}
/* Stats become a 2x2 card in the right column (was 4-across centered) */
.hero__visual .hero-stats {
  margin: 0;
  max-width: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  padding: 30px 32px;
}
.hero__visual .hero-stat:not(:last-child)::after {
  display: none;
}
/* Vertical divider between left/right stats in each row */
.hero__visual .hero-stat:nth-child(odd)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
/* Horizontal divider between row 1 and row 2 */
.hero__visual .hero-stat:nth-child(1)::before,
.hero__visual .hero-stat:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero .container:has(.hero__grid) {
    text-align: center;
  }
  .hero__grid .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__grid .btn__group {
    justify-content: center;
  }
  .hero__visual .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 22px 24px;
  }
  .hero__visual .hero-stat:nth-child(odd)::after {
    right: -9px;
  }
}

/* ============ GEO INTRO ============ */
.geo-quote {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--la-ink-2);
  padding: 28px 32px;
  border-left: 4px solid var(--la-gold);
  background: linear-gradient(to right, var(--la-cloud), transparent 80%);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.geo-quote strong {
  color: var(--la-ink);
}

/* ============ CATEGORY GRID ============ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.cat-card {
  --accent: var(--la-navy);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--la-white);
  border: 1px solid var(--la-line);
  border-radius: var(--radius-md);
  padding: 24px 22px 22px;
  transition: all 0.25s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent),
    color-mix(in srgb, var(--accent) 50%, var(--la-gold))
  );
  opacity: 0;
  transition: opacity 0.25s;
}
.cat-card:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--la-line));
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}
.cat-card:hover::before {
  opacity: 1;
}
.cat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 110px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  margin-bottom: 14px;
}
.cat-card__icon i {
  width: 26px;
  height: 26px;
}
.cat-card__icon img {
  border-radius: 5px;
}
.cat-card h3 {
  color: var(--la-ink);
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.cat-card p {
  font-size: 0.92rem;
  color: var(--la-slate);
  margin-bottom: 14px;
  flex-grow: 1;
}
.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}
.cat-card__link i {
  width: 15px;
  height: 15px;
}
.cat-card:hover .cat-card__link {
  gap: 10px;
}
.cat-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

/* category color overrides */
.cat-card--food {
  --accent: var(--cat-food);
}
.cat-card--beverage {
  --accent: var(--cat-beverage);
}
.cat-card--wine {
  --accent: var(--cat-wine);
}
.cat-card--beer {
  --accent: var(--cat-beer);
}
.cat-card--spirit {
  --accent: var(--cat-spirit);
}
.cat-card--coffee {
  --accent: var(--cat-coffee);
}
.cat-card--beauty {
  --accent: var(--cat-beauty);
}
.cat-card--candle {
  --accent: var(--cat-candle);
}
.cat-card--nutra {
  --accent: var(--cat-nutra);
}
.cat-card--industrial {
  --accent: var(--cat-industrial);
}

/* ============ INCLUSIONS (What You Get) — Richpack-style dark split layout ============ */
#what-you-get {
  background: linear-gradient(
    135deg,
    var(--la-navy-deep) 0%,
    var(--la-navy) 55%,
    var(--la-navy-dark) 100%
  );
  color: var(--la-white);
  position: relative;
  overflow: hidden;
}
#what-you-get::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.labelsagent.com/wp-content/uploads/2026/07/Standard-Inclusions-bg.webp")
    center/cover no-repeat;
  filter: brightness(0.9);
  opacity: 0.9;
  /* background:
    radial-gradient(
      circle at 88% 12%,
      rgba(201, 169, 97, 0.22) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 8% 88%,
      rgba(26, 78, 216, 0.28) 0%,
      transparent 50%
    );
  pointer-events: none; */
}
#what-you-get .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}
#what-you-get .section-head {
  text-align: left;
  margin: 0;
  max-width: none;
}
#what-you-get .section-head .eyebrow {
  color: var(--la-gold-light);
}
#what-you-get .section-head h2 {
  color: var(--la-white);
  margin-top: 14px;
}
#what-you-get .section-head p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.inc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 22px;
}
.inc-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-areas: "icon title" "icon body";
  gap: 2px 14px;
  align-items: start;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.inc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--la-gold) 0%,
    var(--la-gold-dark) 100%
  );
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.inc-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 169, 97, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.inc-card:hover::before {
  transform: scaleY(1);
}
.inc-card__icon {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    135deg,
    var(--la-gold) 0%,
    var(--la-gold-dark) 100%
  );
  color: var(--la-navy-deep);
  margin-bottom: 0;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.35);
}
.inc-card__icon i {
  width: 22px;
  height: 22px;
}
.inc-card h3 {
  grid-area: title;
  color: var(--la-white);
  font-size: 1rem;
  font-weight: 600;
  margin: 2px 0 0 0;
  line-height: 1.3;
}
.inc-card p {
  grid-area: body;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 4px 0 0 0;
}
@media (max-width: 900px) {
  #what-you-get .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  #what-you-get .section-head {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .inc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============ FORMAT OPTIONS ============ */
.fmt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.fmt-card {
  --accent: var(--la-navy);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--la-white);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.fmt-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.fmt-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent) 22%, transparent),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.fmt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--la-line));
}
.fmt-card:hover::before {
  transform: scaleY(1);
}
.fmt-card:hover::after {
  opacity: 1;
}
.fmt-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 99px;
  height: 90px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  margin-bottom: 14px;
}
.fmt-card__icon i {
  width: 24px;
  height: 24px;
}
.fmt-card h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.fmt-card p {
  font-size: 0.92rem;
  color: var(--la-slate);
  margin-bottom: 14px;
  flex-grow: 1;
}
.fmt-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fmt-card__link i {
  width: 15px;
  height: 15px;
}
.fmt-card--roll {
  --accent: var(--la-roll);
}
.fmt-card--sheet {
  --accent: var(--la-sheet);
}
.fmt-card--sticker {
  --accent: var(--la-sticker);
}
.fmt-card--foil {
  --accent: var(--la-foil);
}

/* ============ MATCHUP (material matching) ============ */
.matchup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--la-white);
  border: 1px solid var(--la-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.matchup__panel {
  padding: 36px 32px;
}
.matchup__panel--intro {
  background: linear-gradient(135deg, var(--la-navy-deep), var(--la-navy));
  color: var(--la-white);
  position: relative;
}
.matchup__panel--intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.labelsagent.com/wp-content/uploads/2026/07/Material-Matchup-BGIMG.webp")
    left no-repeat;
  bottom: -75%;
  z-index: 0;
}

.matchup__panel--list {
  background: var(--la-white);
}
.matchup__panel--intro .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--la-gold-light);
  border: 1px solid rgba(201, 169, 97, 0.35);
}
.matchup__panel--intro h2 {
  color: var(--la-white);
  margin: 12px 0 14px;
}
.matchup__panel--intro p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.matchup__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  list-style: none;
}
.matchup__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--la-ink-2);
  padding: 14px 16px;
  background: var(--la-cloud);
  border-radius: var(--radius);
  border-left: 3px solid var(--la-gold);
  margin: 0;
}
.matchup__list li strong {
  color: var(--la-ink);
}
.matchup__list li i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--la-navy);
  margin-top: 3px;
}

/* ============ STATS BAND ============ */
.stats-band {
  background: linear-gradient(135deg, var(--la-navy-dark), var(--la-navy-deep));
  color: var(--la-white);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 500px 320px at 12% 50%,
    rgba(201, 169, 97, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.stats-band .container {
  position: relative;
  z-index: 2;
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats-band__item {
  text-align: center;
  padding: 8px 6px;
}
.stats-band__num {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--la-gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stats-band__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============ SAMPLE BANNER ============ */
.sample-banner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--la-cloud), var(--la-mist));
  border: 1px solid var(--la-line);
  border-radius: var(--radius-lg);
  padding: 36px 38px;
  position: relative;
  overflow: hidden;
}
.sample-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 97, 0.15),
    transparent 70%
  );
  pointer-events: none;
}
.sample-banner > div {
  position: relative;
  z-index: 2;
}
.sample-banner h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  margin: 8px 0 10px;
}
.sample-banner p {
  color: var(--la-slate);
  margin-bottom: 18px;
}
.sample-banner__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--la-white);
  border: 1px solid var(--la-gold);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 2;
}
.sample-banner__price strong {
  font-family: "Sora", sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--la-navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.sample-banner__price span {
  display: block;
  font-size: 0.84rem;
  color: var(--la-slate);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ============ TIMELINE KV ============ */
.kv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.kv-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--la-white);
  border: 1px solid var(--la-line);
  border-radius: var(--radius);
  padding: 18px 18px;
  transition: all 0.2s;
}
.kv-item:hover {
  border-color: var(--la-line-2);
  box-shadow: var(--shadow-sm);
}
.kv-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--la-mist);
  color: var(--la-navy);
}
.kv-item__icon i {
  width: 20px;
  height: 20px;
}
.kv-item__body h4 {
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--la-ink);
  margin-bottom: 2px;
}
.kv-item__body p {
  font-size: 0.84rem;
  color: var(--la-slate);
  margin: 0;
  line-height: 1.5;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, #001f5c 0%, #0033a0 55%, #1a4ed8 100%);
  color: var(--la-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 600px 320px at 50% 100%,
    rgba(201, 169, 97, 0.28),
    transparent 60%
  );
  pointer-events: none;
}
.cta-band .container {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.cta-band .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--la-gold-light);
  border: 1px solid rgba(201, 169, 97, 0.35);
}
.cta-band h2 {
  color: var(--la-white);
  margin: 12px 0 12px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 26px;
}
.cta-band .btn--primary {
  background: var(--la-gold);
  color: var(--la-ink);
}
.cta-band .btn--primary:hover {
  background: var(--la-gold-light);
  color: var(--la-ink);
}
.cta-band .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--la-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--la-white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--la-navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--la-white);
  margin-bottom: 14px;
}
.footer-brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--la-gold), var(--la-gold-dark));
  color: var(--la-ink);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.65;
}
.site-footer h4 {
  color: var(--la-white);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer li {
  margin-bottom: 8px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--la-gold-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============ STICKY CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.sticky-cta__inner {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  background: var(--la-white);
  border: 1px solid var(--la-line);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
}
.sticky-cta .btn {
  padding: 9px 16px;
  font-size: 0.86rem;
}

/* ============ REVEAL ANIMATIONS ============ */
/* Content visible by default; animation is progressive enhancement only.
   Previous rule set opacity:0 which hid ~3000px of content (categories grid,
   materials section, etc.) whenever JS/IntersectionObserver failed to fire
   (full-page screenshots, certain browser capture modes, slow JS init). */
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stats-band {
  padding: 40px 0 !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .matchup {
    grid-template-columns: 1fr;
  }
  .matchup__panel--intro {
    padding: 30px 26px;
  }
  .sample-banner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 26px;
  }
  .sample-banner__price {
    max-width: 240px;
    margin: 0 auto;
  }
}
@media (max-width: 780px) {
  section {
    padding: 56px 0;
  }
  .nav__menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--la-white);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px;
    gap: 4px;
    border-bottom: 1px solid var(--la-line);
    box-shadow: var(--shadow-md);
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__menu a {
    padding: 11px 8px;
    border-radius: 8px;
  }
  .nav__menu a.is-active::after {
    display: none;
  }
  .nav__menu a.is-active {
    background: var(--la-mist);
  }
  .nav__toggle {
    display: inline-flex;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px;
  }
  .hero-stat:not(:last-child)::after {
    display: none;
  }
  .hero-stat:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 14%;
    bottom: 14%;
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
  }
  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .cat-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
  }
  .inc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fmt-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .kv-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding: 62px 0 56px;
  }
  .hero__lead {
    font-size: 1rem;
  }
  .btn__group {
    flex-direction: column;
    align: stretch;
  }
  .btn__group .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
  }
  .stats-band__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .cat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cat-card {
    padding: 18px 16px 16px;
  }
  .cat-card__icon {
    width: 88px;
    height: 88px;
    margin-bottom: 10px;
  }
  .cat-card__icon i {
    width: 22px;
    height: 22px;
  }
  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}

/* ============ COMPARE TABLE RESPONSIVE ============ */
/* HTML uses .matrix-wrap as wrapper (not .la-compare-table-wrap), so enable
   horizontal scroll on narrow viewports via :has(). min-width:980px on
   .la-compare-table forces overflow on mobile; without this rule the table
   spills out and breaks the layout. */
.matrix-wrap:has(.la-compare-table) {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.matrix-wrap:has(.la-compare-table)::-webkit-scrollbar {
  height: 8px;
}
.matrix-wrap:has(.la-compare-table)::-webkit-scrollbar-thumb {
  background: rgba(15, 76, 129, 0.35);
  border-radius: 4px;
}

/* ============ FAQ ACCORDION ============ */
/* The HTML uses .faq-q / .faq-a / .faq-a-inner (short form), which are NOT
   defined in avy-design-system.css (that file uses BEM: .faq-item__question,
   .faq-item__answer). Without these rules .faq-a defaults to max-height:none,
   so ALL 6 answers are visible simultaneously and the JS accordion toggle
   (which only flips the .is-open class) has no visual effect. */
.pl-faq-section .axis-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}
.pl-faq-section .faq {
  max-width: 850px;
  margin: 0 auto;
}
.pl-faq-section .faq-item {
  background: #fff;
  border: 1px solid var(--la-line, #e9ecef);
  border-radius: var(--la-radius, 12px);
  margin-bottom: 10px;
  overflow: hidden;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.pl-faq-section .faq-item:hover {
  border-color: var(--la-line-2, #d0d5dd);
}
.pl-faq-section .faq-item.is-open {
  border-color: var(--la-navy, #0033a0);
  box-shadow: 0 8px 24px rgba(0, 51, 160, 0.08);
}
.pl-faq-section .faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--la-ink, #1a1a2e);
  cursor: pointer;
  transition: color 0.15s;
}
.pl-faq-section .faq-q:hover {
  color: var(--la-navy, #0033a0);
}
.pl-faq-section .faq-q-icon {
  margin-left: auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--la-text-3, #666);
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    color 0.15s;
}
.pl-faq-section .faq-item.is-open .faq-q-icon {
  transform: rotate(45deg);
  color: var(--la-navy, #0033a0);
}
.pl-faq-section .faq-q-icon svg,
.pl-faq-section .faq-q-icon i {
  width: 20px;
  height: 20px;
}
/* KEY hide/show rules — without these ALL answers are visible at once */
.pl-faq-section .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.pl-faq-section .faq-item.is-open .faq-a {
  max-height: 600px;
}
.pl-faq-section .faq-a-inner {
  padding: 0 22px 20px 22px;
  color: var(--la-text, #333);
  font-size: 0.98rem;
  line-height: 1.7;
}
.pl-faq-section .faq-a-inner p:last-child {
  margin-bottom: 0;
}
.pl-faq-section .faq-a-inner a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pl-faq-section .faq-a-inner strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .pl-faq-section .faq-q {
    padding: 16px;
    font-size: 0.95rem;
    gap: 12px;
  }
  .pl-faq-section .faq-a-inner {
    padding: 0 16px 16px 16px;
    font-size: 0.92rem;
  }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
