/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --la-navy: #0033a0;
  --la-navy-deep: #001f5c;
  --la-navy-ink: #0a1a3d;
  --la-navy-50: #e8edf7;
  --la-navy-100: #c5d0ec;

  --la-coral: #ff5b35;
  --la-coral-deep: #d94218;
  --la-coral-pale: #fff1ec;
  --la-coral-50: #ffe7df;

  --la-yellow: #ffd23f;

  --la-ink: #0a0e27;
  --la-slate: #4b5575;
  --la-slate-light: #8a93ab;
  --la-cloud: #f4f6fb;
  --la-mist: #e8edf7;
  --la-snow: #fafbff;
  --la-white: #ffffff;
  --la-border: #e2e7f1;

  --shadow-sm:
    0 1px 2px rgba(10, 14, 39, 0.04), 0 1px 3px rgba(10, 14, 39, 0.06);
  --shadow-md:
    0 4px 12px rgba(10, 14, 39, 0.08), 0 2px 4px rgba(10, 14, 39, 0.04);
  --shadow-lg:
    0 12px 32px rgba(10, 14, 39, 0.1), 0 4px 8px rgba(10, 14, 39, 0.06);
  --shadow-xl:
    0 24px 56px rgba(10, 14, 39, 0.14), 0 8px 16px rgba(10, 14, 39, 0.08);
  --shadow-sticker:
    0 18px 40px rgba(0, 31, 92, 0.18), 0 6px 12px rgba(0, 31, 92, 0.1);

  --font-display:
    "Sora", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-body:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--la-ink);
  background: var(--la-snow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,
svg,
video {
  max-width: 100%;
  display: block;
}
a {
  color: var(--la-navy);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover {
  color: var(--la-coral);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--la-navy-ink);
}
p {
  margin: 0;
}
:focus-visible {
  outline: 3px solid var(--la-coral);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 880px;
}
.container--wide {
  max-width: 1400px;
}

.section {
  padding: 60px 0;
}
.section--tight {
  padding: 46px 0;
}
.section--alt {
  background: var(--la-cloud);
}
.section--navy {
  background: var(--la-navy-ink);
  color: var(--la-snow);
}
.section--navy h2,
.section--navy h3 {
  color: var(--la-white);
}

.section-head {
  max-width: 1080px;
  margin-bottom: 56px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--la-coral);
  padding: 6px 12px;
  background: var(--la-coral-pale);
  border-radius: var(--r-pill);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--la-coral);
}
.section--navy .eyebrow {
  background: rgba(255, 91, 53, 0.18);
  color: var(--la-coral);
}
h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 16px 0 12px;
}
.section-head p {
  font-size: 17px;
  color: var(--la-slate);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--la-coral);
  color: var(--la-white);
  box-shadow: 0 6px 16px rgba(255, 91, 53, 0.32);
}
.btn--primary:hover {
  background: var(--la-coral-deep);
  color: var(--la-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 91, 53, 0.42);
}
.btn--navy {
  background: var(--la-navy);
  color: var(--la-white);
}
.btn--navy:hover {
  background: var(--la-navy-deep);
  color: var(--la-white);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--la-navy);
  border-color: var(--la-navy-100);
}
.btn--ghost:hover {
  background: var(--la-navy);
  color: var(--la-white);
  border-color: var(--la-navy);
}
.btn--outline {
  background: transparent;
  color: var(--la-navy);
  border-color: var(--la-navy);
}
.btn--outline:hover {
  background: var(--la-navy);
  color: var(--la-white);
}
.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn__group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.btn__arrow {
  transition: transform 0.25s var(--ease);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 251, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--la-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--la-navy-ink);
  letter-spacing: -0.02em;
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--la-navy);
  color: var(--la-white);
  font-size: 13px;
  font-weight: 700;
}
.brand:hover {
  color: var(--la-navy-ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--la-ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: all 0.2s var(--ease);
}
.nav__link:hover {
  color: var(--la-navy);
  background: var(--la-navy-50);
}
.nav__link.is-active {
  color: var(--la-navy);
  background: var(--la-navy-50);
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--la-navy-ink);
}
.nav__toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 960px) {
  .nav__toggle {
    display: inline-flex;
  }
  .nav__links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 24px 24px;
    background: var(--la-snow);
    border-bottom: 1px solid var(--la-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.3s var(--ease);
  }
  .nav__links.is-open {
    transform: translateY(0);
  }
  .nav__link {
    padding: 12px 14px;
  }
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 14px 0;
  background: var(--la-cloud);
  border-bottom: 1px solid var(--la-border);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.breadcrumbs li {
  color: var(--la-slate);
}
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--la-slate-light);
}
.breadcrumbs a {
  color: var(--la-slate);
}
.breadcrumbs a:hover {
  color: var(--la-navy);
}
.breadcrumbs li[aria-current="page"] {
  color: var(--la-navy);
  font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background:
    radial-gradient(
      1200px 600px at 100% 0%,
      rgba(255, 91, 53, 0.08),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 0% 30%,
      rgba(0, 51, 160, 0.07),
      transparent 60%
    ),
    var(--la-snow);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero {
    padding: 56px 0 72px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.hero__eyebrow {
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--la-navy-ink);
  margin-bottom: 24px;
}
.hero h1 .accent {
  display: inline-block;
  position: relative;
  color: var(--la-coral);
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(255, 210, 63, 0.45);
  z-index: -1;
  border-radius: var(--r-pill);
}
.hero__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--la-slate);
  max-width: 560px;
  margin-bottom: 8px;
}
.hero__cta {
  margin-top: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--la-border);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--la-slate);
  font-weight: 500;
}
.trust__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--la-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--la-navy);
  box-shadow: var(--shadow-sm);
}
.trust__icon svg {
  width: 16px;
  height: 16px;
}
.trust__item strong {
  color: var(--la-navy-ink);
  font-family: var(--font-display);
}

/* Hero visual: floating sticker stack */
.hero__visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticker-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stk {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--la-white);
  box-shadow: var(--shadow-sticker);
  transition: transform 0.4s var(--ease);
}
.stk--1 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, var(--la-yellow), #ffaa1a);
  color: var(--la-navy-ink);
  border-radius: 50%;
  transform: translate(-90px, -60px) rotate(-12deg);
  font-size: 22px;
  animation: float1 6s ease-in-out infinite;
}
.stk--2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--la-coral), var(--la-coral-deep));
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  transform: translate(90px, 60px) rotate(14deg);
  font-size: 16px;
  text-align: center;
  animation: float2 7s ease-in-out infinite;
}
.stk--3 {
  width: 240px;
  height: 180px;
  background: linear-gradient(135deg, var(--la-navy), var(--la-navy-deep));
  border-radius: 28px;
  transform: translate(0, 140px) rotate(-4deg);
  font-size: 18px;
  padding: 0 20px;
  text-align: center;
  animation: float3 5s ease-in-out infinite;
}
.stk--3::before {
  content: "LA";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--la-coral);
  color: var(--la-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-md);
}
.stk__inner {
  padding: 16px;
  line-height: 1.2;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(-90px, -60px) rotate(-12deg);
  }
  50% {
    transform: translate(-86px, -68px) rotate(-10deg);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translate(90px, 60px) rotate(14deg);
  }
  50% {
    transform: translate(96px, 52px) rotate(16deg);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 140px) rotate(-4deg);
  }
  50% {
    transform: translate(4px, 134px) rotate(-2deg);
  }
}

.hero__deco-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    var(--la-navy) 1px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  opacity: 0.12;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 75%
  );
}

@media (prefers-reduced-motion: reduce) {
  .stk--1,
  .stk--2,
  .stk--3 {
    animation: none;
  }
}

@media (max-width: 600px) {
  .hero__visual {
    height: 360px;
  }
  .stk--1 {
    width: 150px;
    height: 150px;
    transform: translate(-60px, -40px) rotate(-12deg);
    font-size: 16px;
  }
  .stk--2 {
    width: 140px;
    height: 140px;
    transform: translate(60px, 40px) rotate(14deg);
  }
  .stk--3 {
    width: 170px;
    height: 130px;
    transform: translate(0, 100px) rotate(-4deg);
    font-size: 14px;
  }
  @keyframes float1 {
    0%,
    100% {
      transform: translate(-60px, -40px) rotate(-12deg);
    }
    50% {
      transform: translate(-58px, -46px) rotate(-10deg);
    }
  }
  @keyframes float2 {
    0%,
    100% {
      transform: translate(60px, 40px) rotate(14deg);
    }
    50% {
      transform: translate(64px, 34px) rotate(16deg);
    }
  }
  @keyframes float3 {
    0%,
    100% {
      transform: translate(0, 100px) rotate(-4deg);
    }
    50% {
      transform: translate(2px, 96px) rotate(-2deg);
    }
  }
}

/* ============================================
   GEO QUOTE BAND
   ============================================ */
.geo-quote {
  background: var(--la-navy-ink);
  color: var(--la-snow);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.geo-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1.5px
  );
  background-size: 24px 24px;
}
.geo-quote__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.geo-quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
  color: var(--la-snow);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.geo-quote p .hl {
  color: var(--la-yellow);
  font-weight: 600;
}
.geo-quote p .hl-coral {
  color: var(--la-coral);
  font-weight: 600;
}

/* ============================================
   STICKER TYPES (interactive cards)
   ============================================ */
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .types-grid {
    grid-template-columns: 1fr;
  }
}

.type-card {
  position: relative;
  background: var(--la-white);
  border-radius: var(--r-xl);
  padding: 32px 24px 24px;
  border: 1.5px solid var(--la-border);
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--la-navy), var(--la-coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.type-card:hover::before {
  transform: scaleX(1);
}

.type-card__demo {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--r-lg);
  padding: 16px;
}
.type-card__demo svg {
  max-width: 100%;
  max-height: 100%;
}

.type-card__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--la-navy-100);
  font-size: 32px;
  line-height: 1;
}
.type-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--la-navy-ink);
}
.type-card p {
  font-size: 14px;
  color: var(--la-slate);
  line-height: 1.6;
  margin-bottom: 18px;
}
.type-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--la-navy-50);
  color: var(--la-navy);
}
.tag--coral {
  background: var(--la-coral-pale);
  color: var(--la-coral-deep);
}

/* ============================================
   MATERIALS SWATCHES
   ============================================ */
.mat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .mat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .mat-grid {
    grid-template-columns: 1fr;
  }
}

.mat-card {
  position: relative;
  background: var(--la-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--la-border);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.mat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mat-swatch {
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
}
.mat-swatch__label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--la-white);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(10, 14, 39, 0.55);
  backdrop-filter: blur(6px);
  letter-spacing: 0.04em;
}
.mat-swatch--white-vinyl {
  background: linear-gradient(135deg, #ffffff 0%, #e8eef5 50%, #c5cfdb 100%);
}
.mat-swatch--white-vinyl .mat-swatch__label {
  background: rgba(0, 51, 160, 0.85);
  color: #fff;
}
.mat-swatch--clear-vinyl {
  background:
    linear-gradient(
      135deg,
      rgba(0, 145, 167, 0.18),
      rgba(94, 221, 240, 0.1) 60%,
      rgba(255, 255, 255, 0.6)
    ),
    repeating-linear-gradient(
      45deg,
      rgba(0, 51, 160, 0.04) 0 8px,
      transparent 8px 16px
    );
}
.mat-swatch--clear-vinyl .mat-swatch__label {
  background: rgba(0, 51, 160, 0.85);
  color: #fff;
}
.mat-swatch--holo {
  background: linear-gradient(
    135deg,
    #ff6b6b 0%,
    #ffd23f 25%,
    #10b981 50%,
    #00b8d4 75%,
    #a855f7 100%
  );
  background-size: 200% 200%;
  animation: holoShift 8s ease infinite;
}
@keyframes holoShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.mat-swatch--matte {
  background: linear-gradient(135deg, #2a2e3f 0%, #4a4f65 50%, #2a2e3f 100%);
}
.mat-swatch--paper {
  background: linear-gradient(135deg, #fbf6e9 0%, #f0e6cf 50%, #e0d2ac 100%);
}
.mat-swatch--paper .mat-swatch__label {
  background: rgba(74, 60, 30, 0.85);
  color: #fff;
}
.mat-swatch--bopp {
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 50%, #80cbc4 100%);
}
.mat-swatch--bopp .mat-swatch__label {
  background: rgba(0, 51, 160, 0.85);
  color: #fff;
}

.mat-body {
  padding: 20px 22px 22px;
}
.mat-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--la-navy-ink);
}
.mat-body p {
  font-size: 14px;
  color: var(--la-slate);
  line-height: 1.6;
  margin-bottom: 14px;
}
.mat-body__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--la-slate);
  background: var(--la-cloud);
}
.badge svg {
  width: 12px;
  height: 12px;
  color: var(--la-navy);
}
.badge--yes {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}
.badge--yes svg {
  color: #10b981;
}
.badge--no {
  background: rgba(255, 91, 53, 0.1);
  color: var(--la-coral-deep);
}
.badge--no svg {
  color: var(--la-coral);
}

/* ============================================
   DIE-CUT SHAPE GALLERY
   ============================================ */
.shapes-section {
  background: var(--la-cloud);
}
.shapes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .shapes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .shapes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shape-card {
  background: var(--la-white);
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--la-border);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.shape-card:hover {
  transform: translateY(-4px) rotate(-1.5deg);
  box-shadow: var(--shadow-md);
  border-color: var(--la-coral);
}
.shape-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shape-card__icon svg {
  width: 100%;
  height: 100%;
}
.shape-card h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--la-navy-ink);
  letter-spacing: 0.02em;
}

/* ============================================
   APPLICATIONS
   ============================================ */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .apps-grid {
    grid-template-columns: 1fr;
  }
}

.app-card {
  background: var(--la-white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--la-border);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--la-navy-100);
}
.app-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--la-navy-50);
  color: var(--la-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.app-card:hover .app-card__icon {
  background: var(--la-coral);
  color: var(--la-white);
}
.app-card__icon svg {
  width: 22px;
  height: 22px;
}
.app-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--la-navy-ink);
}
.app-card p {
  font-size: 13px;
  color: var(--la-slate);
  line-height: 1.55;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-section {
  background: var(--la-navy-ink);
  color: var(--la-snow);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1.5px
  );
  background-size: 32px 32px;
}
.process-section .section-head p {
  color: rgba(250, 251, 255, 0.7);
}
.process-section .eyebrow {
  background: rgba(255, 91, 53, 0.18);
  color: var(--la-coral);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--la-navy-100) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
}
@media (max-width: 900px) {
  .timeline::before {
    display: none;
  }
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  backdrop-filter: blur(8px);
  z-index: 1;
}
.step__num {
  position: absolute;
  top: -16px;
  left: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--la-coral);
  color: var(--la-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 91, 53, 0.45);
}
.step__icon {
  width: 36px;
  height: 36px;
  color: var(--la-yellow);
  margin: 16px 0 14px;
}
.step__icon svg {
  width: 100%;
  height: 100%;
}
.step h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--la-white);
}
.step p {
  font-size: 13px;
  color: rgba(250, 251, 255, 0.7);
  line-height: 1.6;
}
.step__meta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--la-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   SAMPLE BANNER
   ============================================ */
.sample-banner {
  background: linear-gradient(
    135deg,
    var(--la-coral) 0%,
    var(--la-coral-deep) 100%
  );
  color: var(--la-white);
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sample-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 210, 63, 0.16);
}
.sample-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(0, 51, 160, 0.18);
}
@media (max-width: 800px) {
  .sample-banner {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
}
.sample-banner .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: var(--la-white);
}
.sample-banner .eyebrow::before {
  background: var(--la-yellow);
}
.sample-banner h2 {
  color: var(--la-white);
  font-size: clamp(24px, 3.2vw, 34px);
  margin: 14px 0 12px;
}
.sample-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  margin-bottom: 24px;
}
.sample-banner .btn--primary {
  background: var(--la-navy-ink);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.sample-banner .btn--primary:hover {
  background: var(--la-navy-deep);
}

.sample-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sample-peel {
  position: relative;
  width: 200px;
  height: 200px;
  background: var(--la-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--la-navy);
  font-size: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transform: rotate(-4deg);
  transition: transform 0.4s var(--ease);
}
.sample-peel::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    var(--la-coral-pale) 50%
  );
  border-bottom-right-radius: 16px;
  box-shadow: -4px -4px 8px rgba(0, 0, 0, 0.08);
  transition:
    width 0.4s var(--ease),
    height 0.4s var(--ease);
}
.sample-banner:hover .sample-peel {
  transform: rotate(-1deg) translateY(-4px);
}
.sample-banner:hover .sample-peel::after {
  width: 80px;
  height: 80px;
}
.sample-peel__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sample-peel__price {
  font-size: 38px;
  color: var(--la-coral);
  line-height: 1;
}
.sample-peel__sub {
  font-size: 11px;
  color: var(--la-slate);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   PRICING TEASER
   ============================================ */
.pricing-band {
  padding: 64px 0;
  background: var(--la-cloud);
}
.pricing-card {
  background: var(--la-white);
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--la-border);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--la-navy),
    var(--la-coral),
    var(--la-yellow)
  );
}
@media (max-width: 900px) {
  .pricing-card {
    grid-template-columns: 1fr 1fr;
    padding: 32px 24px;
  }
}
@media (max-width: 560px) {
  .pricing-card {
    grid-template-columns: 1fr;
  }
}

.price-stat {
  text-align: left;
}
.price-stat__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--la-slate);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--la-navy-ink);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-stat__value .small {
  font-size: 16px;
  color: var(--la-slate);
  font-weight: 500;
}
.price-stat__value .accent {
  color: var(--la-coral);
}
.price-stat__hint {
  font-size: 12px;
  color: var(--la-slate);
  margin-top: 6px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--la-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--la-border);
  margin-bottom: 12px;
  overflow: hidden;
  transition:
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.faq__item[open] {
  border-color: var(--la-coral);
  box-shadow: var(--shadow-md);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--la-navy-ink);
  list-style: none;
  user-select: none;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--la-navy-50);
  color: var(--la-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}
.faq__item[open] .faq__q-icon {
  background: var(--la-coral);
  color: var(--la-white);
  transform: rotate(45deg);
}
.faq__q-icon svg {
  width: 14px;
  height: 14px;
}
.faq__a {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--la-slate);
}
.faq__a p {
  margin-bottom: 12px;
}
.faq__a p:last-child {
  margin-bottom: 0;
}
.faq__a strong {
  color: var(--la-navy-ink);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(
    135deg,
    var(--la-navy) 0%,
    var(--la-navy-deep) 100%
  );
  color: var(--la-snow);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 91, 53, 0.18),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 210, 63, 0.12),
      transparent 50%
    );
}
.cta-band__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band .eyebrow {
  background: rgba(255, 91, 53, 0.2);
  color: var(--la-coral);
}
.cta-band h2 {
  color: var(--la-white);
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 16px 0 12px;
}
.cta-band p {
  color: rgba(250, 251, 255, 0.82);
  font-size: 17px;
  margin-bottom: 32px;
}
.cta-band .btn--primary {
  background: var(--la-coral);
}
.cta-band .btn--ghost {
  color: var(--la-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-band .btn--ghost:hover {
  background: var(--la-white);
  color: var(--la-navy);
  border-color: var(--la-white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--la-navy-ink);
  color: rgba(250, 251, 255, 0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--la-white);
  margin-bottom: 12px;
}
.site-footer h4 {
  color: var(--la-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul li {
  margin-bottom: 8px;
}
.site-footer a {
  color: rgba(250, 251, 255, 0.7);
  font-size: 14px;
}
.site-footer a:hover {
  color: var(--la-coral);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ============================================
   STICKY CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  background: var(--la-white);
  border-radius: var(--r-pill);
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--la-border);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}
.sticky-cta .btn {
  padding: 10px 18px;
}
@media (max-width: 600px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    transform: translateY(120%);
    width: calc(100% - 32px);
    justify-content: center;
  }
  .sticky-cta.is-visible {
    transform: translateY(0);
  }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.reveal:nth-child(5) {
  transition-delay: 0.32s;
}
.reveal:nth-child(6) {
  transition-delay: 0.4s;
}
.reveal:nth-child(7) {
  transition-delay: 0.48s;
}
.reveal:nth-child(8) {
  transition-delay: 0.56s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--la-navy);
  color: var(--la-white);
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  z-index: 1000;
  transition: top 0.25s var(--ease);
}
.skip-link:focus {
  top: 16px;
  color: var(--la-white);
}
