/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --la-navy: #0033a0;
  --la-navy-dark: #002280;
  --la-navy-deep: #001a5c;
  --la-navy-ink: #001347;
  --la-gold: #c9a961;
  --la-gold-light: #e0c884;
  --la-gold-dark: #a88944;

  --la-ink: #0f172a;
  --la-ink-2: #1e293b;
  --la-text: #334155;
  --la-muted: #64748b;
  --la-muted-2: #94a3b8;
  --la-line: #e2e8f0;
  --la-line-2: #cbd5e1;

  --la-bg: #ffffff;
  --la-bg-alt: #f5f7fb;
  --la-bg-paper: #fafbfd;
  --la-bg-navy-grad: linear-gradient(
    135deg,
    #0033a0 0%,
    #002280 55%,
    #001a5c 100%
  );
  --la-bg-soft-grad: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);

  --la-success: #10b981;
  --la-success-bg: #dcfce7;
  --la-warn: #f59e0b;
  --la-warn-bg: #fef3c7;
  --la-no: #ef4444;
  --la-no-bg: #fee2e2;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
  --shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 36px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.14);
  --shadow-navy: 0 18px 42px rgba(0, 51, 160, 0.28);

  --font-display:
    "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --font-mono:
    "Inter", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --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: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--la-text);
  background: var(--la-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--la-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--la-navy-dark);
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
:focus-visible {
  outline: 3px solid rgba(0, 51, 160, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}
#applications {
  position: relative;
  isolation: isolate; /* 建立 stacking context，避免 ::before 的 z-index:-1 被祖先白底遮住 */
}

#applications::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.labelsagent.com/wp-content/uploads/2026/07/labels-container-blue-background.webp")
    center/cover no-repeat;
  filter: brightness(0.9);
  opacity: 0.5;
  z-index: -1;
}
/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 88px 0;
}
.section--tight {
  padding: 48px 0;
}
.section--alt {
  background: var(--la-bg-alt);
}
.section--navy {
  background: var(--la-bg-navy-grad);
  color: #e8eefc;
}
.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--la-navy);
  background: rgba(0, 51, 160, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section--navy .section-head .eyebrow {
  background: rgba(201, 169, 97, 0.18);
  color: var(--la-gold-light);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--la-ink);
  letter-spacing: -0.02em;
}
.section--navy .section-head h2 {
  color: #fff;
}
.section-head p {
  margin-top: 14px;
  font-size: 18px;
  color: var(--la-muted);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--la-navy);
}

/* Grid system */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--la-navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--la-navy-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--gold {
  background: var(--la-gold);
  color: #1a1308;
}
.btn--gold:hover {
  background: var(--la-gold-dark);
  color: #1a1308;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--la-navy);
  border-color: var(--la-line-2);
}
.btn--outline:hover {
  border-color: var(--la-navy);
  background: rgba(0, 51, 160, 0.04);
}
.btn--dark {
  background: var(--la-ink);
  color: #fff;
}
.btn--dark:hover {
  background: #000;
  color: #fff;
}
.btn--lg {
  padding: 17px 30px;
  font-size: 16px;
}
.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn__group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ============================================================
   Nav
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--la-navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  z-index: 9999;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--la-line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--la-ink);
  font-size: 18px;
}
.nav__brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--la-navy);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.nav__brand:hover {
  color: var(--la-ink);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--la-ink-2);
  position: relative;
  padding: 6px 0;
}
.nav__menu a:hover {
  color: var(--la-navy);
}
.nav__menu a.is-active {
  color: var(--la-navy);
}
.nav__menu a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--la-navy);
  border-radius: 2px;
}
.nav__toggle {
  display: none;
  font-size: 24px;
  background: none;
  color: var(--la-ink);
  padding: 8px;
}

/* ============================================================
   Breadcrumbs
   ============================================================ */
.breadcrumbs {
  background: var(--la-bg-alt);
  border-bottom: 1px solid var(--la-line);
  padding: 14px 0;
  font-size: 13.5px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--la-muted);
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--la-muted-2);
}
.breadcrumbs a {
  color: var(--la-muted);
}
.breadcrumbs a:hover {
  color: var(--la-navy);
}
.breadcrumbs li[aria-current] {
  color: var(--la-ink);
  font-weight: 500;
}

/* ============================================================
   Hero — Source Hub split
   ============================================================ */
.hero {
  position: relative;
  background: var(--la-bg-soft-grad);
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 500px at 88% 0%,
      rgba(0, 51, 160, 0.1),
      transparent 60%
    ),
    radial-gradient(
      600px 380px at 6% 100%,
      rgba(201, 169, 97, 0.08),
      transparent 65%
    );
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--la-navy);
  background: rgba(0, 51, 160, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--la-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.25);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--la-ink);
  margin-bottom: 22px;
}
.hero h1 .accent {
  color: var(--la-navy);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 10px;
  background: rgba(201, 169, 97, 0.38);
  z-index: -1;
  border-radius: 4px;
}
.hero__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--la-text);
  max-width: 580px;
  margin-bottom: 28px;
}
.hero__cta {
  margin-bottom: 34px;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--la-line);
}
.hero__trust-item .num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--la-navy);
  letter-spacing: -0.02em;
}
.hero__trust-item .lbl {
  font-size: 13px;
  color: var(--la-muted);
  margin-top: 2px;
  line-height: 1.35;
}

/* Hero visual — format showcase card */
.hero__visual {
  position: relative;
}
.format-stack {
  position: relative;
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.format-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  background: linear-gradient(90deg, var(--la-navy) 0%, var(--la-gold) 100%);
  border-radius: 0 0 4px 4px;
}
.format-stack__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px dashed var(--la-line);
}
.format-stack__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--la-ink);
}
.format-stack__badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--la-gold-dark);
  background: rgba(201, 169, 97, 0.14);
  padding: 5px 10px;
  border-radius: 999px;
}
.format-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.format-mini {
  position: relative;
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--la-line);
  background: var(--la-bg-paper);
  transition: all 0.25s ease;
}
.format-mini:hover {
  border-color: var(--la-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.format-mini__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 51, 160, 0.08);
  color: var(--la-navy);
  margin-bottom: 10px;
}
.format-mini__icon svg {
  width: 20px;
  height: 20px;
}
.format-mini__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--la-ink);
  margin-bottom: 4px;
}
.format-mini__qty {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--la-muted);
  letter-spacing: 0.02em;
}
.format-stack__foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--la-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
}
.format-stack__foot .label {
  color: var(--la-muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.format-stack__foot .value {
  color: var(--la-ink);
  font-weight: 600;
}

.hero__float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--la-line);
  font-size: 13px;
}
.hero__float--1 {
  top: -18px;
  right: -22px;
}
.hero__float--2 {
  bottom: -18px;
  left: -26px;
}
.hero__float .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--la-bg-alt);
  color: var(--la-navy);
}
.hero__float .ico svg {
  width: 18px;
  height: 18px;
}
.hero__float strong {
  display: block;
  font-family: var(--font-display);
  color: var(--la-ink);
  font-size: 13.5px;
}
.hero__float span {
  color: var(--la-muted);
  font-size: 11.5px;
}

/* ============================================================
   Trust bar (animated stats)
   ============================================================ */
.trust-bar {
  background: var(--la-bg-navy-grad);
  color: #fff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px 220px at 20% 50%,
    rgba(201, 169, 97, 0.16),
    transparent 60%
  );
}
.trust-bar__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-stat {
  padding: 0 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-stat:first-child {
  border-left: none;
  padding-left: 0;
}
.trust-stat .num {
  font-family: var(--font-mono);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.trust-stat .num .suffix {
  color: var(--la-gold-light);
}
.trust-stat .lbl {
  margin-top: 8px;
  font-size: 13.5px;
  color: #b8c6e6;
  letter-spacing: 0.02em;
}

/* ============================================================
   GEO intro paragraph
   ============================================================ */
.geo-quote {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.75;
  color: var(--la-ink-2);
  padding: 32px 36px;
  background: #fff;
  border-left: 4px solid var(--la-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}
.geo-quote::before {
  content:"\201C";
  display: block;
  font-family: "Sora", serif;
  font-size: 64px;
  color: var(--la-gold);
  line-height: 0.6;
  margin-bottom: 8px;
  opacity: 0.6;
}

/* ============================================================
   Format Showcase
   ============================================================ */
.format-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.format-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.format-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--la-navy), var(--la-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.format-card:hover {
  border-color: var(--la-navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.format-card:hover::before {
  transform: scaleX(1);
}
.format-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.format-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 51, 160, 0.08);
  color: var(--la-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.format-card__icon svg {
  width: 24px;
  height: 24px;
}
.format-card__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--la-gold-dark);
  background: rgba(201, 169, 97, 0.14);
  padding: 4px 9px;
  border-radius: 999px;
}
.format-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--la-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.format-card__tagline {
  font-size: 14px;
  color: var(--la-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.format-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  border-top: 1px dashed var(--la-line);
}
.format-card__specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--la-line);
  font-size: 13px;
}
.format-card__specs li .k {
  color: var(--la-muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.format-card__specs li .v {
  color: var(--la-ink);
  font-weight: 600;
}
.format-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--la-navy);
}
.format-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.format-card:hover .format-card__cta svg {
  transform: translateX(4px);
}

/* ============================================================
   Format Finder Wizard
   ============================================================ */
.wizard {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}
.wizard__head {
  padding: 24px 32px;
  background: var(--la-bg-navy-grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.wizard__head .title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wizard__head .title .ico {
  width: 42px;
  height: 42px;
  background: rgba(201, 169, 97, 0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--la-gold-light);
}
.wizard__head .title .ico svg {
  width: 22px;
  height: 22px;
}
.wizard__head h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
.wizard__head p {
  font-size: 12.5px;
  color: #b8c6e6;
  margin-top: 2px;
}
.wizard__progress {
  display: flex;
  gap: 6px;
  align-items: center;
}
.wizard__progress .step {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.wizard__progress .step.active {
  background: var(--la-gold);
}
.wizard__progress .step.done {
  background: #fff;
}

.wizard__body {
  padding: 36px 32px;
}
.wizard__step {
  display: none;
}
.wizard__step.is-active {
  display: block;
  animation: fadeIn 0.35s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wizard__q {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--la-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.wizard__hint {
  font-size: 14px;
  color: var(--la-muted);
  margin-bottom: 24px;
}
.wizard__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.wizard__opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-align: left;
  border: 2px solid var(--la-line);
  border-radius: var(--radius);
  background: #fff;
  transition: all 0.2s ease;
}
.wizard__opt:hover {
  border-color: var(--la-navy);
  background: rgba(0, 51, 160, 0.03);
}
.wizard__opt.is-selected {
  border-color: var(--la-navy);
  background: rgba(0, 51, 160, 0.06);
  box-shadow: var(--shadow-xs);
}
.wizard__opt .ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--la-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--la-navy);
}
.wizard__opt .ico svg {
  width: 20px;
  height: 20px;
}
.wizard__opt .text {
  flex: 1;
}
.wizard__opt .text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--la-ink);
  font-weight: 600;
}
.wizard__opt .text span {
  font-size: 12.5px;
  color: var(--la-muted);
}

.wizard__foot {
  padding: 18px 32px;
  background: var(--la-bg-alt);
  border-top: 1px solid var(--la-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.wizard__back {
  font-size: 13.5px;
  color: var(--la-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.wizard__back:hover {
  color: var(--la-navy);
}
.wizard__back svg {
  width: 14px;
  height: 14px;
}
.wizard__next {
  background: var(--la-navy);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.wizard__next:hover {
  background: var(--la-navy-dark);
}
.wizard__next:disabled {
  background: var(--la-muted-2);
  cursor: not-allowed;
}
.wizard__next svg {
  width: 14px;
  height: 14px;
}

/* Wizard result */
.wizard__result {
  display: none;
  padding: 40px 32px;
  text-align: center;
}
.wizard__result.is-active {
  display: block;
  animation: fadeIn 0.4s ease;
}
.wizard__result .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--la-success-bg);
  color: var(--la-success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.wizard__result .check svg {
  width: 32px;
  height: 32px;
}
.wizard__result h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--la-ink);
  margin-bottom: 8px;
}
.wizard__result .rec {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--la-gold-dark);
  background: rgba(201, 169, 97, 0.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wizard__result p {
  font-size: 15.5px;
  color: var(--la-text);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.wizard__result .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.wizard__restart {
  font-size: 13.5px;
  color: var(--la-muted);
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wizard__restart:hover {
  color: var(--la-navy);
}

/* ============================================================
   Comparison Matrix
   ============================================================ */
.cmp-wrap {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.cmp-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.cmp th,
.cmp td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--la-line);
}
.cmp thead th {
  background: var(--la-bg-alt);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--la-ink);
  border-bottom: 2px solid var(--la-line-2);
  position: sticky;
  top: 0;
}
.cmp thead th:not(:first-child) {
  text-align: center;
}
.cmp thead th .sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--la-muted);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cmp tbody td:first-child {
  font-weight: 600;
  color: var(--la-ink);
  background: rgba(0, 51, 160, 0.02);
}
.cmp tbody td:not(:first-child) {
  text-align: center;
}
.cmp tbody tr:hover td {
  background: rgba(0, 51, 160, 0.04);
}
.cmp tbody tr:hover td:first-child {
  background: rgba(0, 51, 160, 0.07);
}
.cmp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.cmp-chip--yes {
  background: var(--la-success-bg);
  color: #047857;
}
.cmp-chip--some {
  background: var(--la-warn-bg);
  color: #b45309;
}
.cmp-chip--no {
  background: var(--la-no-bg);
  color: #b91c1c;
}
.cmp-chip svg {
  width: 13px;
  height: 13px;
}
.cmp-num {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--la-ink);
  font-weight: 600;
}

/* ============================================================
   Application gallery
   ============================================================ */
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.app-card {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all 0.25s ease;
  text-align: left;
}
.app-card:hover {
  border-color: var(--la-navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.app-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.app-card__num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--la-bg-navy-grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}
.app-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--la-ink);
  font-weight: 600;
}
.app-card p {
  font-size: 13.5px;
  color: var(--la-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.app-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--la-navy);
  background: rgba(0, 51, 160, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================================
   Material browser (filterable)
   ============================================================ */
.mat-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.mat-filter {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  border: 2px solid var(--la-line);
  background: #fff;
  color: var(--la-muted);
  transition: all 0.2s ease;
}
.mat-filter:hover {
  border-color: var(--la-navy);
  color: var(--la-navy);
}
.mat-filter.is-active {
  background: var(--la-navy);
  color: #fff;
  border-color: var(--la-navy);
}
.mat-filter .cnt {
  font-size: 10px;
  opacity: 0.7;
  margin-left: 4px;
}

.mat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.mat-card {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all 0.3s ease;
}
.mat-card.is-hidden {
  display: none;
}
.mat-card:hover {
  border-color: var(--la-navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.mat-card__swatch {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--la-line);
}
.mat-card__swatch.s--wbopp {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.mat-card__swatch.s--cbopp {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.6) 0,
      rgba(255, 255, 255, 0.6) 6px,
      rgba(0, 51, 160, 0.05) 6px,
      rgba(0, 51, 160, 0.05) 12px
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(226, 232, 240, 0.4) 100%
    );
}
.mat-card__swatch.s--wpaper {
  background: linear-gradient(135deg, #fefefe 0%, #f1f5f9 100%);
}
.mat-card__swatch.s--kraft {
  background: linear-gradient(135deg, #d4b896 0%, #b89370 100%);
}
.mat-card__swatch.s--pet {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}
.mat-card__swatch.s--vinyl {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.mat-card__swatch.s--estate {
  background: linear-gradient(135deg, #f5f0e1 0%, #e8dfc8 100%);
}
.mat-card__swatch.s--holog {
  background: linear-gradient(
    135deg,
    #c9a961 0%,
    #e0c884 30%,
    #a8c4e8 60%,
    #c9a961 100%
  );
}
.mat-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--la-ink);
  margin-bottom: 6px;
}
.mat-card__desc {
  font-size: 13px;
  color: var(--la-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.mat-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mat-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}
.mat-card__tag.t--water {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}
.mat-card__tag.t--eco {
  background: rgba(132, 132, 132, 0.12);
  color: #3f3f46;
}
.mat-card__tag.t--premium {
  background: rgba(201, 169, 97, 0.16);
  color: var(--la-gold-dark);
}
.mat-card__tag.t--durable {
  background: rgba(0, 51, 160, 0.1);
  color: var(--la-navy);
}

/* ============================================================
   Decision table
   ============================================================ */
.decision-wrap {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.decision {
  width: 100%;
  border-collapse: collapse;
}
.decision th,
.decision td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--la-line);
}
.decision thead th {
  background: var(--la-ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.decision tbody tr:nth-child(odd) {
  background: var(--la-bg-paper);
}
.decision tbody tr:hover {
  background: rgba(0, 51, 160, 0.05);
}
.decision td:first-child {
  font-size: 14.5px;
  color: var(--la-ink-2);
}
.decision td:last-child {
  font-weight: 600;
  color: var(--la-navy);
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

.callout {
  margin-top: 28px;
  padding: 22px 26px;
  background: rgba(0, 51, 160, 0.05);
  border-left: 4px solid var(--la-navy);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: center;
}
.callout__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--la-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.callout__icon svg {
  width: 22px;
  height: 22px;
}
.callout__body {
  font-size: 14.5px;
  color: var(--la-ink-2);
}
.callout__body strong {
  color: var(--la-ink);
}

/* ============================================================
   Why LabelsAgent — split layout
   ============================================================ */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.why-col {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.why-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.why-col--cn::before {
  background: linear-gradient(90deg, var(--la-navy), var(--la-navy-dark));
}
.why-col--we::before {
  background: linear-gradient(90deg, var(--la-gold), var(--la-gold-dark));
}
.why-col__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--la-line);
}
.why-col__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.why-col--cn .why-col__icon {
  background: var(--la-navy);
}
.why-col--we .why-col__icon {
  background: var(--la-gold);
}
.why-col__icon svg {
  width: 22px;
  height: 22px;
}
.why-col__head h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--la-ink);
}
.why-col__head p {
  font-size: 12.5px;
  color: var(--la-muted);
  margin-top: 2px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-item__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(16, 185, 129, 0.12);
  color: var(--la-success);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item__check svg {
  width: 16px;
  height: 16px;
}
.why-item__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--la-ink);
  font-weight: 600;
  margin-bottom: 3px;
}
.why-item__text span {
  font-size: 13.5px;
  color: var(--la-muted);
  line-height: 1.55;
}

/* ============================================================
   Process Timeline
   ============================================================ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--la-line) 0,
    var(--la-line) 8px,
    transparent 8px,
    transparent 14px
  );
}
.tl-step {
  position: relative;
  text-align: center;
  padding: 0 16px;
}
.tl-step__num {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--la-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--la-navy);
  z-index: 1;
}
.tl-step:nth-child(odd) .tl-step__num {
  border-color: var(--la-gold);
  color: var(--la-gold-dark);
}
.tl-step__num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--la-navy), var(--la-gold));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.tl-step:hover .tl-step__num::after {
  opacity: 0.15;
}
.tl-step__icon {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--la-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-step__icon svg {
  width: 12px;
  height: 12px;
}
.tl-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--la-ink);
  margin-bottom: 6px;
}
.tl-step__dur {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--la-gold-dark);
  margin-bottom: 8px;
  display: inline-block;
  padding: 3px 8px;
  background: rgba(201, 169, 97, 0.14);
  border-radius: 999px;
}
.tl-step p {
  font-size: 13.5px;
  color: var(--la-muted);
  line-height: 1.55;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================================
   Cost Savings Calculator
   ============================================================ */
.calc {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.calc__inputs {
  padding: 36px;
  background: var(--la-bg-paper);
  border-right: 1px solid var(--la-line);
}
.calc__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--la-ink);
  margin-bottom: 6px;
}
.calc__sub {
  font-size: 13.5px;
  color: var(--la-muted);
  margin-bottom: 24px;
}
.calc__field {
  margin-bottom: 20px;
}
.calc__field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--la-muted);
  margin-bottom: 10px;
}
.calc__field label .val {
  float: right;
  color: var(--la-navy);
  font-size: 13px;
}
.calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--la-line);
  outline: none;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--la-navy);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease;
}
.calc__slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calc__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--la-navy);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.calc__radios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.calc__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 2px solid var(--la-line);
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.calc__radio:hover {
  border-color: var(--la-navy);
}
.calc__radio.is-active {
  border-color: var(--la-navy);
  background: rgba(0, 51, 160, 0.05);
  font-weight: 600;
  color: var(--la-navy);
}
.calc__radio input {
  display: none;
}
.calc__out {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.calc__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--la-line);
}
.calc__row .k {
  font-size: 14px;
  color: var(--la-muted);
}
.calc__row .v {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--la-ink);
  letter-spacing: -0.01em;
}
.calc__row--savings {
  border-bottom: none;
  padding-bottom: 0;
}
.calc__row--savings .v {
  color: var(--la-success);
}
.calc__row--savings .k {
  color: var(--la-ink-2);
  font-weight: 500;
}
.calc__chart-wrap {
  flex: 1;
  min-height: 180px;
  position: relative;
  margin-top: 6px;
}
.calc__chart-wrap canvas {
  max-height: 200px;
}
.calc__note {
  font-size: 11.5px;
  color: var(--la-muted-2);
  margin-top: 6px;
  line-height: 1.4;
}
.calc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.labelsagent.com/wp-content/uploads/2026/07/calculator-background.webp")
    center/cover no-repeat;

  opacity: 0.7;
  z-index: -1;
}
/* ============================================================
   Sample Banner
   ============================================================ */
.sample-banner {
  background: var(--la-bg-navy-grad);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-navy);
}
.sample-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px 300px at 90% 100%,
    rgba(201, 169, 97, 0.24),
    transparent 60%
  );
}
.sample-banner > * {
  position: relative;
  z-index: 1;
}
.sample-banner .eyebrow {
  color: var(--la-gold-light);
}
.sample-banner h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
}
.sample-banner p {
  font-size: 15.5px;
  color: #cfdbec;
  margin-bottom: 20px;
  max-width: 520px;
}
.sample-banner__price {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.sample-banner__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--la-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sample-banner__price span {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: #cfdbec;
  letter-spacing: 0.04em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq__item[open] {
  border-color: var(--la-navy);
  box-shadow: var(--shadow-sm);
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--la-ink);
  cursor: list-item;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 51, 160, 0.08);
  color: var(--la-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  font-size: 18px;
  font-weight: 600;
}
.faq__item[open] .faq__q-icon {
  transform: rotate(45deg);
  background: var(--la-navy);
  color: #fff;
}
.faq__a {
  padding: 0 24px 22px;
  color: var(--la-text);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   CTA Band
   ============================================================ */
.cta-band {
  background: var(--la-bg-navy-grad);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      500px 280px at 18% 20%,
      rgba(201, 169, 97, 0.2),
      transparent 60%
    ),
    radial-gradient(
      500px 280px at 82% 80%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    );
}
.cta-band > * {
  position: relative;
}
.cta-band .eyebrow {
  color: var(--la-gold-light);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  margin: 10px auto 14px;
  max-width: 760px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.cta-band p {
  font-size: 17px;
  color: #cfdbec;
  max-width: 640px;
  margin: 0 auto 28px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--la-navy-ink);
  color: #cfdbec;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}
.footer-brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--la-gold);
  color: var(--la-navy-ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}
.site-footer h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer ul a {
  color: #a8b6d6;
  font-size: 13.5px;
}
.site-footer ul a:hover {
  color: var(--la-gold-light);
}
.site-footer p {
  font-size: 13.5px;
  color: #a8b6d6;
  line-height: 1.55;
  max-width: 280px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
  color: #8896b8;
}

/* ============================================================
   Sticky CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  transition: transform 0.35s ease;
  padding: 0 16px;
  width: 100%;
  max-width: 520px;
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}
.sticky-cta__inner {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--la-line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 8px;
}
.sticky-cta__inner .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 {
  transition-delay: 0.06s;
}
.reveal.d2 {
  transition-delay: 0.12s;
}
.reveal.d3 {
  transition-delay: 0.18s;
}
.reveal.d4 {
  transition-delay: 0.24s;
}

@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .hero__float--1 {
    right: 0;
  }
  .hero__float--2 {
    left: 0;
  }
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .trust-stat {
    border-left: none;
    padding: 8px 0;
  }
  .format-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-split {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .timeline::before {
    display: none;
  }
  .calc {
    grid-template-columns: 1fr;
  }
  .calc__inputs {
    border-right: none;
    border-bottom: 1px solid var(--la-line);
  }
  .sample-banner {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 24px;
    text-align: center;
  }
  .sample-banner p {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 620px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 60px 0;
  }
  .nav__menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
    border-bottom: 1px solid var(--la-line);
    gap: 0;
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__menu a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--la-line);
  }
  .nav__menu a:last-child {
    border-bottom: none;
  }
  .nav__toggle {
    display: block;
  }
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 44px 0 60px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero__trust {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }
  .hero__float {
    display: none;
  }
  .format-cards {
    grid-template-columns: 1fr;
  }
  .app-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .wizard__head {
    padding: 18px 20px;
    flex-wrap: wrap;
  }
  .wizard__body {
    padding: 24px 18px;
  }
  .wizard__options {
    grid-template-columns: 1fr;
  }
  .wizard__foot {
    padding: 14px 18px;
  }
  .wizard__result {
    padding: 28px 20px;
  }
  .calc__inputs,
  .calc__out {
    padding: 24px 20px;
  }
  .sample-banner {
    padding: 28px 22px;
  }
  .sample-banner h2 {
    font-size: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sticky-cta {
    padding: 0 12px;
  }
  .format-stack {
    padding: 15px;
  }
  .geo-quote {
    padding: 15px 12px;
  }
}
