/* Shared site refinements. Keep the established red / black / white identity. */
:root {
  --lc-red: #f20000;
  --lc-dark: #181818;
  --lc-text: #585858;
  --lc-white: #fff;
}
html { scroll-padding-top: 24px; }
body :is(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--lc-dark) !important;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--lc-white) !important;
}
[hidden] { display: none !important; }
.lc-skip-link {
  position: fixed;
  top: 12px;
  left: 24px;
  z-index: 100001;
  padding: 12px 20px;
  color: var(--lc-dark);
  background: var(--lc-white);
  transform: translateY(-160%);
}
.lc-skip-link:focus { transform: none; }
/* The header floats over the hero so the intro keeps its full height. */
.lc-site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(15px, 3vw, 48px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
}
.lc-site-logo { flex-shrink: 1; min-width: 0; max-width: 300px; }
.lc-site-logo img { display: block; width: 100%; height: auto; }
.lc-primary-nav { display: flex; align-items: center; gap: 8px 20px; flex-wrap: wrap; }
.lc-primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--lc-white);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
}
.lc-primary-nav a:hover, .lc-primary-nav a:focus { color: var(--lc-red); }
.lc-primary-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--lc-red); text-underline-offset: 7px; text-decoration-thickness: 3px; }
/* Menu trigger: the original template's white square with red bars (see menu.css #cd-menu-trigger). */
.lc-menu-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background-color: var(--lc-white);
  font-size: 0;
  color: transparent;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.lc-menu-toggle::before, .lc-menu-toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 3px;
  margin: -1.5px 0 0 -10px;
  transition: all .3s ease-in-out;
}
.lc-menu-toggle::before { background-color: var(--lc-red); box-shadow: 0 -7px 0 var(--lc-red), 0 7px 0 var(--lc-red); }
.lc-menu-toggle[aria-expanded="true"]::before { box-shadow: none; transform: rotate(45deg); }
.lc-menu-toggle[aria-expanded="true"]::after { background-color: var(--lc-red); transform: rotate(-45deg); }
/* Inner-page heroes sit under the floating header, so they need the clearance. */
.lc-hero { padding-top: 150px !important; }
@media (max-width: 991px) {
  /* As on the original: no header band, just the logo and the white trigger. */
  .lc-site-header { background: none; padding-top: 14px; }
  .lc-site-logo { max-width: 200px; }
  .lc-hero { padding-top: 150px !important; }
}
/* Dropdown menus. Without JavaScript the panels stay in the flow as plain link lists. */
.lc-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--lc-white);
  cursor: pointer;
  font: 16px 'Oswald', sans-serif;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .6);
}
.lc-nav-trigger i { font-size: 11px; transition: transform .2s; }
.lc-nav-trigger:hover, .lc-nav-trigger:focus, .lc-nav-trigger[aria-expanded="true"] { color: var(--lc-red); }
.lc-nav-trigger[aria-expanded="true"] i { transform: rotate(180deg); }
.lc-mega { padding: 4px 16px 16px 28px; text-align: left; }
.lc-mega-grid, .lc-mega-list { display: grid; gap: 10px; }
.lc-primary-nav .lc-mega a {
  display: block;
  min-height: 0;
  padding: 5px 0;
  color: rgba(255, 255, 255, .72);
  font: 14px/1.45 'Open Sans', sans-serif;
  text-transform: none;
  text-shadow: none;
}
/* Red text on the dark panel is below 4.5:1, so hover and current states use white with a red underline. */
.lc-primary-nav .lc-mega a:hover, .lc-primary-nav .lc-mega a:focus { color: var(--lc-white); text-decoration: underline; text-decoration-color: var(--lc-red); text-underline-offset: 4px; }
.lc-primary-nav .lc-mega a[aria-current="page"] { color: var(--lc-white); text-decoration: underline; text-decoration-color: var(--lc-red); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.lc-mega-heading { margin: 0 0 6px; }
.lc-primary-nav .lc-mega .lc-mega-heading a, .lc-primary-nav .lc-mega .lc-mega-cta {
  display: inline-block;
  padding: 0;
  color: var(--lc-white);
  font: 17px/1.3 'Oswald', sans-serif;
  text-transform: uppercase;
}
/* Intro column: panel title, one line of positioning and the panel's main link. */
.lc-mega-intro { margin-bottom: 10px; }
.lc-mega-title, .lc-mega-intro > p:not(.lc-mega-title) { display: none; }
.lc-mega-cta i { margin-left: 6px; color: var(--lc-red); transition: transform .2s; }
.lc-mega-cta:hover i, .lc-mega-cta:focus i { transform: translateX(4px); }
/* Industry items: icon badge, name and a short descriptor. */
.lc-primary-nav .lc-mega .lc-mega-item { display: flex; align-items: center; gap: 14px; color: var(--lc-white); }
.lc-mega-icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(242, 0, 0, .15);
  color: var(--lc-red);
  font-size: 15px;
  transition: background-color .2s, color .2s;
}
.lc-mega-item strong { display: block; font-weight: 600; }
.lc-mega-item small { display: none; color: rgba(255, 255, 255, .55); font-size: 12.5px; line-height: 1.4; }
.lc-primary-nav .lc-mega .lc-mega-item:hover, .lc-primary-nav .lc-mega .lc-mega-item:focus { color: var(--lc-white); text-decoration: none; }
.lc-mega-item:hover .lc-mega-icon, .lc-mega-item:focus .lc-mega-icon, .lc-mega-item[aria-current] .lc-mega-icon { background: var(--lc-red); color: var(--lc-white); }
/* Company cards: icon, title, description and a "more" link. The contact card is not a link itself. */
.lc-primary-nav .lc-mega .lc-mega-card { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .15); }
.lc-mega-card strong { color: var(--lc-white); font: 20px 'Oswald', sans-serif; text-transform: uppercase; }
.lc-mega-card .lc-mega-icon, .lc-mega-desc, .lc-mega-card > .lc-mega-more { display: none; }
.lc-primary-nav .lc-mega .lc-mega-card-static a { display: flex; align-items: center; padding: 3px 0; white-space: nowrap; }
.lc-mega-card-static a i { width: 16px; margin-right: 10px; color: var(--lc-red); text-align: center; }
.lc-primary-nav .lc-mega .lc-mega-card-static .lc-mega-more, .lc-mega-card > .lc-mega-more { color: var(--lc-white); font: 15px 'Oswald', sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.lc-mega-more i { margin-left: 6px; color: var(--lc-red); transition: transform .2s; }
.lc-mega-card:hover .lc-mega-more i, .lc-mega-card:focus .lc-mega-more i, a.lc-mega-more:hover i, a.lc-mega-more:focus i { transform: translateX(4px); }
.lc-primary-nav .lc-mega a.lc-mega-card:hover, .lc-primary-nav .lc-mega a.lc-mega-card:focus { border-color: var(--lc-red); color: rgba(255, 255, 255, .72); text-decoration: none; }
a.lc-mega-card:hover .lc-mega-icon, a.lc-mega-card:focus .lc-mega-icon, a.lc-mega-card[aria-current] .lc-mega-icon { background: var(--lc-red); color: var(--lc-white); }
.lc-primary-nav .lc-mega .lc-product { padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .15); }
.lc-primary-nav .lc-mega .lc-product:hover, .lc-primary-nav .lc-mega .lc-product:focus { border-color: var(--lc-red); text-decoration: none; }
.lc-product strong { display: block; margin-bottom: 4px; color: var(--lc-white); font: 20px 'Oswald', sans-serif; text-transform: uppercase; }
.lc-product em { display: block; margin-bottom: 8px; color: var(--lc-white); font-style: normal; font-size: 13px; font-weight: 600; }
@media (min-width: 901px) {
  /* Enhanced desktop: one full-width panel under the header, intro column on the left. */
  .lc-nav-enhanced .lc-mega {
    position: absolute;
    top: 100%;
    left: clamp(15px, 3vw, 48px);
    right: clamp(15px, 3vw, 48px);
    display: grid;
    grid-template-columns: minmax(200px, 1fr) 3fr;
    gap: 48px;
    padding: 40px 44px;
    background: var(--lc-dark);
    border-top: 3px solid var(--lc-red);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .45);
  }
  .lc-mega-intro { margin: 0; padding-right: 40px; border-right: 1px solid rgba(255, 255, 255, .12); }
  .lc-mega-title { display: block; margin: 0 0 12px; color: var(--lc-white); font: 700 28px/1.1 'Oswald', sans-serif; text-transform: uppercase; }
  .lc-mega-intro > p:not(.lc-mega-title) { display: block; margin: 0 0 24px; color: rgba(255, 255, 255, .72); font-size: 14px; line-height: 1.6; }
  .lc-mega-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 40px; }
  /* Two even columns of five, filled top to bottom so reading order matches the layout. */
  .lc-mega-list { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(5, auto); grid-auto-flow: column; gap: 4px 32px; }
  .lc-primary-nav .lc-mega .lc-mega-item { min-height: 56px; padding: 8px 12px; border-radius: 3px; transition: background-color .2s, box-shadow .2s; }
  .lc-primary-nav .lc-mega .lc-mega-item:hover, .lc-primary-nav .lc-mega .lc-mega-item:focus { background: rgba(255, 255, 255, .06); box-shadow: inset 3px 0 0 var(--lc-red); }
  .lc-mega-item small { display: block; }
  .lc-primary-nav .lc-mega .lc-product { height: 100%; padding: 22px; }
  .lc-primary-nav .lc-mega .lc-mega-card { height: 100%; gap: 10px; padding: 26px; transition: border-color .2s, background-color .2s; }
  .lc-primary-nav .lc-mega a.lc-mega-card:hover, .lc-primary-nav .lc-mega a.lc-mega-card:focus { background: rgba(255, 255, 255, .04); }
  .lc-mega-card .lc-mega-icon { display: flex; width: 48px; height: 48px; margin-bottom: 6px; font-size: 19px; }
  .lc-mega-desc { display: block; flex: 1; font-size: 14px; line-height: 1.6; }
  .lc-mega-card > .lc-mega-more { display: block; margin-top: 6px; }
  .lc-primary-nav .lc-mega .lc-mega-card-static .lc-mega-more { margin-top: auto; padding-top: 8px; }
}
@media (min-width: 901px) and (max-width: 1199px) {
  /* Mid widths: tighter spacing so three cards keep their contact lines on one row. */
  .lc-nav-enhanced .lc-mega { grid-template-columns: minmax(180px, .8fr) 3fr; gap: 32px; }
  .lc-mega-intro { padding-right: 24px; }
  .lc-mega-grid { gap: 24px; }
  .lc-primary-nav .lc-mega .lc-mega-card { padding: 20px; }
}
@media (min-width: 901px) and (max-width: 1099px) {
  .lc-nav-enhanced .lc-mega { grid-template-columns: minmax(150px, .6fr) 3fr; padding: 32px; }
  .lc-primary-nav .lc-mega .lc-mega-card-static a { font-size: 13px; }
}
/* Page components shared by the service, industry and product pages. */
.heading-center > p[class*="max-width-"] { margin-left: auto; margin-right: auto; }
.lc-anchor-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.lc-anchor-nav a, .lc-anchor-nav span {
  padding: 7px 18px;
  border: 1px solid #ccc;
  border-radius: 30px;
  color: var(--lc-dark);
  font: 13px 'Oswald', sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lc-anchor-nav a:hover, .lc-anchor-nav a:focus { border-color: var(--lc-red); color: var(--lc-red); }
.lc-anchor-nav i { margin-right: 6px; color: var(--lc-red); }
.lc-feature-list { padding: 0; list-style: none; }
.lc-feature-list li { position: relative; margin-bottom: 12px; padding-left: 28px; color: var(--lc-text); font: 15px/1.6 'Open Sans', sans-serif; }
.lc-feature-list li i { position: absolute; left: 0; top: 4px; color: var(--lc-red); }
.lc-industry { padding: 56px 0; border-bottom: 1px solid #e5e5e5; scroll-margin-top: 24px; }
.lc-industry:last-child { border-bottom: 0; }
.lc-industry-icon { display: flex; align-items: center; justify-content: center; width: 84px; height: 84px; margin-bottom: 20px; border-radius: 50%; background: var(--lc-red); color: var(--lc-white); font-size: 34px; }
.lc-related a { color: var(--lc-dark); text-decoration: underline; text-decoration-color: var(--lc-red); text-underline-offset: 4px; }
[id].col { scroll-margin-top: 24px; }
.lc-stat { color: var(--lc-red); font: 700 56px/1 'Oswald', sans-serif; }
.lc-stat-label { margin-top: 8px; color: rgba(255, 255, 255, .8); font: 16px 'Oswald', sans-serif; text-transform: uppercase; }
.lc-site-footer { padding: 64px 0 24px; }
.lc-footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.lc-site-footer h2 { font-size: 20px; color: var(--lc-white); margin-bottom: 18px; }
.lc-site-footer a { display: block; width: fit-content; max-width: 100%; padding: 9px 0; color: var(--lc-white); font: 14px/1.6 'Open Sans', sans-serif; overflow-wrap: anywhere; }
.lc-social-links { display: flex; flex-wrap: wrap; gap: 0 18px; }
.lc-copyright { margin: 32px 0 0; padding-top: 24px; border-top: 1px solid var(--lc-text); color: var(--lc-white); font-size: 13px; }
.btn { max-width: 100%; white-space: normal; overflow-wrap: anywhere; }
.btn[disabled] { cursor: wait; }
.btn-primary, .btn-primary:hover, .btn-primary:focus { color: var(--lc-white); font-size: 19px; font-weight: 700; }
.lc-service > a, .lc-contact-details a, .info-box-text a { color: var(--lc-dark); text-decoration: underline; text-decoration-color: var(--lc-red); text-underline-offset: 4px; }
.tt-accordion-item-queue { color: var(--lc-text); }
.bgi-category, .bgi-category:hover, #section-9 .heading-md > p { color: #000 !important; }
.accel-card .price-note { color: var(--lc-text); }
.lc-form-note { margin: 12px 0; font-size: 14px; }
#form-status { min-height: 1.6em; font-family: 'Open Sans', sans-serif; }
.contact-section .text-gray { color: var(--lc-white) !important; }
.owl-carousel .owl-nav button { min-width: 44px; min-height: 44px; }
/* Original look: arrows fade in on hover. Keyboard focus reveals them too. */
body:not(.is-mobile) .owl-carousel.nav-hover:focus-within .owl-nav { opacity: 1; visibility: visible; }
.owl-carousel:not(.owl-loaded) { display: block; }
.owl-carousel:not(.owl-loaded) > .cc-item:not(:first-child) { display: none; }
.counter-up-inner .lc-counter-label { margin: 10px 0; font: 24px/1.2 'Oswald', sans-serif; }
.lc-contact-hero { padding-top: 72px; }
.lc-contact-card { color: var(--lc-dark); }
@media (max-width: 900px) {
  .lc-site-header { flex-wrap: wrap; gap: 16px; padding: 18px 15px; }
  .lc-site-logo { max-width: min(260px, calc(100% - 90px)); }
  .lc-primary-nav { width: 100%; gap: 0; flex-direction: column; align-items: stretch; margin-top: 14px; padding: 6px 0; background: var(--lc-dark); }
  .lc-primary-nav a { padding: 10px 16px; }
  .lc-nav-trigger { width: 100%; justify-content: space-between; padding: 10px 16px; }
  .lc-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .made-with-love { display: none; }
}
@media (max-width: 575px) {
  body { border-width: 8px; }
  .border-left, .border-right { width: 8px; }
  .lc-hero { padding: 48px 0; }
  .lc-hero h1, .lc-contact-hero h1 { font-size: clamp(28px, 8vw, 38px); line-height: 1.2; overflow-wrap: anywhere; }
  .lc-contact-hero { padding: 48px 0; }
  .lc-contact-card, .accel-card { padding: 24px 18px; }
  .lc-contact-card { margin-top: 32px; }
  .btn-lg { padding-left: 20px; padding-right: 20px; }
  .intro-caption-title { font-size: clamp(28px, 8vw, 42px) !important; }
  .intro-slider .intro-slide-item { min-height: 540px; }
  .intro-slider .intro-caption { padding: 160px 20px 80px; }
  .intro-caption-subtitle { font-size: 18px !important; }
  .page-header-caption .page-header-title { font-size: clamp(28px, 9vw, 42px) !important; overflow-wrap: anywhere; }
  .page-header-caption .page-header-subtitle { font-size: 18px; }
  .heading-title { overflow-wrap: anywhere; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [class*="parallax-"], .cc-hover-zoom .cc-image { transform: none !important; }
  [class*="fade-out-scroll-"] { opacity: 1 !important; }
}
/* Homepage sections below the hero. */
.lc-h { padding: clamp(96px, 12vw, 168px) 0; }
.lc-h-dark { background: var(--lc-dark); color: #fff; }
.lc-eyebrow { margin: 0 0 18px; color: var(--lc-dark); font: 15px 'Oswald', sans-serif; letter-spacing: .25em; text-transform: uppercase; }
.lc-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 2px; margin: 0 12px 4px 0; background: var(--lc-red); vertical-align: middle; }
.lc-h-dark .lc-eyebrow, .lc-offer .lc-eyebrow { color: #fff; }
.lc-display { margin: 0; font: 700 clamp(36px, 5.5vw, 80px)/1 'Oswald', sans-serif; text-transform: uppercase; }
.lc-h-tight { padding: clamp(80px, 9vw, 120px) 0; }
.lc-title { margin: 0; font: 700 clamp(36px, 5vw, 64px)/1 'Oswald', sans-serif; text-transform: uppercase; }
.lc-lede { max-width: 760px; margin: 28px auto 0; font: 300 clamp(18px, 2vw, 24px)/1.5 'Open Sans', sans-serif; color: var(--lc-text); }
.lc-h-dark .lc-lede { color: rgba(255, 255, 255, .72); }
.lc-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 36px; margin-top: 36px; }
.lc-links a { color: var(--lc-red); font: 700 19px 'Open Sans', sans-serif; }
.lc-links a:hover, .lc-links a:focus { text-decoration: underline; }
.lc-links a::after { content: ' \203A'; }

/* 1. Why logicacode: statement */

/* 3. Industries: full-width red band with an angled photo */
.lc-band-red { position: relative; overflow: hidden; background: var(--lc-red); color: #fff; }
.lc-band-red .container { position: relative; z-index: 1; }
.lc-band-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 44%; background: url(/assets/img/page-header/page-header-6.webp) center / cover; filter: grayscale(1) contrast(1.1); clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%); }
.lc-band-photo::after { content: ''; position: absolute; inset: 0; background: rgba(242, 0, 0, .35); mix-blend-mode: multiply; }
.lc-band-red .lc-eyebrow { color: #000; }
.lc-band-red .lc-eyebrow::before { background: #000; }
.lc-band-red .lc-lede { max-width: 540px; margin-left: 0; color: #fff; font-size: clamp(24px, 2.4vw, 26px); font-weight: 400; }
.lc-industry-names { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 18px 44px; margin: 48px 0 40px; padding: 0; list-style: none; }
.lc-industry-names a { color: #fff; font: 24px 'Oswald', sans-serif; text-transform: uppercase; }
.lc-industry-names a:hover, .lc-industry-names a:focus { color: #000; text-decoration: none; }
.lc-btn-white { display: inline-block; padding: 12px 28px; border-radius: 40px; background: #fff; color: var(--lc-red); font: 700 19px 'Oswald', sans-serif; text-transform: uppercase; }
.lc-btn-white:hover, .lc-btn-white:focus { background: #000; color: #fff; text-decoration: none; }

/* 4. Outcomes: three large cards that arrive one after another */
.lc-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 72px; text-align: left; }
.lc-outcome { display: flex; flex-direction: column; padding: 48px 40px; border-radius: 20px; background: rgba(0, 0, 0, .035); color: var(--lc-dark); transition: transform .35s, box-shadow .35s, opacity .9s, translate .9s; }
.lc-outcome:hover, .lc-outcome:focus { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0, 0, 0, .1); color: var(--lc-dark); text-decoration: none; }
.lc-outcome i { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; margin-bottom: 32px; border-radius: 50%; background: var(--lc-red); color: #fff; font-size: 26px; transition: transform .35s; }
.lc-outcome:hover i, .lc-outcome:focus i { transform: scale(1.1) rotate(-6deg); }
.lc-outcome h3 { margin: 0 0 14px; font: 700 34px/1 'Oswald', sans-serif; text-transform: uppercase; }
.lc-outcome p { flex: 1; margin: 0 0 28px; color: var(--lc-text); font-size: 17px; line-height: 1.6; }
.lc-outcome .lc-more { color: var(--lc-red); font-size: 19px; font-weight: 700; }
.lc-outcome .lc-more::after { content: ' \203A'; }

/* 5. Products */
.lc-products { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 72px; }
.lc-product-tile { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 520px; padding: 64px 40px; border-radius: 24px; background: var(--lc-dark); color: #fff; text-align: center; overflow: hidden; }
.lc-product-tile.lc-wide { grid-column: 1 / -1; min-height: 580px; background: var(--lc-dark) url(/assets/img/page-header/page-header-5.webp) center / cover; box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .7); }
.lc-product-tile.lc-red { background: var(--lc-red); }
.lc-product-tile.lc-red .lc-product-kicker { color: #000; }
.lc-product-tile.lc-red p { color: #fff; font-size: 24px; font-weight: 400; }
.lc-product-tile .lc-product-kicker { margin: 0 0 12px; color: rgba(255, 255, 255, .72); font: 15px 'Oswald', sans-serif; letter-spacing: .2em; text-transform: uppercase; }
.lc-product-tile h3 { max-width: 100%; margin: 0; overflow-wrap: anywhere; font: 700 clamp(32px, 9vw, 88px)/1 'Oswald', sans-serif; text-transform: uppercase; color: #fff; }
.lc-product-tile p { max-width: 520px; margin: 18px auto 0; color: rgba(255, 255, 255, .8); font: 300 20px/1.5 'Open Sans', sans-serif; }
.lc-product-tile .lc-links a { color: #fff; }
.lc-product-tile:not(.lc-red):not(.lc-wide) .lc-links a { color: var(--lc-red); }

/* 6. Offer: angled red band */
.lc-offer { position: relative; padding: 120px 0 140px; background: var(--lc-dark); }
.lc-offer-shape { position: relative; max-width: 1180px; margin: 0 auto; padding: 72px clamp(24px, 6vw, 96px); background: var(--lc-red); color: #fff; clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.lc-offer-shape h2 { margin: 0; color: #fff; font: 700 clamp(34px, 4.5vw, 58px)/1 'Oswald', sans-serif; text-transform: uppercase; }
.lc-offer-shape p { max-width: 600px; margin: 16px 0 0; color: #fff; font: 400 24px/1.45 'Open Sans', sans-serif; }
.lc-offer-shape .lc-btn-white { flex: none; padding: 16px 36px; font-size: 18px; }

/* Scroll reveal (only when JS runs and motion is allowed); outcome cards stagger. */
@media (prefers-reduced-motion: no-preference) {
  .lc-js .lc-reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s ease, transform .9s ease; }
  .lc-js .lc-reveal.lc-in { opacity: 1; transform: none; }
  .lc-js .lc-outcomes.lc-reveal { opacity: 1; transform: none; }
  .lc-js .lc-outcomes .lc-outcome { opacity: 0; translate: 0 40px; }
  .lc-js .lc-outcomes.lc-in .lc-outcome { opacity: 1; translate: 0 0; }
  .lc-js .lc-outcomes.lc-in .lc-outcome:nth-child(2) { transition-delay: 0s, 0s, .15s, .15s; }
  .lc-js .lc-outcomes.lc-in .lc-outcome:nth-child(3) { transition-delay: 0s, 0s, .3s, .3s; }
}
@media (max-width: 991px) {
  .lc-outcomes { grid-template-columns: 1fr; }
  .lc-band-photo { display: none; }
  .lc-offer-shape { flex-direction: column; align-items: flex-start; clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); }
}
@media (max-width: 767px) {
  .lc-products { grid-template-columns: 1fr; }
  .lc-product-tile, .lc-product-tile.lc-wide { min-height: 420px; padding: 56px 24px; }
  .lc-industry-names { grid-template-columns: 1fr 1fr; gap: 14px 24px; }
}
  
