/* Base + Tokens */
:root {
  --l7-bg: #040913;
  --l7-bg-soft: #09111f;
  --l7-surface: #fbfcff;
  --l7-surface-soft: #edf2f8;
  --l7-border: rgba(11, 24, 45, 0.09);
  --l7-border-strong: rgba(20, 42, 79, 0.14);
  --l7-text: #162338;
  --l7-text-soft: #54647c;
  --l7-heading: #08111f;
  --l7-brand: #2155e7;
  --l7-brand-strong: #173ca3;
  --l7-brand-soft: #e8efff;
  --l7-on-dark: #f7f9fd;
  --l7-on-dark-soft: #d1dcef;
  --l7-on-dark-muted: #aebdd6;
  --l7-accent-on-dark: #bad0ff;
  --l7-success: #2a5be3;
  --l7-shadow: 0 22px 56px rgba(5, 11, 21, 0.08);
  --l7-shadow-premium: 0 30px 84px rgba(4, 9, 18, 0.14), 0 10px 28px rgba(4, 9, 18, 0.08);
  --l7-radius-lg: 28px;
  --l7-radius-md: 20px;
  --l7-radius-sm: 14px;
  --l7-radius-pill: 999px;
  --l7-container-max: 1200px;
  --l7-font-heading: 'Sora', 'Segoe UI', sans-serif;
  --l7-font-body: 'Manrope', 'Segoe UI', sans-serif;
  --l7-space-section: clamp(4.5rem, 6vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--l7-font-body);
  color: var(--l7-text);
  background:
    radial-gradient(circle at top, rgba(33, 85, 231, 0.05), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.container {
  max-width: var(--l7-container-max);
}

.btn,
.nav-link,
.l7-brand,
.l7-brand:hover,
.l7-brand:focus {
  text-decoration: none;
}

.btn {
  border-radius: var(--l7-radius-pill);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.45rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
[role='button']:focus-visible,
.nav-link:focus-visible,
.l7-chip:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px var(--l7-brand-strong);
}

.l7-skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 1100;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--l7-heading);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(8, 17, 30, 0.16);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.l7-skip-link:focus-visible {
  transform: translateY(0);
}

.btn-brand {
  color: #fff;
  background: linear-gradient(135deg, #2c68f2 0%, var(--l7-brand) 55%, var(--l7-brand-strong) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 38px rgba(33, 85, 231, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: linear-gradient(135deg, #214fc8 0%, var(--l7-brand-strong) 100%);
  box-shadow:
    0 22px 44px rgba(23, 60, 163, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-outline-brand {
  color: var(--l7-heading);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 36, 67, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--l7-heading);
  background: rgba(232, 239, 255, 0.9);
  border-color: rgba(33, 85, 231, 0.24);
}

.btn-light {
  color: var(--l7-heading);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(4, 10, 20, 0.1);
}

.btn-light:hover,
.btn-light:focus {
  color: var(--l7-heading);
  background: #f4f7fc;
  border-color: #f4f7fc;
}

.l7-btn-outline-light {
  color: var(--l7-on-dark);
  border-color: rgba(186, 208, 255, 0.3);
  background: rgba(11, 18, 31, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(4, 9, 18, 0.14);
  backdrop-filter: blur(10px);
}

.l7-btn-outline-light:hover,
.l7-btn-outline-light:focus {
  color: var(--l7-on-dark);
  background: rgba(16, 28, 50, 0.42);
  border-color: rgba(186, 208, 255, 0.52);
}

.l7-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--l7-brand);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.l7-eyebrow::before {
  content: '';
  width: 2.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.l7-display,
.l7-page-title,
.l7-section-title {
  margin: 0;
  color: var(--l7-heading);
  font-family: var(--l7-font-heading);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.l7-display {
  font-size: clamp(2.65rem, 5vw, 4.8rem);
}

.l7-page-title {
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.l7-section-title {
  font-size: clamp(1.95rem, 3vw, 3.15rem);
}

.l7-page-subtitle,
.l7-lead,
.l7-body-lg {
  color: var(--l7-text-soft);
  font-size: 1.08rem;
}

.l7-section {
  padding: var(--l7-space-section) 0;
}

.l7-section--soft {
  background: var(--l7-surface-soft);
}

/* Shared Layout + Partials */
.l7-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1030;
}

.l7-site-header .navbar {
  padding: 1rem 0;
  background: rgba(7, 13, 24, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.l7-site-header .nav-link {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  padding: 0.75rem 1rem;
}

.l7-site-header .nav-link:hover,
.l7-site-header .nav-link:focus,
.l7-site-header .nav-link.is-active {
  color: #fff;
}

.l7-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
}

.l7-brand__logo {
  display: block;
  width: 2.9rem;
  height: 2.9rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.l7-brand__logo--footer {
  width: 3.15rem;
  height: 3.15rem;
  object-fit: contain;
  box-shadow: none;
}

.l7-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.l7-brand strong {
  font-family: var(--l7-font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.l7-brand small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.82;
}

.l7-header-cta {
  margin-left: 1.25rem;
  white-space: nowrap;
}

.l7-hero,
.l7-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.l7-hero::before,
.l7-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 10, 18, 0.92), rgba(9, 24, 44, 0.66)),
    url('../img/hero/hero-distribuicao.svg') center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.l7-hero .container,
.l7-page-hero .container {
  position: relative;
  z-index: 2;
}

.l7-hero .l7-display,
.l7-page-hero .l7-page-title {
  color: #fff;
}

.l7-hero .l7-lead,
.l7-page-hero .l7-page-subtitle,
.l7-hero .l7-eyebrow,
.l7-page-hero .l7-eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.l7-hero .l7-eyebrow::before,
.l7-page-hero .l7-eyebrow::before {
  background: rgba(255, 255, 255, 0.8);
}

.l7-page-hero {
  padding: 9.5rem 0 4.5rem;
}

.l7-page-hero--compact {
  padding-bottom: 3.75rem;
}

.l7-hero--home::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(159, 186, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 24%, rgba(44, 98, 255, 0.28), transparent 22%),
    linear-gradient(135deg, rgba(3, 8, 16, 0.96), rgba(8, 22, 42, 0.8));
}

.l7-hero--home::after {
  content: '';
  position: absolute;
  inset: auto -14% -18% 48%;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 98, 255, 0.24), transparent 68%);
  filter: blur(18px);
  z-index: 1;
  pointer-events: none;
}

/* Home Page */
.l7-home-hero__media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 10, 18, 0.4), rgba(8, 22, 39, 0.35)),
    url('../img/hero/l7-home-hero-poster.webp') center/cover no-repeat;
}

.l7-home-hero__video {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.44;
  filter: blur(10px) brightness(0.78) saturate(0.92);
  transform: scale(1.08);
}

.l7-home-hero__row {
  min-height: 100vh;
  box-sizing: border-box;
  padding: 6.1rem 0 4.25rem;
}

.l7-home-hero__content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.l7-home-hero__content .l7-display {
  max-width: 11ch;
  margin: 0 auto 1rem;
  font-size: clamp(3.2rem, 4.9vw, 4.9rem);
}

.l7-home-hero__content .l7-eyebrow {
  justify-content: center;
  margin-bottom: 1rem;
}

.l7-home-hero__lead {
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  color: var(--l7-on-dark-soft);
  font-size: 1.16rem;
  text-wrap: balance;
}

.l7-home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.l7-home-hero__chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--l7-on-dark);
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.l7-home-credibility {
  position: relative;
  z-index: 3;
  margin-top: -5.5rem;
  padding-bottom: 1rem;
}

.l7-home-credibility__panel {
  padding: 2rem;
  border: 1px solid rgba(18, 31, 49, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 60px rgba(9, 16, 28, 0.12);
}

.l7-home-credibility__intro {
  max-width: 19rem;
  padding-top: 0.45rem;
}

.l7-home-credibility__intro h2,
.l7-home-overview__card h3,
.l7-home-overview__spotlight h3 {
  margin: 0;
  color: var(--l7-heading);
  font-family: var(--l7-font-heading);
  line-height: 1.24;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.l7-home-credibility__intro h2 {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
}

.l7-home-credibility__stats {
  padding-top: 4.15rem;
}

.l7-home-credibility__item {
  position: relative;
  height: 100%;
  padding-top: 0.45rem;
  padding-left: 1.35rem;
}

.l7-home-credibility__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 0.4rem;
  width: 1px;
  background: rgba(18, 31, 49, 0.1);
}

.l7-home-credibility__item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--l7-heading);
  font-family: var(--l7-font-heading);
  font-size: 1.15rem;
  line-height: 1.3;
}

.l7-home-credibility__item p {
  margin: 0;
  color: var(--l7-text-soft);
}

.l7-home-overview {
  padding-top: 2rem;
}

.l7-home-overview__content {
  height: 100%;
  padding: 2.25rem;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  box-shadow: var(--l7-shadow);
}

.l7-home-overview__content .l7-section-title {
  max-width: 12ch;
  margin-bottom: 1rem;
}

.l7-home-overview__content .l7-body-lg {
  margin-bottom: 0.85rem;
}

.l7-home-overview__card,
.l7-home-overview__spotlight {
  height: 100%;
  padding: 1.85rem;
  border: 1px solid rgba(18, 31, 49, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--l7-shadow);
}

.l7-home-overview__card-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.95rem;
  color: var(--l7-brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.l7-home-overview__card p,
.l7-home-overview__spotlight p {
  margin: 0.8rem 0 0;
  color: var(--l7-text-soft);
}

.l7-home-overview__spotlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(16, 29, 50, 0.98), rgba(18, 45, 78, 0.92));
}

.l7-home-overview__spotlight h3 {
  max-width: 34rem;
  color: #fff;
}

.l7-home-overview__spotlight .l7-home-overview__card-label {
  color: var(--l7-on-dark-muted);
}

.l7-home-overview__spotlight .l7-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.l7-home-categories,
.l7-home-differentials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #08111f 0%, #102746 100%);
}

.l7-home-categories::before,
.l7-home-differentials::before {
  content: '';
  position: absolute;
  inset: auto -10% -12rem auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 98, 255, 0.22), transparent 68%);
}

.l7-home-categories .l7-section-title,
.l7-home-differentials .l7-section-title,
.l7-home-categories .l7-eyebrow,
.l7-home-differentials .l7-eyebrow,
.l7-home-differentials__heading p {
  color: var(--l7-on-dark);
}

.l7-home-categories .l7-eyebrow::before,
.l7-home-differentials .l7-eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

.l7-home-categories__intro,
.l7-home-products__intro {
  color: var(--l7-on-dark-soft);
}

.l7-home-products {
  background: linear-gradient(180deg, #eef2f7 0%, #f8fafc 100%);
}

.l7-home-products__intro {
  color: var(--l7-text-soft);
}

.l7-home-differentials__heading p {
  margin-top: 1rem;
  max-width: 31rem;
  color: var(--l7-on-dark-soft);
}

.l7-home-step-card {
  height: 100%;
  padding: 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(116, 129, 255, 0.18), rgba(56, 73, 202, 0.1));
  box-shadow: 0 18px 46px rgba(4, 12, 27, 0.16);
  backdrop-filter: blur(10px);
}

.l7-home-step-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--l7-font-heading);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.l7-home-step-card h3 {
  margin-bottom: 0.85rem;
  color: #fff;
  font-family: var(--l7-font-heading);
  font-size: 1.28rem;
  line-height: 1.25;
}

.l7-home-step-card p {
  margin: 0;
  color: var(--l7-on-dark-soft);
}

.l7-home-cta {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

body[data-page='home'] .l7-home-categories {
  padding-top: 3.75rem;
  padding-bottom: 3.5rem;
}

body[data-page='home'] .l7-home-products {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

body[data-page='home'] .l7-home-differentials {
  padding-top: 3.25rem;
  padding-bottom: 3.75rem;
}

body[data-page='home'] .l7-home-cta {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

/* Catalog Page */
.l7-catalog-preview__hero,
.l7-catalog-page__hero {
  padding-bottom: 3.25rem;
}

.l7-catalog-preview,
.l7-catalog-page {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}

.l7-catalog-preview__intro,
.l7-catalog-page__intro {
  color: var(--l7-text-soft);
  max-width: 24rem;
  margin-left: auto;
}

.l7-catalog-page {
  background: linear-gradient(180deg, #f3f6fb 0%, #f8fafc 100%);
}

.l7-catalog-page__filters {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
  padding: 1.35rem;
  border: 1px solid rgba(18, 31, 49, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--l7-shadow);
}

.l7-filter-stack {
  display: grid;
  gap: 0.8rem;
}

.l7-catalog-page__filter-label {
  display: inline-block;
  color: var(--l7-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.l7-catalog-page__context {
  margin-bottom: 1.5rem;
}

.l7-catalog-page__context-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.8rem;
  border: 1px solid rgba(18, 31, 49, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.96));
  box-shadow: var(--l7-shadow);
}

.l7-catalog-page__context-card h2 {
  margin: 0.6rem 0 0.65rem;
  color: var(--l7-heading);
  font-family: var(--l7-font-heading);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.l7-catalog-page__context-card p {
  margin: 0;
  max-width: 42rem;
  color: var(--l7-text-soft);
}

.l7-catalog-page__context-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
}

.l7-catalog-preview-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.l7-catalog-preview-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  padding: 2.4rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border-bottom: 1px solid rgba(11, 24, 45, 0.06);
}

.l7-catalog-preview-card__image img {
  width: 100%;
  height: auto;
  max-width: 250px;
  max-height: 190px;
  object-fit: contain;
}

.l7-catalog-preview-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1rem;
  padding: 1.9rem;
}

.l7-catalog-preview-card__meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--l7-brand-soft);
  color: var(--l7-brand-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.l7-catalog-preview-card h3,
.l7-catalog-preview__notice-card h2 {
  margin: 0;
  color: var(--l7-heading);
  font-family: var(--l7-font-heading);
}

.l7-catalog-preview-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.l7-catalog-preview-card p {
  margin: 0;
  color: var(--l7-text-soft);
}

.l7-catalog-preview-card .btn {
  margin-top: auto;
}

.l7-catalog-preview__notice {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.l7-catalog-preview__notice-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem;
  border: 1px solid rgba(18, 31, 49, 0.08);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(15, 28, 48, 0.98), rgba(29, 54, 90, 0.96));
  color: #fff;
  box-shadow: var(--l7-shadow);
}

.l7-catalog-preview__notice-content {
  flex: 1 1 42rem;
  max-width: 48rem;
}

.l7-catalog-preview__notice-card .l7-eyebrow,
.l7-catalog-preview__notice-card h2 {
  color: var(--l7-on-dark);
}

.l7-catalog-preview__notice-card .l7-eyebrow::before {
  background: rgba(255, 255, 255, 0.72);
}

.l7-catalog-preview__notice-card h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.14;
}

.l7-catalog-preview__notice-card p {
  margin: 0 0 1.5rem;
  max-width: 43rem;
  color: var(--l7-on-dark-soft);
}

.l7-catalog-preview__notice-brand {
  display: flex;
  flex: 0 1 15rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.l7-catalog-preview__notice-brand img {
  width: 100%;
  max-width: 7.5rem;
  height: auto;
}

.l7-catalog-preview__notice-brand span {
  color: var(--l7-on-dark-soft);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.l7-cta-band--home {
  position: relative;
  overflow: hidden;
  align-items: center;
}

.l7-cta-band--home::after {
  content: '';
  position: absolute;
  inset: auto -6rem -8rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 98, 255, 0.22), transparent 68%);
}

.l7-cta-band__content {
  position: relative;
  z-index: 1;
}

.l7-cta-band__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.l7-cta-band__bullets span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
}

/* About Page */
.l7-page-hero--about {
  padding: 9.25rem 0 3.5rem;
}

.l7-about-hero__content {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.l7-about-hero__heading {
  max-width: 32rem;
  margin: 0 auto;
}

.l7-about-hero__heading .l7-eyebrow {
  justify-content: center;
}

.l7-about-hero__heading .l7-page-title {
  max-width: none;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(3rem, 4.8vw, 4.75rem);
}

.l7-about-hero__summary {
  max-width: 43rem;
  margin: 1.5rem auto 0;
  color: var(--l7-on-dark-soft);
  font-size: 1.14rem;
}

.l7-about-hero__facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.l7-about-hero__facts .l7-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.l7-about-story__intro {
  max-width: 44rem;
  margin: 0 auto 2.4rem;
}

.l7-about-story__intro .l7-eyebrow {
  justify-content: center;
}

.l7-about-story__intro .l7-section-title {
  margin-bottom: 1rem;
}

.l7-about-story__intro p {
  margin: 0;
  color: var(--l7-text-soft);
  font-size: 1.05rem;
}

.l7-page-hero--about::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(159, 186, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(77, 114, 255, 0.24), transparent 24%),
    radial-gradient(circle at 74% 72%, rgba(26, 57, 111, 0.34), transparent 30%),
    linear-gradient(
      118deg,
      rgba(5, 11, 20, 0.98) 0%,
      rgba(8, 20, 37, 0.95) 38%,
      rgba(12, 29, 52, 0.88) 100%
    );
}

.l7-page-hero--about::after {
  content: '';
  position: absolute;
  inset: auto -8rem -14rem auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 98, 255, 0.22), transparent 68%);
  filter: blur(18px);
  z-index: 1;
  pointer-events: none;
}

.l7-about-presence__panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(3, 8, 18, 0.22);
}

.l7-about-story__card-kicker,
.l7-about-service-card__kicker {
  display: inline-block;
  color: var(--l7-brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.l7-about-story__card h3,
.l7-about-location-card h3,
.l7-about-service-card h3 {
  margin: 0;
  font-family: var(--l7-font-heading);
  line-height: 1.2;
}

.l7-about-story__content,
.l7-about-story__card,
.l7-about-location-card,
.l7-about-service-card {
  height: 100%;
  border: 1px solid rgba(18, 31, 49, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
  box-shadow: var(--l7-shadow);
}

.l7-about-story__content,
.l7-about-location-card {
  padding: 2.1rem;
}

.l7-about-story__card,
.l7-about-service-card {
  padding: 1.8rem;
}

.l7-about-story__card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 252, 0.97)),
    radial-gradient(circle at top right, rgba(44, 98, 255, 0.12), transparent 30%);
}

.l7-about-story__card h3,
.l7-about-location-card h3,
.l7-about-service-card h3 {
  margin: 0.8rem 0 0.85rem;
  color: var(--l7-heading);
  font-size: 1.22rem;
}

.l7-about-story__card p,
.l7-about-location-card p,
.l7-about-service-card p {
  margin: 0;
  color: var(--l7-text-soft);
}

.l7-about-presence__panel {
  background: linear-gradient(135deg, rgba(15, 28, 48, 0.98), rgba(20, 40, 76, 0.94));
}

.l7-about-presence__panel .l7-eyebrow,
.l7-about-presence__panel .l7-section-title {
  color: #fff;
}

.l7-about-presence__panel .l7-eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

.l7-about-presence__panel p {
  color: var(--l7-on-dark-soft);
}

.l7-about-presence__panel .l7-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.l7-about-presence__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.l7-about-presence__map {
  margin-top: 1.75rem;
  padding: 1rem;
  border: 1px solid rgba(186, 208, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(33, 85, 231, 0.08), transparent 56%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.l7-about-presence__map img {
  display: block;
  width: 100%;
  height: auto;
}

.l7-about-location-card__meta {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.l7-about-location-card__meta strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--l7-heading);
  font-size: 0.9rem;
}

.l7-about-location-card__meta span {
  color: var(--l7-text-soft);
}

.l7-about-location-card__actions {
  display: grid;
  gap: 0.9rem;
}

.l7-about-location-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 247, 251, 0.97));
}

.l7-about-service-card {
  background: linear-gradient(180deg, #ffffff, #f3f6fb);
}

body[data-page='about'] .l7-about-story,
body[data-page='about'] .l7-about-presence,
body[data-page='about'] .l7-about-service,
body[data-page='about'] .l7-about-cta {
  padding-top: 2.85rem;
  padding-bottom: 2.85rem;
}

body[data-page='about'] .l7-about-story {
  padding-top: 2.2rem;
  padding-bottom: 2.4rem;
}

body[data-page='about'] .l7-about-presence {
  padding-top: 0.9rem;
  padding-bottom: 2.85rem;
}

body[data-page='about'] .l7-about-cta {
  padding-bottom: 4.25rem;
}

/* Contact Page */
.l7-page-hero--contact {
  padding-bottom: 3.4rem;
}

.l7-page-hero--contact::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(159, 186, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(77, 114, 255, 0.22), transparent 24%),
    radial-gradient(circle at 78% 76%, rgba(24, 48, 95, 0.3), transparent 30%),
    linear-gradient(
      120deg,
      rgba(6, 12, 21, 0.98) 0%,
      rgba(9, 22, 39, 0.95) 42%,
      rgba(13, 31, 55, 0.9) 100%
    );
}

.l7-page-hero--contact::after {
  content: '';
  position: absolute;
  inset: auto -7rem -13rem auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 98, 255, 0.22), transparent 68%);
  filter: blur(16px);
  z-index: 1;
  pointer-events: none;
}

.l7-contact-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.l7-contact-hero__chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.58rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--l7-on-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.l7-contact-hero__panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 30px 90px rgba(3, 8, 18, 0.22);
  backdrop-filter: blur(16px);
}

.l7-contact-hero__panel-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--l7-accent-on-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.l7-contact-hero__panel h2 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: var(--l7-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.l7-contact-hero__panel p {
  margin: 0;
  color: var(--l7-on-dark-soft);
}

.l7-contact-hero__meta-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.l7-contact-hero__meta-item {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.l7-contact-hero__meta-item span {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--l7-on-dark-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.l7-contact-hero__meta-item strong {
  display: block;
  color: var(--l7-on-dark);
  line-height: 1.6;
}

body[data-page='contact'] .l7-contact-page__channels {
  padding-top: 2.8rem;
  padding-bottom: 2.5rem;
}

body[data-page='contact'] .l7-contact-page__support {
  padding-top: 0.9rem;
  padding-bottom: 2.8rem;
}

body[data-page='contact'] .l7-contact-page__cta {
  padding-top: 0.8rem;
  padding-bottom: 4rem;
}

.l7-contact-page__intro {
  max-width: 25rem;
  margin-left: auto;
  color: var(--l7-text-soft);
}

body[data-page='contact'] .l7-contact-card {
  gap: 0.95rem;
}

body[data-page='contact'] .l7-contact-card h2 {
  font-size: 1.08rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body[data-page='contact'] .l7-contact-card .btn {
  margin-top: auto;
}

.l7-contact-support-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(18, 31, 49, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--l7-shadow);
}

.l7-contact-support-card--dark {
  background: linear-gradient(135deg, rgba(15, 28, 48, 0.98), rgba(29, 54, 90, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.l7-contact-support-card h2,
.l7-contact-support-card h3 {
  margin-bottom: 0.85rem;
  color: var(--l7-heading);
  font-family: var(--l7-font-heading);
}

.l7-contact-support-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.l7-contact-support-card h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.l7-contact-support-card p {
  margin: 0 0 1.4rem;
  color: var(--l7-text-soft);
}

.l7-contact-support-card--dark p {
  color: var(--l7-on-dark-soft);
}

.l7-contact-support-card--dark .l7-eyebrow {
  color: var(--l7-accent-on-dark);
}

.l7-contact-support-card--dark .l7-eyebrow::before {
  background: currentColor;
  opacity: 0.72;
}

.l7-contact-support-card--dark h2,
.l7-contact-support-card--dark h3,
.l7-contact-support-card--dark .l7-contact-card__kicker {
  color: var(--l7-on-dark);
}

.l7-contact-support-card__mini {
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.l7-contact-support-card__mini span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--l7-on-dark-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.l7-contact-support-card__mini strong {
  display: block;
  color: var(--l7-on-dark);
  line-height: 1.55;
}

.l7-contact-cta {
  position: relative;
  overflow: hidden;
  align-items: center;
}

.l7-contact-cta::after {
  content: '';
  position: absolute;
  inset: auto -5rem -7rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 98, 255, 0.22), transparent 68%);
}

.l7-metrics-grid {
  padding-top: 2rem;
}

.l7-metric-card,
.l7-info-card,
.l7-feature-card,
.l7-contact-card,
.l7-catalog-preview-card,
.l7-product-detail,
.l7-category-card,
.l7-product-card,
.l7-empty-state {
  height: 100%;
  border: 1px solid var(--l7-border);
  border-radius: var(--l7-radius-lg);
  box-shadow: var(--l7-shadow-premium);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 253, 0.97)),
    linear-gradient(135deg, rgba(33, 85, 231, 0.03), transparent 48%);
}

.l7-metric-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(6px);
}

.l7-metric-card__label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.l7-metric-card__value {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
  font-family: var(--l7-font-heading);
  font-weight: 700;
}

.l7-metric-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.l7-section-heading {
  max-width: 30rem;
}

.l7-feature-card,
.l7-info-card {
  padding: 1.75rem;
}

.l7-feature-card h3,
.l7-info-card h3,
.l7-contact-card h2,
.l7-product-card h3,
.l7-category-card h3 {
  margin-bottom: 0.75rem;
  color: var(--l7-heading);
  font-family: var(--l7-font-heading);
  font-size: 1.2rem;
}

.l7-feature-card p,
.l7-info-card p,
.l7-contact-card p,
.l7-product-card p,
.l7-category-card p {
  margin-bottom: 0;
  color: var(--l7-text-soft);
}

/* Utilities + States */
.l7-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(33, 85, 231, 0.1);
  border-radius: var(--l7-radius-pill);
  background: rgba(232, 239, 255, 0.78);
  color: var(--l7-brand-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.l7-category-card,
.l7-product-card {
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.l7-category-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  min-height: 236px;
  padding: 2.4rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border-bottom: 1px solid rgba(11, 24, 45, 0.06);
}

.l7-category-card img,
.l7-product-card img {
  width: 100%;
  height: auto;
  max-width: 250px;
  max-height: 186px;
  object-fit: contain;
}

.l7-product-detail__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.l7-category-card__body,
.l7-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
}

.l7-line-icon-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(17, 36, 67, 0.1);
  border-radius: 18px;
  background: #fff;
  color: var(--l7-brand-strong);
  box-shadow: 0 16px 30px rgba(4, 9, 18, 0.08);
}

.l7-line-icon-badge svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.l7-category-card:hover,
.l7-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 98, 255, 0.24);
  box-shadow: 0 28px 70px rgba(8, 17, 30, 0.14);
}

.l7-category-card__meta,
.l7-product-card__meta,
.l7-product-detail__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--l7-success);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.l7-product-card__actions,
.l7-product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.l7-product-card__actions .btn,
.l7-product-detail__actions .btn {
  flex: 1 1 auto;
}

.l7-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.l7-chip {
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--l7-border);
  border-radius: var(--l7-radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.96)),
    linear-gradient(135deg, rgba(33, 85, 231, 0.03), transparent 44%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 22px rgba(4, 9, 18, 0.06);
  color: var(--l7-heading);
  font-weight: 800;
}

.l7-chip.is-active,
.l7-chip:hover,
.l7-chip:focus {
  background: linear-gradient(135deg, #0a1527, #14305c);
  border-color: rgba(186, 208, 255, 0.14);
  color: #fff;
}

.l7-cta-band {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: var(--l7-radius-lg);
  border: 1px solid rgba(186, 208, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(33, 85, 231, 0.14), transparent 30%),
    linear-gradient(
      135deg,
      rgba(5, 11, 20, 0.98),
      rgba(11, 24, 44, 0.96) 56%,
      rgba(18, 46, 92, 0.92) 100%
    );
  color: #fff;
  box-shadow: 0 34px 90px rgba(4, 9, 18, 0.22);
}

.l7-cta-band h2 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-family: var(--l7-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.l7-cta-band .l7-eyebrow {
  color: var(--l7-accent-on-dark);
}

.l7-cta-band .l7-eyebrow::before {
  background: currentColor;
  opacity: 0.72;
}

.l7-cta-band p {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
}

.l7-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 9rem 9rem;
  opacity: 0.22;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5), transparent 88%);
  pointer-events: none;
}

.l7-breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.65);
  --bs-breadcrumb-item-active-color: #fff;
}

.l7-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

/* Product Page */
.l7-product-detail {
  padding: 2rem;
}

.l7-product-detail__image {
  overflow: hidden;
  border-radius: var(--l7-radius-md);
}

.l7-product-detail__content h2 {
  margin: 0 0 1rem;
  color: var(--l7-heading);
  font-family: var(--l7-font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.l7-product-detail__content p {
  color: var(--l7-text-soft);
}

.l7-product-specs {
  display: grid;
  gap: 0.9rem;
  margin: 1.75rem 0;
  padding: 0;
  list-style: none;
}

.l7-product-specs li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--l7-border);
  border-radius: var(--l7-radius-sm);
  background: var(--l7-surface-soft);
  color: var(--l7-text);
}

.l7-product-specs li::before {
  content: '';
  flex: 0 0 0.72rem;
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--l7-brand);
}

.l7-empty-state {
  padding: 2rem;
  text-align: center;
}

.l7-empty-state h2 {
  margin-bottom: 0.8rem;
  color: var(--l7-heading);
  font-family: var(--l7-font-heading);
}

.l7-contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem;
}

.l7-contact-card__kicker {
  color: var(--l7-brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.l7-contact-card__meta {
  color: var(--l7-text-soft);
  font-weight: 700;
}

.l7-footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #08101c 0%, #091423 100%);
}

.l7-footer::before {
  content: '';
  position: absolute;
  inset: -8rem auto auto -6rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 98, 255, 0.18), transparent 70%);
}

.l7-brand--footer {
  margin-bottom: 1.3rem;
}

.l7-footer-copy,
.l7-footer-note {
  color: var(--l7-on-dark-soft);
  margin: 0;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.l7-footer-title {
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--l7-font-heading);
  font-size: 1rem;
}

.l7-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.l7-footer .row > [class*='col-'] {
  min-width: 0;
}

.l7-footer-links a,
.l7-footer-links span {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.l7-footer-links a:hover,
.l7-footer-links a:focus,
.l7-footer-bottom a:hover,
.l7-footer-bottom a:focus {
  color: #fff;
}

.l7-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Phase 2 refinements */

.l7-site-header .navbar {
  padding: 1.05rem 0;
  background: linear-gradient(180deg, rgba(4, 9, 18, 0.95), rgba(7, 15, 27, 0.88));
  border-bottom: 1px solid rgba(186, 208, 255, 0.1);
  box-shadow: 0 18px 44px rgba(4, 9, 18, 0.16);
}

.l7-site-header .nav-link {
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(247, 249, 253, 0.78);
  letter-spacing: 0.01em;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.l7-site-header .nav-link:hover,
.l7-site-header .nav-link:focus,
.l7-site-header .nav-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(186, 208, 255, 0.12);
}

.navbar-toggler {
  border-color: rgba(186, 208, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.navbar-toggler:focus {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.16),
    0 0 0 4px rgba(33, 85, 231, 0.38);
}

.l7-brand__logo {
  box-shadow: none;
}

.l7-hero--home::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(186, 208, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(33, 85, 231, 0.2), transparent 24%),
    linear-gradient(
      120deg,
      rgba(3, 7, 14, 0.97) 0%,
      rgba(6, 14, 28, 0.94) 42%,
      rgba(10, 24, 46, 0.88) 100%
    );
}

.l7-hero--home::after {
  inset: auto -12% -22% 54%;
  height: 30rem;
  background: radial-gradient(circle, rgba(33, 85, 231, 0.18), transparent 70%);
  filter: blur(28px);
}

/* Home Page */
.l7-home-hero__media {
  min-height: 100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(120deg, rgba(4, 8, 16, 0.26), rgba(8, 19, 37, 0.18)),
    url('../img/hero/l7-home-hero-poster.webp') center/cover no-repeat;
}

.l7-home-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 7rem 7rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 82%);
  pointer-events: none;
}

.l7-home-hero__video {
  min-height: 100%;
  opacity: 0.3;
  filter: blur(11px) brightness(0.62) saturate(0.8);
}

.l7-home-hero__row {
  min-height: 96vh;
}

.l7-home-hero__content {
  max-width: 60rem;
}

.l7-home-hero__content .l7-display {
  margin-bottom: 1.2rem;
  max-width: 10ch;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}

.l7-home-hero__lead {
  max-width: 40rem;
  color: rgba(247, 249, 253, 0.84);
  font-size: 1.12rem;
  line-height: 1.72;
}

.l7-home-hero__content .btn {
  min-width: 15.25rem;
}

.l7-home-hero__chip {
  min-height: 2.75rem;
  padding: 0.68rem 1rem;
  border-color: rgba(186, 208, 255, 0.14);
  background: rgba(7, 14, 26, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(4, 9, 18, 0.12);
  color: rgba(247, 249, 253, 0.96);
  font-size: 0.9rem;
}

.l7-home-credibility__panel {
  border-color: rgba(17, 36, 67, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(245, 248, 253, 0.97)),
    radial-gradient(circle at top right, rgba(33, 85, 231, 0.05), transparent 34%);
}

.l7-home-credibility__item::before {
  background: linear-gradient(180deg, rgba(33, 85, 231, 0.22), rgba(17, 36, 67, 0.04));
}

.l7-home-overview__content .l7-body-lg {
  line-height: 1.75;
}

.l7-home-overview__card-label,
.l7-contact-card__kicker,
.l7-about-story__card-kicker,
.l7-about-service-card__kicker {
  color: var(--l7-brand-strong);
}

.l7-home-overview__spotlight,
.l7-catalog-preview__notice-card,
.l7-about-presence__panel,
.l7-contact-support-card--dark,
.l7-cta-band {
  border: 1px solid rgba(186, 208, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(33, 85, 231, 0.14), transparent 30%),
    linear-gradient(
      135deg,
      rgba(5, 11, 20, 0.98),
      rgba(11, 24, 44, 0.96) 56%,
      rgba(18, 46, 92, 0.92) 100%
    );
  box-shadow: 0 34px 90px rgba(4, 9, 18, 0.22);
}

.l7-home-categories,
.l7-home-differentials {
  background:
    radial-gradient(circle at top right, rgba(33, 85, 231, 0.16), transparent 24%),
    linear-gradient(145deg, #050b14 0%, #0b1730 50%, #0d2244 100%);
}

.l7-home-categories::before,
.l7-home-differentials::before {
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(33, 85, 231, 0.14), transparent 70%);
  filter: blur(14px);
}

.l7-home-step-card {
  border-color: rgba(186, 208, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(33, 85, 231, 0.08), rgba(255, 255, 255, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 48px rgba(4, 9, 18, 0.18);
}

.l7-catalog-preview-card__image {
  background:
    radial-gradient(circle at top right, rgba(33, 85, 231, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(8, 18, 34, 0.04), rgba(8, 18, 34, 0.02));
}

.l7-catalog-preview__notice-brand,
.l7-contact-support-card__mini,
.l7-contact-hero__panel,
.l7-contact-hero__meta-item {
  border-color: rgba(186, 208, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(33, 85, 231, 0.06), transparent 56%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.l7-catalog-preview__notice-brand span,
.l7-contact-hero__panel p,
.l7-contact-hero__meta-item strong,
.l7-contact-support-card__mini strong {
  color: var(--l7-on-dark);
}

.l7-catalog-preview__notice-brand span,
.l7-contact-hero__meta-item span,
.l7-contact-support-card__mini span {
  color: var(--l7-on-dark-muted);
}

.l7-contact-hero__chip,
.l7-about-hero__facts .l7-pill,
.l7-about-presence__panel .l7-pill,
.l7-home-overview__spotlight .l7-pill {
  border: 1px solid rgba(186, 208, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.l7-metric-card {
  border-color: rgba(186, 208, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(33, 85, 231, 0.08), transparent 52%);
}

.l7-cta-band--home::after {
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(33, 85, 231, 0.18), transparent 70%);
  filter: blur(18px);
}

.l7-footer {
  padding: 4.25rem 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(33, 85, 231, 0.12), transparent 22%),
    linear-gradient(180deg, #050b14 0%, #08101d 100%);
}

.l7-footer::before {
  inset: -8rem auto auto -7rem;
  width: 19rem;
  height: 19rem;
  background: radial-gradient(circle, rgba(33, 85, 231, 0.12), transparent 72%);
}

.l7-footer-title {
  letter-spacing: 0.01em;
}

.l7-footer-links a,
.l7-footer-bottom a {
  color: rgba(247, 249, 253, 0.86);
}

.l7-footer-links a:hover,
.l7-footer-links a:focus,
.l7-footer-bottom a:hover,
.l7-footer-bottom a:focus {
  color: #fff;
}

.l7-footer-bottom {
  border-top-color: rgba(186, 208, 255, 0.1);
}

body[data-page='home'] main,
body[data-page='about'] main,
body[data-page='catalog'] main,
body[data-page='product'] main,
body[data-page='contact'] main {
  display: block;
}

@media (max-width: 991.98px) {
  .l7-site-header .navbar-collapse {
    margin-top: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(186, 208, 255, 0.12);
    border-radius: 24px;
    background: rgba(7, 14, 26, 0.86);
    box-shadow: 0 22px 46px rgba(4, 9, 18, 0.18);
  }

  .l7-site-header .navbar-nav {
    gap: 0.35rem;
    align-items: stretch !important;
  }

  .l7-site-header .nav-link {
    text-align: center;
  }

  .l7-site-header .navbar {
    padding: 0.85rem 0;
  }

  .l7-header-cta {
    margin-top: 1rem;
    margin-left: 0;
  }

  .l7-hero .min-vh-100 {
    min-height: auto !important;
    padding: 8rem 0 5rem;
  }

  .l7-home-hero__row {
    padding: 8rem 0 7rem;
  }

  .l7-home-hero__video {
    inset: -10%;
    width: 120%;
    height: 120%;
    opacity: 0.4;
  }

  .l7-home-credibility {
    margin-top: -3rem;
  }

  .l7-home-overview {
    padding-top: 1rem;
  }

  .l7-cta-band {
    padding: 2rem;
  }

  .l7-page-hero--about {
    padding-bottom: 3rem;
  }

  .l7-page-hero--contact {
    padding-bottom: 3rem;
  }

  .l7-home-credibility__intro {
    max-width: none;
  }

  body[data-page='home'] .l7-home-categories,
  body[data-page='home'] .l7-home-products,
  body[data-page='home'] .l7-home-differentials,
  body[data-page='home'] .l7-home-cta {
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
  }

  .l7-catalog-preview__hero,
  .l7-catalog-page__hero {
    padding-bottom: 2.7rem;
  }

  .l7-catalog-preview,
  .l7-catalog-page,
  .l7-catalog-preview__notice {
    padding-top: 2.4rem;
    padding-bottom: 2.8rem;
  }

  body[data-page='contact'] .l7-contact-page__channels,
  body[data-page='contact'] .l7-contact-page__support,
  body[data-page='contact'] .l7-contact-page__cta {
    padding-top: 2.4rem;
    padding-bottom: 2.7rem;
  }
}

@media (max-width: 767.98px) {
  .l7-section {
    padding: 4rem 0;
  }

  .l7-page-hero {
    padding-top: 8rem;
  }

  .l7-home-hero__chips,
  .l7-cta-band__bullets {
    gap: 0.65rem;
  }

  .l7-home-hero__video {
    inset: -12%;
    width: 124%;
    height: 124%;
    filter: blur(7px) brightness(0.72) saturate(0.9);
    transform: scale(1.02);
  }

  .l7-home-credibility__panel,
  .l7-home-overview__content,
  .l7-home-overview__card,
  .l7-home-overview__spotlight,
  .l7-home-step-card,
  .l7-about-presence__panel,
  .l7-about-story__content,
  .l7-about-story__card,
  .l7-about-location-card,
  .l7-about-service-card,
  .l7-contact-hero__panel,
  .l7-contact-support-card {
    padding: 1.45rem;
  }

  .l7-home-credibility__item {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(18, 31, 49, 0.08);
    padding-top: 1rem;
  }

  .l7-home-credibility__item::before {
    display: none;
  }

  .l7-home-overview__spotlight {
    align-items: flex-start;
  }

  .l7-about-hero__heading .l7-page-title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .l7-about-hero__summary {
    font-size: 1.03rem;
  }

  .l7-about-hero__facts {
    gap: 0.65rem;
  }

  .l7-about-story__intro {
    margin-bottom: 2rem;
  }

  .l7-about-presence__links {
    gap: 0.75rem;
  }

  body[data-page='about'] .l7-about-story,
  body[data-page='about'] .l7-about-presence,
  body[data-page='about'] .l7-about-service,
  body[data-page='about'] .l7-about-cta {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  body[data-page='contact'] .l7-contact-page__channels,
  body[data-page='contact'] .l7-contact-page__support,
  body[data-page='contact'] .l7-contact-page__cta {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .l7-metric-card,
  .l7-feature-card,
  .l7-info-card,
  .l7-contact-card,
  .l7-product-detail,
  .l7-empty-state {
    padding: 1.45rem;
  }

  .l7-category-card img,
  .l7-product-card img,
  .l7-product-detail__image img {
    height: 210px;
  }

  .l7-catalog-preview-card__image {
    min-height: 220px;
    padding: 1.35rem;
  }

  .l7-catalog-preview-card__body,
  .l7-catalog-preview__notice-card,
  .l7-catalog-preview__notice-brand,
  .l7-catalog-page__filters,
  .l7-catalog-page__context-card {
    padding: 1.45rem;
  }

  .l7-catalog-preview__intro,
  .l7-catalog-page__intro,
  .l7-catalog-preview__notice-content {
    max-width: none;
  }

  .l7-catalog-page__context-meta {
    width: 100%;
  }

  .l7-contact-hero__chips {
    gap: 0.65rem;
  }

  .l7-contact-hero__meta-item,
  .l7-contact-support-card__mini {
    padding: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .l7-home-hero__video {
    display: none;
  }

  .l7-category-card:hover,
  .l7-product-card:hover {
    transform: none;
  }

  .l7-skip-link {
    transition: none;
  }
}
