:root {
  --font-body: "Manrope";
  --font-display: "Sora";
  --font-editorial: "Cormorant Garamond";
  --mlc-blue: #0757b9;
  --mlc-cobalt: #126bd3;
  --mlc-blue-dark: #063d86;
  --mlc-navy: #0c1f3a;
  --mlc-lilac: #c178ed;
  --mlc-violet: #7f48b2;
  --mlc-lilac-soft: #f4eafb;
  --mlc-sky: #eaf4ff;
  --ink: #13243b;
  --muted: #66768c;
  --line: #dbe6f2;
  --surface: #ffffff;
  --background: #edf4ff;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #eef4fc;
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

h1,
h2,
h3,
strong {
  font-family: var(--font-display), Arial, sans-serif;
}

h1 em,
h2 em,
blockquote {
  font-family: var(--font-editorial), Georgia, serif;
}

.shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--mlc-blue), var(--mlc-lilac));
  box-shadow: 0 0 14px rgba(193, 120, 237, 0.55);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms cubic-bezier(.2,.7,.2,1), transform 760ms cubic-bezier(.2,.7,.2,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.topbar {
  position: relative;
  z-index: 51;
  overflow: hidden;
  background: var(--mlc-navy);
  color: #dce9fa;
  font-size: 0.74rem;
  letter-spacing: 0.015em;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(193,120,237,.12), transparent);
  animation: topbar-sheen 7s linear infinite;
  transform: translateX(-100%);
}

.topbar-inner {
  min-height: 36px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-inner div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(219, 230, 242, 0.82);
  background: linear-gradient(90deg, rgba(248,252,255,.93), rgba(246,239,253,.91));
  backdrop-filter: blur(20px) saturate(1.35);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand img {
  width: 132px;
  height: 59px;
  object-fit: contain;
  transition: transform 300ms ease;
}

.brand:hover img {
  transform: scale(1.035);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 7px 0;
  color: #42546c;
  font-size: 0.79rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 1px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mlc-blue), var(--mlc-lilac));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.desktop-nav a:hover {
  color: var(--mlc-blue);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg,
.text-link svg,
.circle-arrow svg,
.product-info a svg,
.experience-note a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 200ms ease;
}

.button:hover svg,
.text-link:hover svg,
.product-info a:hover svg,
.experience-note a:hover svg {
  transform: translateX(3px);
}

.button-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--mlc-blue), #1976db 65%, #6357ba);
  box-shadow: 0 14px 30px rgba(7, 87, 185, 0.25);
}

.button-primary::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 130%;
  top: -15%;
  left: -70px;
  background: rgba(255,255,255,.22);
  filter: blur(8px);
  transform: rotate(18deg);
  transition: left 520ms ease;
}

.button-primary:hover::after {
  left: calc(100% + 30px);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(7, 87, 185, 0.34);
}

.button-primary svg,
.button-white svg,
.floating-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button-small {
  min-height: 43px;
  padding: 0 18px;
  border-radius: 13px;
}

.button-secondary {
  border-color: #cbdced;
  background: rgba(255, 255, 255, 0.76);
  color: var(--mlc-blue-dark);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 35, 63, 0.1);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 19px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--mlc-navy);
}

.mobile-menu nav {
  position: absolute;
  top: 50px;
  right: 0;
  width: 225px;
  display: grid;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(16, 35, 63, 0.16);
}

.mobile-menu nav a {
  padding: 12px 10px;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 750;
}

.mobile-menu nav a:hover {
  background: var(--mlc-sky);
  color: var(--mlc-blue);
}

.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(239,248,255,.98), rgba(219,237,255,.96) 53%, rgba(242,226,253,.97)),
    radial-gradient(circle at 15% 20%, #fff, transparent 40%);
  background-size: 140% 140%;
  animation: aurora-shift 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9daf0, transparent);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image: radial-gradient(rgba(7, 87, 185, 0.16) .65px, transparent .65px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, #000, transparent 52%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.68;
  animation: glow-float 9s ease-in-out infinite alternate;
}

.hero-glow-one {
  width: 500px;
  height: 500px;
  top: -280px;
  right: 6%;
  background: radial-gradient(circle, rgba(193, 120, 237, 0.34), transparent 68%);
}

.hero-glow-two {
  width: 500px;
  height: 500px;
  bottom: -370px;
  left: 5%;
  background: radial-gradient(circle, rgba(7, 87, 185, 0.25), transparent 70%);
  animation-delay: -3s;
}

.hero-grid {
  min-height: 720px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 70px;
  padding-top: 78px;
  padding-bottom: 88px;
}

.hero-enter {
  opacity: 0;
  animation: hero-in 850ms .12s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-enter-late {
  animation-delay: .3s;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mlc-blue);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--mlc-blue), var(--mlc-lilac));
  animation: accent-breathe 3.8s ease-in-out infinite;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--mlc-navy);
  font-size: clamp(3.3rem, 5vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: .98;
}

.hero h1 em {
  display: block;
  margin-top: 8px;
  color: var(--mlc-violet);
  font-size: 1.03em;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: .92;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #53677f;
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  margin-top: 31px;
  color: #40556d;
  font-size: 0.73rem;
  font-weight: 800;
}

.trust-row span {
  position: relative;
  padding-left: 17px;
}

.trust-row span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mlc-lilac);
  box-shadow: 0 0 0 5px rgba(193,120,237,.12);
  transform: translateY(-50%);
}

.hero-media {
  min-height: 530px;
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 28px -24px 4px 46px;
  z-index: 0;
  border-radius: 48px 48px 48px 128px;
  background: linear-gradient(135deg, rgba(8,103,199,.92), rgba(117,70,164,.86) 58%, rgba(193,120,237,.8));
  box-shadow: 0 28px 64px rgba(61,64,150,.23);
  transform: rotate(2.4deg);
  animation: backplate-drift 7s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 118px;
  height: 118px;
  left: -7px;
  bottom: 25px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.75) 1px, transparent 1.6px);
  background-size: 11px 11px;
  opacity: .58;
  animation: detail-drift 10s linear infinite;
}

.hero-video-frame {
  width: min(590px, 100%);
  aspect-ratio: 1.05 / 1;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 42px 42px 42px 120px;
  background: #eef5ff;
  box-shadow: 0 35px 80px rgba(25, 61, 104, .24), 0 0 0 10px rgba(255,255,255,.42), 0 0 0 11px rgba(126,76,179,.14);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-shade,
.video-card-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-shade {
  background: linear-gradient(180deg, rgba(6,31,67,.12), transparent 42%, rgba(8,29,58,.48));
}

.video-topline {
  position: absolute;
  inset: 22px 24px auto;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.video-topline span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8cffb7;
  box-shadow: 0 0 0 5px rgba(140,255,183,.18);
}

.video-caption {
  position: absolute;
  inset: auto 28px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.play-badge {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

.play-badge svg {
  width: 23px;
  height: 23px;
  fill: #fff;
}

.video-caption small {
  display: block;
  margin-bottom: 4px;
  color: #dce9f9;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-caption strong {
  font-size: .92rem;
}

.hero-float {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(219,230,242,.8);
  background: rgba(255,255,255,.86);
  box-shadow: 0 20px 48px rgba(22,58,100,.15);
  backdrop-filter: blur(18px);
  animation: card-float 5.5s ease-in-out infinite;
}

.hero-float-top {
  top: 45px;
  left: -34px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 17px;
  border-radius: 18px;
}

.hero-float-top strong {
  color: var(--mlc-blue);
  font-size: 1.7rem;
}

.hero-float-top span {
  color: #52677f;
  font-size: .63rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-float-bottom {
  right: -20px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 18px;
  animation-delay: -2.4s;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #27c873;
  box-shadow: 0 0 0 0 rgba(39,200,115,.4);
  animation: pulse 2s infinite;
}

.hero-float-bottom small,
.hero-float-bottom strong {
  display: block;
}

.hero-float-bottom small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: .59rem;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-float-bottom strong {
  color: var(--mlc-navy);
  font-size: .72rem;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(90deg, #063f8a, #7042a1 48%, #0867c7);
  box-shadow: 0 12px 30px rgba(27,63,108,.15);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 17px 0;
  animation: marquee-move 32s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.92);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #efc3ff;
  box-shadow: 0 0 0 5px rgba(239,195,255,.12);
}

.section {
  padding: 112px 0;
}

.categories {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 18%, rgba(73,163,255,.22), transparent 25%),
    radial-gradient(circle at 94% 78%, rgba(193,120,237,.24), transparent 27%),
    linear-gradient(145deg, #f6fbff, #edf5ff 52%, #f8efff);
}

.categories::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  top: 70px;
  right: -170px;
  border: 1px solid rgba(126,76,179,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(193,120,237,.035), 0 0 0 110px rgba(7,87,185,.025);
  animation: spin-slow 28s linear infinite;
}

.categories::after {
  content: "MLC";
  position: absolute;
  left: -35px;
  bottom: -72px;
  color: #0757b9;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(9rem, 19vw, 17rem);
  font-weight: 800;
  letter-spacing: -.08em;
  opacity: .025;
  pointer-events: none;
}

.categories .shell {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}

.section-heading .eyebrow,
.about-copy .eyebrow,
.catalog-copy .eyebrow,
.contact .eyebrow,
.experience-intro .eyebrow {
  margin-bottom: 15px;
}

.section-heading h2,
.catalog-copy h2,
.about-copy h2,
.contact h2,
.experience-intro h2 {
  margin: 0;
  color: var(--mlc-navy);
  font-size: clamp(2.5rem, 4.15vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.section-heading h2 em,
.about-copy h2 em {
  color: transparent;
  background: linear-gradient(90deg, var(--mlc-violet), var(--mlc-blue), #b44fb5);
  background-size: 200% auto;
  background-clip: text;
  font-weight: 600;
  animation: text-gradient 7s linear infinite;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.78;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.category-card {
  --card-accent: #0757b9;
  --card-tint: #e7f3ff;
  min-height: 202px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), var(--card-tint));
  box-shadow: 0 12px 28px rgba(29,65,107,.06);
  transition-property: opacity, transform, border-color, box-shadow;
}

.category-card:hover {
  transform: translateY(-7px) !important;
  border-color: #b8d0eb;
  box-shadow: 0 22px 48px rgba(29, 65, 107, 0.12);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent), transparent 86%);
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:nth-child(4n + 1) { --card-accent: #0757b9; --card-tint: #e4f2ff; }
.category-card:nth-child(4n + 2) { --card-accent: #8b48bd; --card-tint: #f2e5fb; }
.category-card:nth-child(4n + 3) { --card-accent: #0a9aa4; --card-tint: #dff7f6; }
.category-card:nth-child(4n + 4) { --card-accent: #d34d8c; --card-tint: #fde8f2; }

.category-card::after {
  content: "";
  position: absolute;
  width: 122px;
  height: 122px;
  top: -68px;
  right: -53px;
  border-radius: 50%;
  background: var(--card-tint);
  transition: transform 500ms ease;
}

.category-card:hover::after {
  transform: scale(1.3);
}

.category-code {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255,255,255,.78);
  color: var(--card-accent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--card-accent) 18%, transparent);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 850;
}

.category-card h3 {
  max-width: 205px;
  margin: 27px 0 8px;
  color: var(--mlc-navy);
  font-size: 1.02rem;
  line-height: 1.28;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.circle-arrow {
  position: absolute;
  right: 19px;
  bottom: 19px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--card-accent);
  background: #fff;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.category-card:hover .circle-arrow {
  color: #fff;
  background: var(--card-accent);
  transform: rotate(-8deg);
}

.circle-arrow svg {
  width: 16px;
}

.experience {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 80%, rgba(18,107,211,.22), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(193,120,237,.2), transparent 25%),
    var(--mlc-navy);
  color: #fff;
}

.experience::before {
  content: "";
  position: absolute;
  inset: -280px -220px auto auto;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.015);
}

.experience::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.12) .75px, transparent .75px);
  background-size: 23px 23px;
  mask-image: linear-gradient(90deg, transparent, #000 52%, transparent);
  opacity: .35;
  animation: detail-drift 18s linear infinite;
}

.experience-intro {
  max-width: 860px;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.eyebrow-light {
  color: #b9d8fb;
}

.eyebrow-light span {
  background: #d996ff;
}

.experience-intro h2 {
  color: #fff;
}

.experience-intro h2 em,
.catalog-copy h2 em,
.contact h2 em {
  color: #dca9fa;
  font-weight: 600;
}

.experience-intro > p:not(.eyebrow) {
  max-width: 670px;
  margin: 22px 0 0;
  color: #b8c8db;
  line-height: 1.75;
}

.video-bento {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-template-rows: 248px 248px;
  gap: 18px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: #172e4e;
  transition-property: opacity, transform, border-color, box-shadow;
}

.video-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 28px 60px rgba(0,0,0,.25);
}

.video-card-large {
  grid-row: 1 / 3;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.video-card:hover video {
  transform: none;
}

.video-card-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(6,19,37,.86));
}

.video-card-copy {
  position: absolute;
  inset: auto 30px 28px;
  color: #fff;
}

.video-card-copy > span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.video-card-copy h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.3rem, 2.3vw, 2.2rem);
  letter-spacing: -.035em;
}

.video-card-copy p {
  margin: 8px 0 0;
  color: #c7d4e5;
  font-size: .78rem;
}

.video-card-small .video-card-copy {
  inset: auto 22px 21px;
}

.video-card-small .video-card-copy h3 {
  font-size: 1.1rem;
  line-height: 1.3;
}

.experience-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border: 1px solid rgba(193,120,237,.32);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(107,66,147,.4), rgba(16,47,83,.7));
}

.note-index {
  color: #c7d4e5;
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.experience-note blockquote {
  max-width: 400px;
  margin: 12px 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.03;
}

.experience-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e4c3f8;
  font-size: .72rem;
  font-weight: 800;
}

.featured {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(7,87,185,.18), transparent 25%),
    radial-gradient(circle at 92% 88%, rgba(193,120,237,.2), transparent 27%),
    linear-gradient(150deg, #edf5ff, #f5efff 58%, #e9f6ff);
}

.featured::before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  left: -245px;
  bottom: -210px;
  border: 1px solid rgba(7,87,185,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(7,87,185,.028), 0 0 0 130px rgba(193,120,237,.02);
  animation: glow-float 10s ease-in-out infinite alternate;
}

.featured .shell {
  position: relative;
  z-index: 1;
}

.featured-heading {
  grid-template-columns: 1fr auto;
}

.text-link,
.product-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mlc-blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.text-link:hover,
.product-info a:hover {
  color: var(--mlc-blue-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  --product-accent: #0757b9;
  --product-tint: #e5f2ff;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 32px rgba(30,62,102,.07);
  transition-property: opacity, transform, box-shadow, border-color;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 4px;
  background: linear-gradient(90deg, var(--product-accent), transparent 88%);
}

.product-card:nth-child(6n + 1) { --product-accent: #0757b9; --product-tint: #dceeff; }
.product-card:nth-child(6n + 2) { --product-accent: #8c49bd; --product-tint: #efe0fb; }
.product-card:nth-child(6n + 3) { --product-accent: #df5261; --product-tint: #ffe2e5; }
.product-card:nth-child(6n + 4) { --product-accent: #c68a00; --product-tint: #fff0c7; }
.product-card:nth-child(6n + 5) { --product-accent: #008f9c; --product-tint: #d9f5f4; }
.product-card:nth-child(6n + 6) { --product-accent: #b64c9b; --product-tint: #f8e0f2; }

.product-card:hover {
  transform: translateY(-7px) !important;
  border-color: #c1d5eb;
  box-shadow: 0 24px 52px rgba(30, 62, 102, 0.13);
}

.product-image {
  height: 292px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 25px;
  background:
    radial-gradient(circle at 50% 54%, rgba(255,255,255,.98), rgba(255,255,255,.58) 47%, transparent 68%),
    linear-gradient(145deg, #fdfefe, var(--product-tint));
}

.product-image::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--product-accent) 12%, transparent);
}

.product-image span {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;
  padding: 7px 11px;
  border: 1px solid #dbe8f5;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #49627d;
  font-size: 0.59rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.product-image img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.025);
  transition: filter 300ms ease;
}

.product-card:hover .product-image img {
  transform: none;
  filter: saturate(1.13) contrast(1.04);
}

.product-orbit {
  position: absolute;
  z-index: 0;
  width: 215px;
  height: 215px;
  border: 1px solid color-mix(in srgb, var(--product-accent) 18%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,.35);
}

.product-info {
  padding: 25px 25px 27px;
}

.product-info > small {
  display: block;
  margin-bottom: 7px;
  color: var(--product-accent);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 47px;
  margin: 0;
  color: var(--mlc-navy);
  font-size: 1.04rem;
  line-height: 1.37;
}

.product-info p {
  margin: 8px 0 21px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.add-quote-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mlc-blue), #6852b3);
  color: #fff;
  box-shadow: 0 10px 22px rgba(7,87,185,.18);
  cursor: pointer;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .68rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.add-quote-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 27px rgba(7,87,185,.25);
}

.add-quote-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-actions > a {
  white-space: nowrap;
  font-size: .68rem;
}

.quote-assist {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 24px;
  padding: 31px 35px;
  overflow: hidden;
  border: 1px solid rgba(7,87,185,.14);
  border-radius: 25px;
  background:
    radial-gradient(circle at 92% 0%, rgba(193,120,237,.25), transparent 31%),
    linear-gradient(135deg, #eaf5ff, #f8f2ff);
  box-shadow: 0 15px 32px rgba(30,62,102,.06);
}

.quote-assist span {
  color: var(--mlc-violet);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-assist h3 {
  margin: 7px 0 6px;
  color: var(--mlc-navy);
  font-size: 1.13rem;
}

.quote-assist p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.open-quote-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 19px;
  border: 1px solid rgba(7,87,185,.18);
  border-radius: 14px;
  background: #fff;
  color: var(--mlc-blue-dark);
  box-shadow: 0 12px 25px rgba(30,62,102,.08);
  cursor: pointer;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .75rem;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.open-quote-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 30px rgba(30,62,102,.13);
}

.catalog-callout {
  padding-top: 98px;
  padding-bottom: 98px;
  background:
    radial-gradient(circle at 85% 10%, rgba(193,120,237,.17), transparent 28%),
    linear-gradient(180deg, #f4f8ff, #e9f2ff);
}

.catalog-panel {
  min-height: 545px;
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 55px;
  padding: 70px 74px;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(135deg, #053b83 0%, #0757b9 56%, #72459f 145%);
  color: #fff;
  box-shadow: 0 30px 70px rgba(7,59,128,.18);
}

.catalog-panel::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -170px;
  top: -210px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.04), 0 0 0 140px rgba(255,255,255,.025);
  animation: spin-slow 28s linear infinite;
}

.catalog-copy {
  position: relative;
  z-index: 2;
}

.catalog-copy h2,
.contact h2 {
  color: #fff;
}

.catalog-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 23px 0 0;
  color: #d7e7fa;
  font-size: .94rem;
  line-height: 1.78;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 33px;
}

.button-white {
  background: #fff;
  color: var(--mlc-blue-dark);
  box-shadow: 0 17px 34px rgba(3, 37, 83, 0.2);
}

.button-ghost {
  border-color: rgba(255,255,255,.42);
  color: #fff;
  background: rgba(255,255,255,.06);
}

.catalog-mockup {
  min-height: 420px;
  position: relative;
  z-index: 1;
}

.catalog-mockup img {
  width: 274px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 6px;
  box-shadow: 0 34px 70px rgba(0,0,0,.3);
  transform: translate(-44%, -50%) rotate(5deg);
  animation: none;
}

.catalog-shadow {
  width: 285px;
  height: 365px;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 9px;
  background: rgba(255,255,255,.12);
  transform: translate(-58%, -48%) rotate(-5deg);
}

.catalog-badge {
  position: absolute;
  right: -5px;
  bottom: 60px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: #fff;
  font-size: .63rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 74%, rgba(193,120,237,.19), transparent 25%),
    radial-gradient(circle at 91% 15%, rgba(7,87,185,.16), transparent 25%),
    linear-gradient(140deg, #f5efff, #edf7ff 56%, #e7f3ff);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 92px;
  align-items: start;
}

.about-copy > p:not(.eyebrow) {
  margin: 25px 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.82;
}

.value-grid {
  display: grid;
  gap: 15px;
}

.value-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 19px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 35px rgba(30,62,102,.06);
  transition-property: opacity, transform, box-shadow, border-color;
}

.value-grid article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--mlc-blue), var(--mlc-lilac));
  opacity: .78;
}

.value-grid article:hover {
  transform: translateX(7px) !important;
  border-color: #c2d6ec;
  box-shadow: 0 18px 42px rgba(30,62,102,.09);
}

.value-grid article > span {
  grid-row: span 2;
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--mlc-lilac-soft), var(--mlc-sky));
  color: #8e49bc;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 850;
}

.value-grid h3 {
  margin: 1px 0 7px;
  color: var(--mlc-navy);
  font-size: .96rem;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(193,120,237,.17), transparent 26%),
    radial-gradient(circle at 8% 84%, rgba(18,107,211,.14), transparent 28%),
    #f7faff;
}

.faq::before {
  content: "?";
  position: absolute;
  right: 3%;
  bottom: -130px;
  color: rgba(7,87,185,.035);
  font-family: var(--font-editorial), Georgia, serif;
  font-size: 540px;
  font-weight: 700;
  line-height: 1;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 85px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 132px;
}

.faq-heading > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 13px 30px rgba(30,62,102,.055);
  transition-property: opacity, transform, border-color, box-shadow;
}

.faq-list details[open] {
  border-color: rgba(7,87,185,.24);
  box-shadow: 0 18px 38px rgba(30,62,102,.09);
}

.faq-list summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  align-items: center;
  gap: 14px;
  padding: 18px 23px;
  color: var(--mlc-navy);
  cursor: pointer;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: .9rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--mlc-sky), var(--mlc-lilac-soft));
  color: var(--mlc-violet);
  font-size: .65rem;
}

.faq-list summary > i {
  color: var(--mlc-blue);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 1.45rem;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  transition: transform 180ms ease;
}

.faq-list details[open] summary > i {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -5px 23px 0 79px;
  padding: 0 0 25px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.72;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 12% 100%, rgba(193,120,237,.33), transparent 31%),
    radial-gradient(circle at 88% 0%, rgba(18,107,211,.3), transparent 29%),
    linear-gradient(120deg, #0b203d, #102b50 58%, #251f50);
  background-size: 120% 120%;
  animation: aurora-shift 15s ease-in-out infinite alternate;
  color: #fff;
}

.contact-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -300px;
  bottom: -330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,120,237,.3), transparent 70%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 88px;
}

.contact h2 {
  max-width: 650px;
}

.contact-grid > div:first-child > p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 30px;
  color: #bdcce0;
  line-height: 1.78;
}

.contact-card {
  display: grid;
  gap: 0;
  padding: 8px 29px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background: rgba(255,255,255,.065);
  box-shadow: 0 22px 50px rgba(0,0,0,.16);
  backdrop-filter: blur(14px);
}

.contact-card > div {
  display: grid;
  gap: 7px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-card > div:last-child {
  border-bottom: 0;
}

.contact-card span {
  color: #9db0c8;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: #fff;
  font-size: .9rem;
  font-weight: 750;
}

.contact-card a:hover {
  color: #dba4ff;
}

footer {
  padding: 68px 0 23px;
  background: linear-gradient(135deg, #f9fcff, #f5effc);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .65fr .65fr .55fr;
  gap: 55px;
}

.footer-brand img {
  width: 145px;
  height: 78px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 310px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links strong,
.footer-social strong {
  margin-bottom: 5px;
  color: var(--mlc-navy);
  font-size: .81rem;
}

.footer-links a {
  color: var(--muted);
  font-size: .75rem;
}

.footer-links a:hover {
  color: var(--mlc-blue);
}

.footer-social > div {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mlc-sky);
  color: var(--mlc-blue);
  transition: transform 200ms ease, color 200ms ease, background 200ms ease;
}

.footer-social a:hover {
  color: #fff;
  background: var(--mlc-blue);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-social .instagram-icon {
  fill: none;
}

.footer-social .social-dot {
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: #7a8ba0;
  font-size: .68rem;
}

.footer-bottom a {
  color: var(--mlc-blue);
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--mlc-violet);
}

.floating-quote {
  min-height: 54px;
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mlc-navy), var(--mlc-blue-dark));
  color: #fff;
  box-shadow: 0 15px 32px rgba(12,31,58,.25);
  cursor: pointer;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .73rem;
  font-weight: 850;
}

.floating-quote svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-quote strong {
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--mlc-lilac);
  color: #25133d;
  font-size: .62rem;
}

.quote-layer {
  position: fixed;
  inset: 0;
  z-index: 210;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7,18,35,.58);
  backdrop-filter: blur(6px);
  cursor: pointer;
  animation: quote-fade-in 220ms ease both;
}

.quote-drawer {
  width: min(470px, 100%);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #f7faff;
  box-shadow: -25px 0 70px rgba(4,19,40,.25);
  animation: quote-slide-in 320ms cubic-bezier(.2,.75,.25,1) both;
}

.quote-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 25px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #f4ecfb);
}

.quote-drawer-header span {
  color: var(--mlc-violet);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.quote-drawer-header h2 {
  margin: 4px 0 0;
  color: var(--mlc-navy);
  font-size: 1.45rem;
}

.quote-drawer-header > button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--mlc-navy);
  cursor: pointer;
}

.quote-drawer-header svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.quote-drawer-body {
  overflow-y: auto;
  padding: 23px 25px 30px;
}

.quote-intro {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.66;
}

.custom-product label,
.quote-fields label {
  display: grid;
  gap: 7px;
  color: var(--mlc-navy);
  font-size: .68rem;
  font-weight: 850;
}

.custom-product > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.custom-product input,
.quote-fields input,
.quote-fields textarea {
  width: 100%;
  border: 1px solid #cfddeb;
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .76rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.custom-product input,
.quote-fields input {
  height: 45px;
  padding: 0 13px;
}

.quote-fields textarea {
  resize: vertical;
  min-height: 82px;
  padding: 12px 13px;
}

.custom-product input:focus,
.quote-fields input:focus,
.quote-fields textarea:focus {
  border-color: var(--mlc-blue);
  box-shadow: 0 0 0 3px rgba(7,87,185,.1);
}

.custom-product button {
  padding: 0 15px;
  border: 0;
  border-radius: 12px;
  background: var(--mlc-blue);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .69rem;
  font-weight: 850;
}

.quote-list {
  display: grid;
  gap: 10px;
  margin: 23px 0;
}

.quote-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.quote-list h3 {
  margin: 0;
  color: var(--mlc-navy);
  font-size: .78rem;
  line-height: 1.4;
}

.quote-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .65rem;
}

.quantity-control {
  display: grid;
  grid-template-columns: 29px 25px 29px;
  align-items: center;
  text-align: center;
}

.quantity-control button {
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--mlc-sky);
  color: var(--mlc-blue-dark);
  cursor: pointer;
  font-size: 1rem;
}

.quantity-control span {
  color: var(--mlc-navy);
  font-size: .74rem;
  font-weight: 850;
}

.quote-empty {
  min-height: 130px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 20px;
  border: 1px dashed #bfd0e2;
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}

.quote-empty svg {
  width: 27px;
  height: 27px;
  margin-bottom: 8px;
  fill: none;
  stroke: var(--mlc-lilac);
  stroke-width: 1.7;
}

.quote-empty strong {
  color: var(--mlc-navy);
  font-size: .77rem;
}

.quote-empty p {
  margin: 4px 0 0;
  font-size: .67rem;
}

.quote-fields {
  display: grid;
  gap: 13px;
}

.quote-fields label > span {
  color: #91a1b5;
  font-size: .59rem;
  font-weight: 650;
}

.quote-drawer-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 17px 25px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.clear-quote {
  border: 0;
  background: transparent;
  color: #8a5b70;
  cursor: pointer;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .65rem;
  font-weight: 800;
}

.send-quote {
  min-height: 47px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #128c4e, #25b867);
  color: #fff;
  box-shadow: 0 12px 25px rgba(18,140,78,.2);
  cursor: pointer;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .72rem;
  font-weight: 850;
}

.send-quote:disabled {
  background: #b8c4cf;
  box-shadow: none;
  cursor: not-allowed;
}

@keyframes quote-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes quote-slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.floating-whatsapp {
  height: 57px;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: .76rem;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(5, 62, 37, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 38px rgba(5,62,37,.34);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes aurora-shift {
  0% { background-position: 0% 40%; }
  100% { background-position: 100% 60%; }
}

@keyframes accent-breathe {
  0%, 100% { transform: scaleX(1); opacity: .82; }
  50% { transform: scaleX(1.28); opacity: 1; }
}

@keyframes text-gradient {
  to { background-position: 200% center; }
}

@keyframes detail-drift {
  to { background-position: 46px 23px; }
}

@keyframes backplate-drift {
  0% { transform: rotate(2.4deg) translate3d(0,0,0); }
  100% { transform: rotate(1.3deg) translate3d(-7px,8px,0); }
}

@keyframes topbar-sheen {
  to { transform: translateX(100%); }
}

@keyframes glow-float {
  to { transform: translate3d(20px, 18px, 0) scale(1.08); }
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(39,200,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(39,200,115,0); }
}

@keyframes marquee-move {
  to { transform: translateX(-50%); }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

@keyframes catalog-float {
  0%, 100% { transform: translate(-44%, -50%) rotate(5deg); }
  50% { transform: translate(-44%, -53%) rotate(4deg); }
}

/* Cotizador avanzado */
.advanced-quote-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 35%, rgba(193,120,237,.11), transparent 24%),
    radial-gradient(circle at 92% 70%, rgba(18,107,211,.12), transparent 26%),
    #edf4ff;
}

.quote-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.quote-site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(219,230,242,.85);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
}

.quote-site-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.quote-brand img {
  width: 138px;
  height: 62px;
  object-fit: contain;
}

.quote-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.quote-header-actions > span {
  color: #73859b;
  font-size: .68rem;
  font-weight: 800;
}

.quote-back-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--mlc-blue-dark);
  font-size: .71rem;
  font-weight: 850;
}

.quote-back-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quote-page-hero {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(6,61,134,.98), rgba(7,87,185,.95) 56%, rgba(99,70,154,.95)),
    #0757b9;
  color: #fff;
}

.quote-page-hero::after {
  content: "MLC";
  position: absolute;
  right: -25px;
  bottom: -75px;
  color: rgba(255,255,255,.045);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 270px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
}

.quote-hero-orb {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}

.quote-hero-orb-one {
  width: 360px;
  height: 360px;
  left: -190px;
  top: -210px;
  box-shadow: 0 0 0 65px rgba(255,255,255,.035), 0 0 0 130px rgba(255,255,255,.018);
}

.quote-hero-orb-two {
  width: 290px;
  height: 290px;
  right: 20%;
  bottom: -230px;
  box-shadow: 0 0 0 48px rgba(193,120,237,.075);
}

.quote-page-hero-grid {
  min-height: 390px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 90px;
  padding-top: 54px;
  padding-bottom: 72px;
}

.quote-page-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #d9eaff;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-page-eyebrow span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--mlc-lilac);
}

.quote-page-hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.quote-page-hero h1 em {
  display: block;
  margin-top: 8px;
  color: #e0b8fa;
  font-weight: 600;
}

.quote-page-hero-grid > div:first-child > p:last-child {
  max-width: 680px;
  margin: 23px 0 0;
  color: #c9dbf2;
  font-size: .9rem;
  line-height: 1.75;
}

.quote-hero-points {
  display: grid;
  gap: 10px;
}

.quote-hero-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}

.quote-hero-points strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255,255,255,.12);
  color: #e2bdf7;
  font-size: .68rem;
}

.quote-hero-points span {
  color: #edf5ff;
  font-size: .76rem;
  font-weight: 800;
}

.quote-workspace-section {
  position: relative;
  z-index: 3;
  padding: 0 0 100px;
}

.quote-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -28px 0 28px;
  padding: 13px;
  border: 1px solid rgba(219,230,242,.9);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 45px rgba(22,51,88,.12);
  list-style: none;
}

.quote-stepper li {
  min-height: 52px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  color: #8a99ab;
}

.quote-stepper li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 24px;
  position: absolute;
  right: 0;
  background: var(--line);
}

.quote-stepper li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef3f8;
  font-size: .68rem;
  font-weight: 900;
}

.quote-stepper li > span svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.quote-stepper li strong {
  font-size: .72rem;
}

.quote-stepper li.active {
  background: linear-gradient(135deg, var(--mlc-blue), #5e54b3);
  color: #fff;
  box-shadow: 0 11px 22px rgba(7,87,185,.18);
}

.quote-stepper li.active > span {
  background: rgba(255,255,255,.17);
}

.quote-stepper li.complete {
  color: var(--mlc-blue-dark);
}

.quote-stepper li.complete > span {
  background: #def3e7;
  color: #13804b;
}

.advanced-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 24px;
}

.quote-form-card,
.quote-live-summary {
  border: 1px solid rgba(219,230,242,.95);
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 50px rgba(22,51,88,.085);
}

.quote-form-card {
  overflow: hidden;
  border-radius: 27px;
}

.quote-form-topline {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #f8fbff, #fbf7ff);
  color: #7c8ba0;
  font-size: .62rem;
}

.quote-form-topline strong {
  margin-left: 5px;
  color: var(--mlc-blue-dark);
  font-size: .66rem;
}

.draft-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.draft-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #30b86d;
  box-shadow: 0 0 0 4px rgba(48,184,109,.1);
}

.quote-form-step {
  padding: 37px 38px 31px;
}

.quote-step-heading {
  margin-bottom: 28px;
}

.quote-step-heading > span,
.quote-step-heading > div > span {
  color: var(--mlc-violet);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.quote-step-heading h2 {
  margin: 6px 0 7px;
  color: var(--mlc-navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -.035em;
}

.quote-step-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
}

.quote-step-heading.with-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.quote-step-heading.with-action > button,
.add-another-product {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(7,87,185,.18);
  border-radius: 12px;
  background: var(--mlc-sky);
  color: var(--mlc-blue-dark);
  cursor: pointer;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .67rem;
  font-weight: 850;
}

.quote-step-heading.with-action svg,
.add-another-product svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.advanced-fields {
  display: grid;
  gap: 17px;
}

.advanced-fields.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.advanced-fields label {
  display: grid;
  gap: 8px;
  color: #263d58;
  font-size: .69rem;
  font-weight: 850;
}

.advanced-fields label > b {
  color: #8c9aad;
  font-size: .56rem;
  font-weight: 700;
}

.advanced-fields input,
.advanced-fields select,
.advanced-fields textarea {
  width: 100%;
  border: 1px solid #cedbea;
  border-radius: 12px;
  outline: 0;
  background: #fbfdff;
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .77rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.advanced-fields input,
.advanced-fields select {
  height: 47px;
  padding: 0 13px;
}

.advanced-fields textarea {
  resize: vertical;
  padding: 12px 13px;
  line-height: 1.55;
}

.advanced-fields input:focus,
.advanced-fields select:focus,
.advanced-fields textarea:focus {
  border-color: var(--mlc-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(7,87,185,.09);
}

.advanced-fields .full-field {
  grid-column: 1 / -1;
}

.advanced-product-list {
  display: grid;
  gap: 16px;
}

.advanced-product-list > article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f9fbfe;
}

.product-line-header {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #eef6ff, #f6effc);
}

.product-line-header > span {
  color: var(--mlc-blue-dark);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-line-header button {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: rgba(255,255,255,.7);
  color: #a34f65;
  cursor: pointer;
}

.product-line-header svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.advanced-product-list .advanced-fields {
  padding: 19px;
}

.add-another-product {
  width: 100%;
  margin-top: 16px;
  border-style: dashed;
  background: transparent;
}

.reference-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px !important;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
  cursor: pointer;
}

.reference-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--mlc-blue);
}

.reference-check span {
  display: grid;
  gap: 4px;
}

.reference-check strong {
  color: var(--mlc-navy);
  font-size: .73rem;
}

.reference-check small {
  color: var(--muted);
  font-size: .63rem;
  font-weight: 600;
}

.review-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 22px;
}

.review-contact article {
  min-height: 120px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(145deg, #fbfdff, #f6f0fb);
}

.review-contact span {
  display: block;
  margin-bottom: 9px;
  color: var(--mlc-violet);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-contact strong {
  color: var(--mlc-navy);
  font-size: .76rem;
  line-height: 1.4;
}

.review-contact p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .63rem;
  line-height: 1.45;
}

.review-products {
  display: grid;
  gap: 8px;
}

.review-products article {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.review-products article > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--mlc-sky);
  color: var(--mlc-blue);
  font-size: .61rem;
  font-weight: 900;
}

.review-products h3 {
  margin: 0;
  color: var(--mlc-navy);
  font-size: .76rem;
}

.review-products p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .62rem;
}

.review-products article > strong {
  color: var(--mlc-blue-dark);
  font-size: .67rem;
}

.quote-send-options {
  display: block;
  margin-top: 24px;
}

.quote-send-options button {
  min-height: 49px;
  border-radius: 13px;
  cursor: pointer;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .7rem;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.quote-send-options button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.quote-send-options button:disabled {
  cursor: wait;
  opacity: .62;
}

.quote-download-continue {
  width: 100%;
  border: 0;
  background: linear-gradient(120deg, var(--mlc-blue-dark), var(--mlc-blue) 58%, var(--mlc-violet));
  color: #fff;
  box-shadow: 0 14px 28px rgba(7,87,185,.23);
}

.quote-download-continue span {
  margin-left: 8px;
}

/* Quote PDF handoff */
.quote-share-page {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 48px 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(193,120,237,.22), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(18,107,211,.22), transparent 32%),
    linear-gradient(145deg, #eef6ff 0%, #f9f5fe 48%, #e7f1ff 100%);
}

.quote-share-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .58;
  pointer-events: none;
  animation: quote-share-float 9s ease-in-out infinite;
}

.quote-share-orb-one {
  width: 240px;
  height: 240px;
  top: -90px;
  right: 7%;
  background: linear-gradient(145deg, rgba(193,120,237,.52), rgba(127,72,178,.05));
}

.quote-share-orb-two {
  width: 180px;
  height: 180px;
  bottom: -70px;
  left: 9%;
  animation-delay: -4s;
  background: linear-gradient(145deg, rgba(18,107,211,.44), rgba(7,87,185,.04));
}

.quote-share-card {
  width: min(760px, 100%);
  position: relative;
  z-index: 1;
  padding: 26px 42px 28px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 80px rgba(12,31,58,.16), inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
}

.quote-share-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.quote-share-brand img {
  width: 82px;
  height: auto;
}

.quote-share-header > span {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
}

.quote-share-success {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 28px auto 13px;
  border-radius: 18px;
  background: linear-gradient(145deg, #e0faeb, #c8f2d9);
  box-shadow: 0 12px 28px rgba(18,140,78,.17);
}

.quote-share-success svg {
  width: 29px;
  fill: none;
  stroke: #128c4e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.quote-share-eyebrow {
  margin: 0 0 7px;
  color: var(--mlc-violet);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.quote-share-card h1 {
  margin: 0;
  color: var(--mlc-navy);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  line-height: 1.03;
  text-align: center;
}

.quote-share-intro,
.quote-share-empty > p:not(.quote-share-eyebrow) {
  max-width: 580px;
  margin: 13px auto 21px;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.65;
  text-align: center;
}

.quote-share-file {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(7,87,185,.14);
  border-radius: 15px;
  background: linear-gradient(110deg, var(--mlc-sky), #faf5fe);
}

.quote-share-file > svg,
.quote-share-empty-icon svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  fill: none;
  stroke: var(--mlc-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.quote-share-file div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.quote-share-file span,
.quote-share-channels span {
  color: var(--muted);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.quote-share-file strong {
  overflow: hidden;
  color: var(--mlc-navy);
  font-size: .69rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote-share-file small {
  color: var(--mlc-blue-dark);
  font-size: .61rem;
  font-weight: 850;
}

.quote-share-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.quote-share-steps li {
  display: flex;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.quote-share-steps li > span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--mlc-lilac-soft);
  color: var(--mlc-violet);
  font-size: .58rem;
  font-weight: 900;
}

.quote-share-steps strong {
  color: var(--mlc-navy);
  font-size: .63rem;
}

.quote-share-steps p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .55rem;
  line-height: 1.45;
}

.quote-share-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.quote-share-channels > a {
  min-height: 72px;
  display: grid;
  grid-template-columns: 39px 1fr 20px;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 12px 26px rgba(12,31,58,.13);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.quote-share-channels > a:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 32px rgba(12,31,58,.19);
}

.quote-share-whatsapp { background: linear-gradient(135deg, #0d8146, #25b867); }
.quote-share-email { background: linear-gradient(135deg, var(--mlc-blue-dark), var(--mlc-blue), var(--mlc-violet)); }

.quote-share-channels > a > svg:first-child {
  width: 39px;
  height: 39px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  fill: currentColor;
}

.quote-share-email > svg:first-child {
  fill: none !important;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.quote-share-channels > a > svg:last-child {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quote-share-channels div {
  display: grid;
  gap: 2px;
}

.quote-share-channels span { color: rgba(255,255,255,.72); }
.quote-share-channels strong { font-size: .82rem; }

.quote-share-notice {
  margin-top: 15px;
  padding: 12px 14px;
  border-left: 3px solid var(--mlc-violet);
  border-radius: 5px 11px 11px 5px;
  background: #f8f1fd;
  color: #536279;
  font-size: .6rem;
  line-height: 1.55;
}

.quote-share-notice strong { color: var(--mlc-navy); }

.quote-share-tracking {
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  gap: 5px 12px;
  margin-top: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(7,87,185,.15);
  border-radius: 13px;
  background: #eef6ff;
  color: var(--mlc-navy);
}

.quote-share-tracking span { color: var(--mlc-violet); font-size: .54rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.quote-share-tracking strong { grid-column: 1; font-size: .68rem; }
.quote-share-tracking svg { grid-column: 2; grid-row: 1 / span 2; width: 18px; fill: none; stroke: var(--mlc-blue); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.quote-share-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 17px;
  color: var(--muted);
  font-size: .61rem;
  font-weight: 750;
}

.quote-share-footer > a,
.quote-share-footer span a { color: var(--mlc-blue-dark); }

.quote-share-empty {
  max-width: 560px;
  text-align: center;
}

.quote-share-empty .quote-share-brand {
  display: inline-block;
  margin-bottom: 18px;
}

.quote-share-empty-icon {
  width: 60px;
  margin: 0 auto 17px;
}

.quote-share-back-primary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--mlc-blue-dark), var(--mlc-violet));
  color: #fff;
  font-size: .71rem;
  font-weight: 850;
}

.quote-share-back-primary svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes quote-share-float {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,18px,0); }
}

/* Public quote tracking */
.tracking-page {
  min-height: 100vh;
  background: #eef5fd;
}

.tracking-header,
.tracking-footer,
.tracking-hero > div,
.tracking-workspace {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.tracking-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tracking-header img { width: 88px; height: auto; }
.tracking-header > div { display: flex; align-items: center; gap: 16px; }
.tracking-header span { color: var(--muted); font-size: .66rem; font-weight: 800; }
.tracking-header > div a { padding: 10px 15px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--mlc-blue-dark); font-size: .64rem; font-weight: 850; }

.tracking-hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 92px;
  background:
    radial-gradient(circle at 82% 18%, rgba(193,120,237,.34), transparent 26%),
    linear-gradient(135deg, var(--mlc-navy), #073e7b 60%, #5e3685);
  color: #fff;
}

.tracking-hero::after { content: "MLC"; position: absolute; right: 4%; bottom: -55px; color: rgba(255,255,255,.035); font: 900 13rem/1 var(--font-display), Arial, sans-serif; }
.tracking-hero p { margin: 0 0 14px; color: #d7aaf3; font-size: .65rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.tracking-hero h1 { max-width: 760px; margin: 0; font-size: clamp(2.7rem, 6vw, 5.2rem); letter-spacing: -.055em; line-height: .95; }
.tracking-hero h1 em { display: block; color: #d8a4f7; }
.tracking-hero span { display: block; max-width: 590px; margin-top: 20px; color: #d5e1f1; font-size: .84rem; line-height: 1.7; }

.tracking-workspace {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 16px;
  margin-top: -52px;
  padding-bottom: 80px;
}

.tracking-form,
.tracking-result {
  min-height: 520px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 25px 65px rgba(12,31,58,.13);
}

.tracking-form-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 26px; }
.tracking-form-heading > svg { width: 42px; height: 42px; padding: 10px; border-radius: 13px; background: var(--mlc-sky); fill: none; stroke: var(--mlc-blue); stroke-width: 1.8; }
.tracking-form-heading span { color: var(--mlc-violet); font-size: .56rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.tracking-form-heading h2 { margin: 3px 0 0; color: var(--mlc-navy); font-size: 1.1rem; }
.tracking-form label { display: grid; gap: 7px; margin-bottom: 17px; color: var(--mlc-navy); font-size: .65rem; font-weight: 850; }
.tracking-form input { min-height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; outline: 0; color: var(--mlc-navy); font: 750 .72rem var(--font-body), Arial, sans-serif; }
.tracking-form input:focus { border-color: var(--mlc-blue); box-shadow: 0 0 0 3px rgba(7,87,185,.09); }
.tracking-form button { width: 100%; min-height: 52px; border: 0; border-radius: 13px; background: linear-gradient(120deg, var(--mlc-blue-dark), var(--mlc-blue), var(--mlc-violet)); color: #fff; cursor: pointer; font: 850 .7rem var(--font-body), Arial, sans-serif; box-shadow: 0 13px 26px rgba(7,87,185,.2); }
.tracking-form button span { margin-left: 8px; }
.tracking-form button:disabled { opacity: .6; cursor: wait; }
.tracking-form > small { display: block; margin-top: 14px; color: var(--muted); font-size: .56rem; line-height: 1.55; text-align: center; }

.tracking-result { display: grid; place-items: center; }
.tracking-placeholder { max-width: 440px; text-align: center; }
.tracking-placeholder > span { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 20px; background: linear-gradient(145deg, var(--mlc-sky), var(--mlc-lilac-soft)); color: var(--mlc-violet); font-size: .76rem; font-weight: 900; }
.tracking-placeholder h2 { margin: 0; color: var(--mlc-navy); font-size: 1.45rem; }
.tracking-placeholder p { color: var(--muted); font-size: .69rem; line-height: 1.65; }
.tracking-error { max-width: 430px; padding: 24px; border: 1px solid #f0c5cf; border-radius: 16px; background: #fff5f7; text-align: center; }
.tracking-error strong { color: #963c54; font-size: .9rem; }
.tracking-error p { color: #785764; font-size: .66rem; line-height: 1.6; }
.tracking-error a { color: var(--mlc-blue); font-size: .65rem; font-weight: 850; }

.tracking-success { width: 100%; }
.tracking-success-top { display: flex; align-items: center; gap: 16px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.tracking-success-top > span { width: 50px; height: 50px; flex: 0 0 50px; display: grid; place-items: center; border-radius: 16px; background: #dbf7e8; }
.tracking-success-top svg { width: 25px; fill: none; stroke: #118c4e; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.tracking-success-top small { color: var(--mlc-violet); font-size: .55rem; font-weight: 900; text-transform: uppercase; }
.tracking-success-top h2 { margin: 3px 0; color: var(--mlc-navy); font-size: 1.25rem; }
.tracking-success-top p { margin: 0; color: var(--muted); font-size: .62rem; line-height: 1.5; }
.tracking-reference { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0; }
.tracking-reference div { display: grid; gap: 3px; padding: 12px 14px; border-radius: 12px; background: #f3f7fc; }
.tracking-reference span { color: var(--muted); font-size: .52rem; text-transform: uppercase; }
.tracking-reference strong { color: var(--mlc-navy); font-size: .7rem; }
.tracking-timeline { margin: 0; padding: 0; list-style: none; }
.tracking-timeline li { position: relative; display: grid; grid-template-columns: 32px 1fr; gap: 12px; min-height: 72px; }
.tracking-timeline li:not(:last-child)::after { content: ""; position: absolute; top: 32px; bottom: 0; left: 15px; width: 2px; background: var(--line); }
.tracking-timeline li > span { width: 32px; height: 32px; position: relative; z-index: 1; display: grid; place-items: center; border-radius: 10px; background: #e9eef5; color: #8b98aa; font-size: .6rem; font-weight: 900; }
.tracking-timeline li.complete > span { background: linear-gradient(145deg, var(--mlc-blue), var(--mlc-violet)); color: #fff; }
.tracking-timeline li.complete:not(:last-child)::after { background: linear-gradient(var(--mlc-blue), var(--mlc-violet)); }
.tracking-timeline svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.tracking-timeline strong { color: var(--mlc-navy); font-size: .68rem; }
.tracking-timeline p { margin: 3px 0 0; color: var(--muted); font-size: .56rem; line-height: 1.45; }
.tracking-updated { margin: 0; color: #8492a5; font-size: .54rem; text-align: right; }

.tracking-footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0 34px; border-top: 1px solid var(--line); color: var(--muted); font-size: .62rem; }
.tracking-footer div { display: flex; gap: 17px; }
.tracking-footer a { color: var(--mlc-blue-dark); font-weight: 800; }

/* Private MLC dashboard */
.admin-page { min-height: 100vh; padding-bottom: 70px; background: #eef3f9; }
.admin-header, .admin-hero, .admin-metrics, .admin-workspace { width: min(1240px, calc(100% - 42px)); margin: 0 auto; }
.admin-header { min-height: 76px; display: flex; align-items: center; justify-content: space-between; }
.admin-header img { width: 78px; height: auto; }
.admin-header > div { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .61rem; }
.admin-header > div span { padding: 7px 10px; border-radius: 999px; background: #e5f0ff; color: var(--mlc-blue); font-weight: 850; }
.admin-header > div a { color: var(--mlc-blue-dark); font-weight: 800; }
.admin-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; padding: 42px 45px; border-radius: 25px; background: linear-gradient(125deg, var(--mlc-navy), var(--mlc-blue-dark) 55%, var(--mlc-violet)); color: #fff; box-shadow: 0 22px 50px rgba(12,31,58,.17); }
.admin-hero p { margin: 0 0 7px; color: #d4a8f0; font-size: .59rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.admin-hero h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -.045em; }
.admin-hero span { display: block; margin-top: 9px; color: #d5e1f1; font-size: .7rem; }
.admin-hero > a { flex: 0 0 auto; padding: 11px 15px; border: 1px solid rgba(255,255,255,.3); border-radius: 11px; background: rgba(255,255,255,.1); font-size: .64rem; font-weight: 850; }
.admin-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-top: 16px; }
.admin-metrics article { padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 11px 28px rgba(12,31,58,.06); }
.admin-metrics span { color: var(--muted); font-size: .56rem; font-weight: 850; text-transform: uppercase; }
.admin-metrics strong { display: block; margin: 7px 0 3px; color: var(--mlc-navy); font-size: 1.8rem; }
.admin-metrics p { margin: 0; color: #8a97a9; font-size: .55rem; }
.admin-workspace { margin-top: 16px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 15px 35px rgba(12,31,58,.07); }
.admin-toolbar { display: grid; grid-template-columns: 1fr 230px; gap: 10px; margin-bottom: 16px; }
.admin-toolbar input, .admin-toolbar select, .admin-modal select, .admin-modal textarea { min-height: 43px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--mlc-navy); font: 700 .64rem var(--font-body), Arial, sans-serif; outline: 0; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 10px 12px; border-bottom: 1px solid var(--line); color: #8996a7; font-size: .53rem; letter-spacing: .08em; text-align: left; text-transform: uppercase; }
.admin-table td { padding: 13px 12px; border-bottom: 1px solid #edf1f6; color: var(--mlc-navy); font-size: .62rem; }
.admin-table td > strong, .admin-table td span { display: block; }
.admin-table td span { margin-top: 3px; color: var(--muted); font-size: .54rem; }
.admin-table td button { border: 0; background: transparent; color: var(--mlc-blue); cursor: pointer; font: 850 .6rem var(--font-body), Arial, sans-serif; }
.admin-status { width: fit-content; padding: 6px 8px; border-radius: 999px; background: #eaf3ff; color: var(--mlc-blue-dark) !important; font-weight: 850; }
.admin-status-reviewing { background: #fff3d9; color: #9a6813 !important; }
.admin-status-quoted { background: #eee4fa; color: var(--mlc-violet) !important; }
.admin-status-contacted, .admin-status-closed { background: #def6e9; color: #167446 !important; }
.admin-error { padding: 12px; border-radius: 10px; background: #fff1f4; color: #963c54; font-size: .64rem; }
.admin-loading, .admin-empty { padding: 35px; color: var(--muted); font-size: .65rem; text-align: center; }
.admin-modal-backdrop { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(5,20,40,.62); backdrop-filter: blur(8px); }
.admin-modal { width: min(720px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 25px; border-radius: 22px; background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.25); }
.admin-modal > header { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.admin-modal header span { color: var(--mlc-violet); font-size: .56rem; font-weight: 900; }
.admin-modal header h2 { margin: 3px 0; color: var(--mlc-navy); font-size: 1.35rem; }
.admin-modal header p { margin: 0; color: var(--muted); font-size: .62rem; }
.admin-modal header button { width: 32px; height: 32px; border: 0; border-radius: 9px; background: #eef2f7; color: var(--mlc-navy); cursor: pointer; font-size: 1.1rem; }
.admin-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 15px 0; }
.admin-contact-grid div { display: grid; gap: 4px; padding: 11px 13px; border-radius: 11px; background: #f4f7fb; }
.admin-contact-grid span { color: var(--muted); font-size: .51rem; text-transform: uppercase; }
.admin-contact-grid a, .admin-contact-grid strong { color: var(--mlc-navy); font-size: .64rem; }
.admin-product-list h3 { color: var(--mlc-navy); font-size: .72rem; }
.admin-product-list article { display: grid; grid-template-columns: 27px 1fr auto; align-items: center; gap: 10px; padding: 10px; border-top: 1px solid #edf1f6; }
.admin-product-list article > span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: var(--mlc-sky); color: var(--mlc-blue); font-size: .5rem; font-weight: 900; }
.admin-product-list article strong { color: var(--mlc-navy); font-size: .61rem; }
.admin-product-list article p { margin: 3px 0 0; color: var(--muted); font-size: .52rem; }
.admin-product-list article b { color: var(--mlc-blue-dark); font-size: .58rem; }
.admin-modal > label { display: grid; gap: 6px; margin-top: 13px; color: var(--mlc-navy); font-size: .58rem; font-weight: 850; }
.admin-modal textarea { padding-top: 10px; resize: vertical; }
.admin-modal > footer { display: flex; justify-content: flex-end; gap: 9px; margin-top: 18px; }
.admin-modal > footer a, .admin-modal > footer button { min-height: 43px; display: inline-flex; align-items: center; padding: 0 15px; border-radius: 11px; font: 850 .62rem var(--font-body), Arial, sans-serif; }
.admin-modal > footer a { border: 1px solid #b9e9cf; color: #118c4e; }
.admin-modal > footer button { border: 0; background: linear-gradient(135deg, var(--mlc-blue), var(--mlc-violet)); color: #fff; cursor: pointer; }
.admin-denied { min-height: 100vh; display: grid; place-content: center; padding: 30px; background: #eef4fc; color: var(--mlc-navy); text-align: center; }
.admin-denied p { color: var(--muted); }
.admin-denied a { color: var(--mlc-blue); font-weight: 850; }

@media (max-width: 800px) {
  .tracking-workspace { grid-template-columns: 1fr; }
  .tracking-form, .tracking-result { min-height: auto; }
  .admin-metrics { grid-template-columns: 1fr 1fr; }
  .admin-hero { align-items: flex-start; flex-direction: column; padding: 30px 25px; }
}

@media (max-width: 560px) {
  .tracking-header, .tracking-footer, .tracking-hero > div, .tracking-workspace { width: min(100% - 28px, 1120px); }
  .tracking-header span { display: none; }
  .tracking-hero { padding-top: 50px; }
  .tracking-form, .tracking-result { padding: 22px; border-radius: 19px; }
  .tracking-reference, .admin-contact-grid { grid-template-columns: 1fr; }
  .tracking-footer, .tracking-footer div { align-items: flex-start; flex-direction: column; }
  .admin-header, .admin-hero, .admin-metrics, .admin-workspace { width: min(100% - 24px, 1240px); }
  .admin-header > div strong { display: none; }
  .admin-metrics { grid-template-columns: 1fr 1fr; }
  .admin-toolbar { grid-template-columns: 1fr; }
  .admin-modal { padding: 19px; }
  .admin-modal > footer { flex-direction: column; }
  .admin-modal > footer a, .admin-modal > footer button { justify-content: center; }
}

.pdf-delivery-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 17px 18px;
  border: 1px solid rgba(7,87,185,.16);
  border-radius: 16px;
  background: linear-gradient(135deg, #eef6ff, #f8f0fd);
}

.pdf-delivery-card > svg {
  width: 52px;
  height: 52px;
  padding: 13px;
  border-radius: 15px;
  background: #fff;
  fill: none;
  stroke: var(--mlc-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  box-shadow: 0 9px 22px rgba(7,87,185,.1);
}

.pdf-delivery-card > div {
  display: grid;
  gap: 4px;
}

.pdf-delivery-card span {
  color: var(--mlc-violet);
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pdf-delivery-card strong {
  color: var(--mlc-navy);
  font-size: .76rem;
}

.pdf-delivery-card p {
  margin: 0;
  color: var(--muted);
  font-size: .63rem;
  line-height: 1.5;
}

.quote-pdf-status {
  min-height: 18px;
  margin: 13px 0 0;
  color: var(--mlc-blue-dark);
  font-size: .62rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}

.quote-privacy-note {
  margin: 14px 0 0;
  color: #8a98a9;
  font-size: .61rem;
  line-height: 1.5;
  text-align: center;
}

/* Trust and tracking */
.trust-process {
  background:
    radial-gradient(circle at 90% 14%, rgba(193,120,237,.13), transparent 26%),
    #f5f9ff;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.trust-proof-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(12,31,58,.07);
}

.trust-proof-grid article::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  top: -37px;
  right: -25px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(18,107,211,.15), rgba(193,120,237,.2));
}

.trust-proof-grid article > span {
  color: var(--mlc-violet);
  font-size: .62rem;
  font-weight: 900;
}

.trust-proof-grid h3 { margin: 18px 0 8px; color: var(--mlc-navy); font-size: .9rem; }
.trust-proof-grid p { margin: 0; color: var(--muted); font-size: .68rem; line-height: 1.65; }

.tracking-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
  padding: 28px 30px;
  border-radius: 23px;
  background: linear-gradient(120deg, var(--mlc-navy), var(--mlc-blue-dark) 60%, var(--mlc-violet));
  color: #fff;
  box-shadow: 0 22px 46px rgba(7,61,134,.2);
}

.tracking-callout > div > span { color: #cfa5ec; font-size: .59rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.tracking-callout h3 { margin: 6px 0; font-size: 1.25rem; }
.tracking-callout p { margin: 0; color: #d4e0f1; font-size: .7rem; }
.tracking-callout .button-primary { flex: 0 0 auto; background: #fff; color: var(--mlc-blue-dark); box-shadow: none; }

/* Related-product suggestions inside quote builder */
.related-products-panel {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(127,72,178,.18);
  border-radius: 17px;
  background: linear-gradient(135deg, #f6f1fc, #eef6ff);
}

.related-products-panel > div:first-child > span { color: var(--mlc-violet); font-size: .56rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.related-products-panel h3 { margin: 5px 0 3px; color: var(--mlc-navy); font-size: .83rem; }
.related-products-panel p { margin: 0; color: var(--muted); font-size: .61rem; }

.related-products-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.related-products-list button {
  min-height: 72px;
  position: relative;
  display: grid;
  gap: 4px;
  padding: 12px 38px 12px 13px;
  border: 1px solid rgba(7,87,185,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  cursor: pointer;
  text-align: left;
}

.related-products-list button span { color: var(--mlc-violet); font-size: .5rem; font-weight: 900; text-transform: uppercase; }
.related-products-list button strong { color: var(--mlc-navy); font-size: .62rem; line-height: 1.4; }
.related-products-list button i { width: 24px; height: 24px; position: absolute; top: 50%; right: 10px; display: grid; place-items: center; border-radius: 8px; background: var(--mlc-blue); color: #fff; font-style: normal; transform: translateY(-50%); }

@media (max-width: 900px) {
  .trust-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .trust-proof-grid { grid-template-columns: 1fr; }
  .tracking-callout { align-items: stretch; flex-direction: column; padding: 24px 22px; }
  .tracking-callout .button-primary { justify-content: center; }
  .related-products-list { grid-template-columns: 1fr; }
}

.quote-error {
  margin: 0 38px 18px;
  padding: 13px 15px;
  border: 1px solid #f0c5cf;
  border-radius: 12px;
  background: #fff1f4;
  color: #943e55;
  font-size: .7rem;
  font-weight: 750;
}

.quote-form-navigation {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 38px;
  border-top: 1px solid var(--line);
  background: #fbfdff;
}

.quote-form-navigation > div {
  display: flex;
  gap: 9px;
}

.quote-form-navigation button {
  min-height: 43px;
  padding: 0 17px;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: .68rem;
  font-weight: 850;
}

.quote-reset {
  border: 0;
  background: transparent;
  color: #8c6373;
}

.quote-prev {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--mlc-blue-dark);
}

.quote-next {
  border: 0;
  background: linear-gradient(135deg, var(--mlc-blue), #6253b3);
  color: #fff;
  box-shadow: 0 11px 22px rgba(7,87,185,.17);
}

.quote-next span {
  margin-left: 7px;
}

.quote-live-summary {
  position: sticky;
  top: 24px;
  overflow: hidden;
  border-radius: 23px;
}

.summary-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, var(--mlc-navy), var(--mlc-blue-dark));
  color: #fff;
}

.summary-top > svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  fill: none;
  stroke: #e1bdfa;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.summary-top > div {
  display: grid;
  gap: 4px;
}

.summary-top span {
  color: #aec3dc;
  font-size: .56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-top strong {
  font-size: .72rem;
}

.summary-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 20px;
  border-bottom: 1px solid var(--line);
}

.summary-metric span {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 750;
}

.summary-metric strong {
  color: var(--mlc-blue);
  font-size: 1.45rem;
}

.summary-products {
  max-height: 260px;
  display: grid;
  gap: 9px;
  overflow-y: auto;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.summary-products > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  color: var(--mlc-navy);
  font-size: .63rem;
  line-height: 1.35;
}

.summary-products strong {
  color: var(--mlc-blue-dark);
  font-size: .59rem;
}

.summary-products > p {
  margin: 0;
  color: var(--muted);
  font-size: .64rem;
  line-height: 1.55;
}

.summary-contact {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.summary-contact > span {
  color: var(--mlc-violet);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.summary-contact strong {
  display: block;
  margin-top: 6px;
  color: var(--mlc-navy);
  font-size: .72rem;
}

.summary-contact p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .62rem;
}

.summary-no-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 17px 20px 10px;
  padding: 11px 12px;
  border-radius: 11px;
  background: #eaf8f0;
  color: #277452;
  font-size: .61rem;
  font-weight: 800;
}

.summary-no-price i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31b66e;
}

.quote-live-summary > a {
  display: block;
  padding: 10px 20px 19px;
  color: var(--mlc-blue);
  font-size: .62rem;
  font-weight: 850;
  text-align: center;
}

.quote-page-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #f8fbff;
}

.quote-page-footer .quote-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--muted);
  font-size: .65rem;
}

.quote-page-footer div {
  display: flex;
  gap: 18px;
}

.quote-page-footer a:hover {
  color: var(--mlc-blue);
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-media {
    width: min(660px, 100%);
    margin: 0 auto;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-panel {
    padding: 60px 52px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, .7fr);
    gap: 30px;
  }

  .quote-page-hero-grid {
    gap: 50px;
  }

  .advanced-quote-grid {
    grid-template-columns: minmax(0, 1fr) 290px;
  }
}

@media (max-width: 800px) {
  .shell {
    width: min(100% - 30px, 680px);
  }

  .topbar-inner > span,
  .topbar-inner div span,
  .topbar-inner div a:last-child {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.7rem);
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-video-frame {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero-float-top {
    left: 0;
  }

  .hero-float-bottom {
    right: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading,
  .featured-heading,
  .about-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-heading {
    position: static;
  }

  .video-bento {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 280px auto;
  }

  .video-card-large {
    grid-row: auto;
  }

  .experience-note {
    min-height: 240px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 48px 32px 54px;
  }

  .catalog-mockup {
    min-height: 405px;
  }

  .catalog-mockup img {
    width: 245px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .quote-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 78px;
  }

  .quote-hero-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-hero-points article {
    grid-template-columns: 1fr;
    align-content: center;
    text-align: center;
  }

  .quote-hero-points strong {
    margin: 0 auto;
  }

  .advanced-quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-live-summary {
    position: static;
  }
}

@media (max-width: 540px) {
  .header-inner {
    min-height: 69px;
  }

  .brand img {
    width: 118px;
    height: 53px;
  }

  .hero {
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14.4vw, 4rem);
  }

  .hero-lead {
    font-size: .94rem;
  }

  .hero-actions,
  .catalog-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    gap: 12px;
  }

  .hero-media {
    min-height: 400px;
  }

  .hero-video-frame {
    width: 94%;
    border-radius: 28px 28px 28px 70px;
  }

  .hero-float-top {
    top: 24px;
    left: -2px;
  }

  .hero-float-bottom {
    right: -2px;
    bottom: 13px;
  }

  .video-caption {
    inset: auto 19px 19px;
  }

  .video-topline {
    inset: 17px 18px auto;
  }

  .section-heading h2,
  .catalog-copy h2,
  .about-copy h2,
  .contact h2,
  .experience-intro h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .category-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 172px;
  }

  .video-bento {
    grid-template-rows: 340px 250px auto;
  }

  .video-card-copy {
    inset: auto 21px 20px;
  }

  .video-card-copy p {
    display: none;
  }

  .product-image {
    height: 280px;
  }

  .product-info h3 {
    min-height: auto;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .add-quote-button {
    min-height: 44px;
  }

  .product-actions > a {
    justify-content: center;
    min-height: 37px;
  }

  .quote-assist {
    align-items: stretch;
    flex-direction: column;
    padding: 27px 24px;
  }

  .quote-assist .open-quote-button {
    width: 100%;
  }

  .faq-list summary {
    grid-template-columns: 36px 1fr 24px;
    gap: 10px;
    padding: 17px;
    font-size: .8rem;
  }

  .faq-list summary > span {
    width: 34px;
    height: 34px;
  }

  .faq-list details > p {
    margin-left: 63px;
    margin-right: 17px;
  }

  .catalog-panel {
    border-radius: 28px;
  }

  .catalog-mockup {
    min-height: 355px;
  }

  .catalog-badge {
    right: 0;
  }

  .about-grid {
    gap: 44px;
  }

  .value-grid article {
    padding: 20px;
  }

  .contact {
    padding: 78px 0;
  }

  .contact-card {
    padding: 6px 20px;
  }

  .contact-card a,
  .contact-card p {
    font-size: .8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 15px;
    bottom: 15px;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-quote {
    width: 54px;
    min-height: 54px;
    left: 15px;
    bottom: 15px;
    padding: 0;
  }

  .floating-quote > span {
    display: none;
  }

  .floating-quote strong {
    position: absolute;
    top: -5px;
    right: -5px;
  }

  .quote-drawer-header,
  .quote-drawer-body,
  .quote-drawer-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quote-drawer-footer {
    justify-content: space-between;
  }

  .quote-shell {
    width: min(100% - 28px, 680px);
  }

  .quote-site-header-inner {
    min-height: 70px;
  }

  .quote-brand img {
    width: 116px;
    height: 53px;
  }

  .quote-header-actions > span {
    display: none;
  }

  .quote-back-link {
    min-height: 39px;
    padding: 0 11px;
    font-size: .64rem;
  }

  .quote-page-hero-grid {
    min-height: 0;
    padding-top: 46px;
    padding-bottom: 72px;
  }

  .quote-page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .quote-page-hero-grid > div:first-child > p:last-child {
    font-size: .8rem;
  }

  .quote-hero-points {
    grid-template-columns: 1fr;
  }

  .quote-hero-points article {
    grid-template-columns: 42px 1fr;
    text-align: left;
  }

  .quote-hero-points strong {
    margin: 0;
  }

  .quote-stepper {
    margin-top: -25px;
    padding: 9px;
  }

  .quote-stepper li {
    min-height: 48px;
  }

  .quote-stepper li strong {
    display: none;
  }

  .quote-stepper li:not(:last-child)::after {
    height: 20px;
  }

  .quote-form-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 13px 20px;
  }

  .quote-form-step {
    padding: 28px 20px 24px;
  }

  .quote-step-heading.with-action {
    align-items: stretch;
    flex-direction: column;
  }

  .advanced-fields.two-columns,
  .review-contact {
    grid-template-columns: 1fr;
  }

  .quote-share-card {
    padding: 22px 20px 24px;
    border-radius: 22px;
  }

  .quote-share-header {
    align-items: flex-start;
  }

  .quote-share-header > span {
    max-width: 170px;
    text-align: right;
  }

  .quote-share-steps,
  .quote-share-channels {
    grid-template-columns: 1fr;
  }

  .quote-share-file {
    grid-template-columns: 42px 1fr;
  }

  .quote-share-file small {
    grid-column: 2;
  }

  .quote-share-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-products article {
    grid-template-columns: 31px 1fr;
  }

  .review-products article > strong {
    grid-column: 2;
  }

  .quote-error {
    margin-left: 20px;
    margin-right: 20px;
  }

  .quote-form-navigation {
    align-items: stretch;
    flex-direction: column-reverse;
    padding: 15px 20px 19px;
  }

  .quote-form-navigation > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .quote-form-navigation > div:has(.quote-next:only-child) {
    grid-template-columns: 1fr;
  }

  .quote-reset {
    min-height: 34px !important;
  }

  .quote-page-footer .quote-shell,
  .quote-page-footer div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media print {
  .quote-site-header,
  .quote-page-hero,
  .quote-stepper,
  .quote-live-summary,
  .quote-form-navigation,
  .quote-page-footer,
  .quote-send-options,
  .draft-status {
    display: none !important;
  }

  .advanced-quote-page,
  .quote-workspace-section {
    background: #fff;
    padding: 0;
  }

  .quote-form-card {
    border: 0;
    box-shadow: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* MLC 1.1 · catálogo por marcas */
.brands {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 15%, rgba(193,120,237,.17), transparent 24%),
    radial-gradient(circle at 95% 35%, rgba(18,107,211,.17), transparent 26%),
    linear-gradient(180deg, #f7faff 0%, #edf5ff 48%, #f7f1fc 100%);
}

.brands::before {
  content: "MLC";
  position: absolute;
  top: 110px;
  right: -35px;
  color: rgba(7,87,185,.035);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 17rem;
  font-weight: 900;
  letter-spacing: -.08em;
  pointer-events: none;
}

.brands .shell {
  position: relative;
  z-index: 1;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.brand-logo-card {
  min-height: 205px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 21px;
  overflow: hidden;
  border: 1px solid rgba(7,87,185,.12);
  border-radius: 23px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(23,58,98,.065);
  transition-property: opacity, transform, box-shadow, border-color;
}

.brand-logo-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(7,87,185,.28);
  box-shadow: 0 23px 48px rgba(23,58,98,.12);
}

.brand-logo-frame {
  width: 100%;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  padding: 13px 22px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f3f8ff);
}

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

.brand-logo-card > strong {
  padding-right: 43px;
  color: var(--mlc-navy);
  font-size: .9rem;
}

.brand-logo-card > small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .62rem;
}

.brand-logo-card .circle-arrow {
  right: 19px;
  bottom: 19px;
}

.finecare-showcase {
  min-height: 410px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 15%, rgba(193,120,237,.3), transparent 28%),
    linear-gradient(135deg, #071b36, #074a99 58%, #6b3e9d);
  box-shadow: 0 28px 62px rgba(12,31,58,.2);
}

.finecare-showcase-media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px;
  background: linear-gradient(150deg, rgba(255,255,255,.98), rgba(233,244,255,.9));
}

.finecare-showcase-media::after {
  content: "FINECARE";
  position: absolute;
  right: 20px;
  bottom: -8px;
  color: rgba(7,87,185,.07);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 4.4rem;
  font-weight: 900;
  letter-spacing: -.07em;
}

.finecare-showcase-media img {
  width: 100%;
  max-height: 340px;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.finecare-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
  color: #fff;
}

.brand-kicker {
  color: #dcb5f4;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.finecare-showcase-copy h3 {
  margin: 10px 0 15px;
  font-size: clamp(1.7rem, 2.5vw, 2.55rem);
  line-height: 1.05;
}

.finecare-showcase-copy p {
  margin: 0;
  color: #dbe9fb;
  font-size: .78rem;
  line-height: 1.65;
}

.finecare-metrics {
  display: flex;
  gap: 12px;
  margin: 21px 0;
}

.finecare-metrics span {
  min-width: 100px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  font-size: .65rem;
}

.finecare-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
}

.finecare-showcase .add-quote-button {
  width: fit-content;
  background: #fff;
  color: var(--mlc-blue-dark);
}

.brand-directory {
  display: grid;
  gap: 14px;
}

.brand-detail {
  scroll-margin-top: 120px;
  overflow: hidden;
  border: 1px solid rgba(7,87,185,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 12px 30px rgba(24,59,99,.05);
}

.brand-detail:target,
.brand-detail[open] {
  border-color: rgba(7,87,185,.33);
  box-shadow: 0 20px 42px rgba(24,59,99,.1);
}

.brand-detail summary {
  min-height: 96px;
  display: grid;
  grid-template-columns: 124px 1fr auto 32px;
  align-items: center;
  gap: 18px;
  padding: 14px 23px;
  cursor: pointer;
  list-style: none;
}

.brand-detail summary::-webkit-details-marker { display: none; }

.brand-summary-logo {
  height: 66px;
  display: grid;
  place-items: center;
  padding: 10px 17px;
  border-radius: 14px;
  background: #f3f7fc;
}

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

.brand-detail summary > span:nth-child(2) { display: grid; gap: 4px; }

.brand-detail summary strong { color: var(--mlc-navy); font-size: 1rem; }

.brand-detail summary small { color: var(--muted); font-size: .69rem; }

.brand-detail summary > b {
  min-width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mlc-sky);
  color: var(--mlc-blue);
  font-size: .72rem;
}

.brand-detail summary > i {
  color: var(--mlc-blue);
  font-size: 1.35rem;
  font-style: normal;
  transition: transform 220ms ease;
}

.brand-detail[open] summary > i { transform: rotate(45deg); }

.brand-product-grid,
.finecare-group > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.brand-product-grid,
.finecare-directory { padding: 8px 23px 23px; }

.brand-product {
  min-height: 153px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, #f7faff);
}

.brand-product > span {
  margin-bottom: 7px;
  color: var(--mlc-violet);
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-product > strong { color: var(--mlc-navy); font-size: .76rem; line-height: 1.35; }

.brand-product > small { margin: 7px 0 13px; color: var(--muted); font-size: .58rem; }

.brand-product .add-quote-button {
  min-height: 34px;
  margin-top: auto;
  padding: 0 11px;
  font-size: .59rem;
}

.finecare-directory { display: grid; gap: 18px; }

.brand-product-equipment {
  min-height: 118px;
  background: linear-gradient(135deg, #eaf5ff, #f4eafb);
}

.finecare-group > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.finecare-group {
  padding: 18px;
  border-radius: 18px;
  background: #f4f8fd;
}

.finecare-group h4 { margin: 0 0 12px; color: var(--mlc-blue-dark); font-size: .78rem; }

.brand-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 23px;
  border-top: 1px solid var(--line);
  color: var(--mlc-blue);
  font-size: .65rem;
  font-weight: 850;
}

.brand-detail-footer a:last-child { display: inline-flex; align-items: center; gap: 7px; }

.brand-detail-footer svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }

@media (max-width: 1080px) {
  .brand-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .finecare-showcase { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .finecare-showcase { grid-template-columns: 1fr; }
  .finecare-showcase-media { min-height: 330px; }
  .brand-product-grid, .finecare-group > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .brand-logo-grid, .brand-product-grid, .finecare-group > div { grid-template-columns: 1fr; }
  .brand-logo-card { min-height: 178px; }
  .finecare-showcase-copy { padding: 30px 24px 34px; }
  .finecare-showcase-media { min-height: 250px; padding: 24px; }
  .brand-detail summary { grid-template-columns: 78px 1fr auto; gap: 12px; padding: 13px; }
  .brand-detail summary > i { display: none; }
  .brand-summary-logo { height: 55px; padding: 8px; }
  .brand-detail summary small { font-size: .59rem; }
  .brand-product-grid, .finecare-directory { padding: 6px 13px 13px; }
  .brand-detail-footer { align-items: flex-start; flex-direction: column; padding: 15px; }
}
