:root {
  --bg: #0e1116;
  --panel: #171c24;
  --panel-2: #202733;
  --text: #f5f7fa;
  --muted: #b7c0cc;
  --line: rgba(255,255,255,.12);
  --accent: #d7a64a;
  --accent-2: #f2c96d;
  --max: 1400px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top left, #222b38 0, var(--bg) 42%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }


/* ==================================
   PREMIUM LES NAVIGATION
================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(19, 23, 29, 0.96);
  border-bottom: 1px solid rgba(213, 168, 93, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1400px;
  min-height: 84px;
  margin: 0 auto;
  padding: 10px 30px;
}

/* Logo */

.logo-lockup {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 280px; /* Previously 210px */
  text-decoration: none;
}

.logo-lockup img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90px; /* Previously 64px */
  object-fit: contain;
  object-position: left center;
}

/* Desktop links */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 2vw, 32px);
  margin-left: auto;
}

.nav-links > a:not(.nav-quote-btn) {
  color: #cbd2da;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links > a:not(.nav-quote-btn):hover {
  color: #d5a85d;
}

/* Quote button */

.nav-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 7px;
  background: #d5a85d;
  color: #171c22;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-quote-btn:hover {
  background: #edc47b;
  transform: translateY(-2px);
}

.nav-quote-btn span {
  font-size: 18px;
}

/* Hidden on desktop */

.nav-toggle {
  display: none;
}

/* ==================================
   MOBILE NAVIGATION
================================== */

@media (max-width: 900px) {

  .nav-inner {
    min-height: 70px;
    padding: 10px 20px;
  }

  .logo-lockup {
    width: 190px;
  }

  .logo-lockup img {
    max-height: 60px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #46515d;
    border-radius: 8px;
    background: #222a33;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #d5a85d;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 15px 22px 25px;
    border-bottom: 1px solid #46515d;
    background: #171c22;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a:not(.nav-quote-btn) {
    padding: 16px 5px;
    border-bottom: 1px solid #303944;
    font-size: 15px;
  }

  .nav-quote-btn {
    margin-top: 20px;
    padding: 17px 20px;
  }
}

@media (max-width: 380px) {
  .logo-lockup {
    width: 145px;
  }
}

section, .page-wrap { max-width: var(--max); margin: 0 auto; padding: 58px 22px; }
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 22px 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
  cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #15110a; border: 0; }
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
  width: 100%;
  max-width: 800px;
  justify-self: end;
  transform: translateY(-20px);
}

.media-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
}
.diagram-card {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.02)
    );

    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 12px;

    box-shadow: 0 28px 70px rgba(0,0,0,.38);
}

.diagram-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.hero-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.hero h1 {
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 9ch;
  margin: 0 0 24px;
  font-weight: 900;
}
.hero-badge{
  display:inline-block;
  margin-top:20px;
  padding:10px 16px;
  border:1px solid rgba(242,201,109,.3);
  border-radius:999px;
  color:#f2c96d;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
}
.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0;
}
.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  font-family: inherit;
}

.chat-toggle {
  background: #111827;
  color: white;
  border: none;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.chat-box {
  display: none;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
}

.chat-box.open {
  display: block;
}

.chat-header {
  background: #111827;
  color: white;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header button {
  background: transparent;
  color: white;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.chat-messages {
  padding: 14px;
  max-height: 260px;
  overflow-y: auto;
  background: #f9fafb;
}

.bot-message,
.user-message {
  padding: 10px 12px;
  border-radius: 14px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.4;
}
.bot-message {
  background: white;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.user-message {
  background: #111827;
  color: white;
  margin-left: 40px;
}

.chat-options {
  padding: 12px;
  display: grid;
  gap: 8px;
  background: white;
}

.chat-options button {
  border: 1px solid #d1d5db;
  background: #f9fafb;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.chat-options button:hover {
  background: #e5e7eb;
}
.hero-stats span{
  padding:8px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:#d8dde6;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.lead {
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 620px;
}

.hero-proof {
  margin-top: 22px;
  color: #f2c96d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.btn-industrial{
  background:linear-gradient(135deg,#d7a643,#f2c96d);
  color:#15110a;
  font-weight:800;
  padding:16px 28px;
  border-radius:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  border:1px solid rgba(255,255,255,.2);
}

.btn-industrial:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-ghost {
  background: rgba(255,255,255,.03);
  color: var(--text);
  border: 1px solid var(--line);
}
.caption { padding: 14px 8px 4px; color: var(--muted); font-size: 14px; }
.section-title { font-size: clamp(32px, 4vw, 48px); line-height: 1.05; margin: 0 0 14px; letter-spacing: -0.04em; }
.section-copy { color: var(--muted); max-width: 800px; margin: 0 0 28px; font-size: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: rgba(255,255,255,.045); border: 1px solid var(--line);
  border-radius: 22px; padding: 24px;
}
.card h3 { margin: 0 0 10px; font-size: 22px; }
.card p { margin: 0; color: var(--muted); }
.problem { background: rgba(0,0,0,.18); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width:none; }
.problem-inner { max-width:var(--max); margin:0 auto; padding: 58px 22px; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: stretch; }
.feature-list { display: grid; gap: 12px; }
.feature { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.feature strong { color: var(--accent-2); }
.quote-box {
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: 28px; padding: 30px;
  display: flex; flex-direction: column; justify-content: center;
}
.quote-box p { font-size: clamp(24px, 3vw, 38px); line-height: 1.15; letter-spacing: -0.04em; margin: 0; font-weight: 800; }
.steps { counter-reset: step; }
.step h3::before {
  counter-increment: step; content: counter(step);
  display:inline-grid; place-items:center; width:32px; height:32px;
  margin-right:10px; border-radius:50%; background:var(--accent-2); color:#15110a; font-size:16px;
}
.catalog-item { display:grid; grid-template-columns: 180px 1fr; gap: 20px; align-items:center; }
.catalog-visual {
  min-height:130px; border-radius:18px; border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(242,201,109,.22), rgba(255,255,255,.04));
  display:grid; place-items:center; color:var(--accent-2); font-weight:900; text-transform:uppercase;
}
.specs { display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.specs span { border:1px solid var(--line); color:var(--muted); border-radius:999px; padding:6px 10px; font-size:13px; }
.cta {
  background: linear-gradient(135deg, rgba(215,166,74,.18), rgba(255,255,255,.04));
  border: 1px solid var(--line); border-radius: 32px; padding: 42px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start;
}
.cta h2 { margin: 0 0 12px; font-size: clamp(32px, 4vw, 52px); line-height: 1; }
.cta p { margin: 0 0 18px; color: var(--muted); font-size: 18px; }
form { display: grid; gap: 12px; }
form { 
  display: grid; 
  gap: 12px; 
}

.form-grid { 
  display: grid; 
  grid-template-columns: 0.85fr 1.15fr; 
  gap: 12px; 
}

input, 
textarea, 
select {
  width: 100%; 
  padding: 14px 15px; 
  border-radius: 14px;
  border: 1px solid var(--line); 
  background: rgba(0,0,0,.24);
  color: var(--text); 
  font: inherit;
  box-sizing: border-box;
}

textarea { 
  min-height: 120px; 
  resize: vertical; 
  grid-column: span 2;
}

form .btn {
  justify-self: start;
}
footer a { color:var(--accent-2); }

.gold-text {
  color: #D4A43C;
}

@media (max-width: 860px) {
  .hero, 
  .split, 
  .cta, 
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    padding: 10px 13px;
    font-size: 13px;
  }

  .hero {
    padding: 48px 22px 42px;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 78px);
    line-height: .9;
    max-width: 8ch;
  }

  .lead {
    font-size: 20px;
    line-height: 1.45;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge {
    max-width: 300px;
    line-height: 1.4;
  }

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

  .btn {
    width: 100%;
  }

  .hero-card {
    transform: none;
    justify-self: stretch;
    max-width: 100%;
  }

  .cta {
    padding: 28px;
  }

  .catalog-item {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  textarea {
    grid-column: span 1;
  }
}

/* 2026 Libert Elevation System identity */
.logo-lockup { display:flex; align-items:center; flex:0 1 310px; min-width:0; }
.logo-lockup img { width:100%; max-width:310px; height:auto; object-fit:contain; }
.nav-inner { min-height:90px; }
.brand-tagline { display:inline-block; margin:12px 0 23px; padding-bottom:8px; border-bottom:2px solid var(--accent); color:var(--text); font-size:clamp(16px,2vw,22px); font-weight:800; letter-spacing:.24em; }
.brand-tagline strong { color:var(--accent-2); }
.hero-copy .eyebrow { margin-bottom:0; }
@media(max-width:860px) { .logo-lockup { flex-basis:210px; } .logo-lockup img { max-width:210px; } .nav-inner { min-height:74px; } .brand-tagline { letter-spacing:.13em; } }
@media(max-width:380px) { .logo-lockup { flex-basis:175px; } .logo-lockup img { max-width:175px; } }

/* PREMIUM HERO ACTIONS */

.hero-actions {
  margin-top: 36px;
  max-width: 650px;
}

/* FEATURES */

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-features span {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 4px;
  background: rgba(255,255,255,0.025);

  color: #cbd0d7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

/* WISCONSIN ORIGIN */

.hero-origin {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

  margin-bottom: 22px;

  color: #e5b653;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.origin-line {
  width: 26px;
  height: 2px;
  background: #e5b653;
}

.origin-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e5b653;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  min-height: 58px;
  padding: 0 24px;

  border-radius: 5px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-decoration: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.hero-btn-primary {
  background: #e5b653;
  color: #171c23;
  border: 1px solid #e5b653;
}

.hero-btn-primary:hover {
  background: #f3cb77;
  border-color: #f3cb77;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: #e5b653;
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 600px) {
  .hero-features {
    gap: 8px;
  }

  .hero-features span {
    font-size: 9px;
    padding: 9px 11px;
  }

  .hero-origin {
    font-size: 10px;
    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
  }
}

/* PREMIUM CONTENT SECTIONS */

.premium-section {
  padding: 110px 28px;
  color: #f8fafc;
}

.challenge-section {
  background: #171c22;
}

.solution-section {
  background: #202731;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.premium-container {
  max-width: 1360px;
  margin: 0 auto;
}

/* SECTION LABEL */

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;

  color: #e5b653;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.label-line {
  width: 32px;
  height: 2px;
  background: #e5b653;
}

/* HEADINGS */

.premium-heading {
  max-width: 1050px;
  margin: 0 0 26px;

  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -2px;
}

.premium-heading span {
  display: block;
  color: #e5b653;
}

.premium-description {
  max-width: 760px;
  margin: 0 0 54px;

  color: #bfc8d3;
  font-size: 18px;
  line-height: 1.8;
}

/* FEATURE GRID */

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

.premium-card {
  position: relative;
  min-width: 0;
  padding: 36px 30px 40px;

  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.challenge-section .premium-card {
  border-top: 2px solid #e5b653;
}

.premium-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229,182,83,0.6);
  background: rgba(255,255,255,0.045);
}

.card-number {
  display: block;
  margin-bottom: 40px;

  color: #e5b653;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.premium-card h3 {
  margin: 0 0 16px;

  color: #ffffff;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.3;
}

.premium-card p {
  margin: 0;

  color: #bfc8d3;
  font-size: 15px;
  line-height: 1.75;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .premium-section {
    padding: 75px 24px;
  }

  .premium-grid {
    grid-template-columns: 1fr;
  }

  .premium-card {
    padding: 28px;
  }

  .card-number {
    margin-bottom: 22px;
  }

  .premium-heading {
    letter-spacing: -1px;
  }
}

@media (max-width: 600px) {
  .premium-section {
    padding: 65px 20px;
  }

  .premium-description {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .premium-heading {
    font-size: clamp(32px, 9vw, 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-card {
    transition: none;
  }

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


/* LES HERO SLIDESHOW */

.les-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 16px;
  background: #15191e;
}

.les-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.les-slide.active {
  opacity: 1;
  z-index: 1;
}

.les-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation arrows */

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(15,19,24,0.65);
  color: white;
  cursor: pointer;
  transition: 0.25s ease;
}

.slide-arrow:hover {
  background: #c49a54;
  color: #111;
}

.slide-arrow.prev {
  left: 15px;
}

.slide-arrow.next {
  right: 15px;
}

/* Gold slide indicators */

.slide-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 3;
}

.slide-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s ease;
}

.slide-dot.active {
  width: 26px;
  border-radius: 8px;
  background: #c49a54;
}

@media (max-width: 600px) {
  .les-slideshow {
    aspect-ratio: 4 / 3;
  }
}


/* ========================================
   LES PREMIUM PROCESS SECTION
======================================== */

.les-process {
  padding: 110px max(5%, calc((100% - 1400px)/2));
  background: #14191f;
}

.les-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cda45f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.les-section-label > span {
  width: 32px;
  height: 2px;
  background: #cda45f;
}

.les-process-header {
  max-width: 900px;
  margin-bottom: 55px;
}

.les-process-header h2,
.les-advantage-main h2 {
  margin: 25px 0;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: #fff;
}

.les-process-header h2 span,
.les-advantage-main h2 span {
  display: block;
  color: #cda45f;
}

.les-process-header > p {
  max-width: 640px;
  color: #aeb8c4;
  font-size: 18px;
  line-height: 1.7;
}

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

.les-process-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 32px;
  border: 1px solid #343c46;
  border-radius: 12px;
  background: #1d242d;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.les-process-card:hover {
  transform: translateY(-5px);
  border-color: #cda45f;
  background: #222b35;
}

.les-process-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.les-process-number {
  color: #cda45f;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.les-process-line {
  flex: 1;
  height: 1px;
  background: #48515b;
}

.les-process-content {
  margin-top: auto;
  padding-top: 65px;
}

.les-process-tag {
  color: #cda45f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.les-process-content h3 {
  margin: 14px 0;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.les-process-content p {
  max-width: 340px;
  margin: 0;
  color: #b5bec9;
  font-size: 15px;
  line-height: 1.75;
}


/* ========================================
   PREMIUM ADVANTAGE SECTION
======================================== */

.les-advantage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 100px max(5%, calc((100% - 1400px)/2));
  background: #1d242d;
  border-top: 1px solid #343c46;
}

.les-advantage-main h2 {
  max-width: 600px;
}

.les-advantage-main > p {
  max-width: 460px;
  color: #b5bec9;
  font-size: 18px;
  line-height: 1.75;
}

.les-advantage-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  margin-top: 35px;
  padding-bottom: 12px;
  border-bottom: 2px solid #cda45f;
  color: #cda45f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.les-advantage-link:hover {
  gap: 48px;
}

.les-advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.les-benefit {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px;
  background: #151b22;
  border: 1px solid #38414c;
  border-radius: 10px;
  transition: border-color 0.25s ease;
}

.les-benefit:hover {
  border-color: #cda45f;
}

.les-benefit-number {
  color: #cda45f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.les-benefit h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
}

.les-benefit p {
  margin: 0;
  color: #aeb8c4;
  font-size: 14px;
  line-height: 1.7;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {
  .les-advantage {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 768px) {
  .les-process,
  .les-advantage {
    padding: 70px 22px;
  }

  .les-process-grid {
    grid-template-columns: 1fr;
  }

  .les-process-card {
    min-height: 240px;
  }

  .les-process-content {
    padding-top: 35px;
  }

  .les-advantage-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .les-process-card,
  .les-benefit,
  .les-advantage-link {
    transition: none;
  }
}


/* ===================================
   LES ROI CALCULATOR
=================================== */

.les-roi {
  padding: 110px max(5%, calc((100% - 1400px)/2));
  background: #14191f;
}

.roi-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.roi-eyebrow {
  display: block;
  color: #d5a85d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.roi-heading h2 {
  margin: 20px 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.roi-heading h2 span {
  display: block;
  color: #d5a85d;
}

.roi-heading .section-copy {
  max-width: 750px;
  color: #b5bec9;
  font-size: 17px;
  line-height: 1.75;
}

/* Main calculator */

.roi-calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid #39434e;
  border-radius: 18px;
  background: #1d242d;
}

.roi-inputs,
.roi-results {
  padding: clamp(25px, 4vw, 50px);
  min-width: 0;
}

.roi-inputs {
  border-right: 1px solid #39434e;
}

.roi-inputs h3,
.roi-results h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: -0.03em;
}

.roi-inputs > p {
  margin-bottom: 40px;
  color: #b5bec9;
  line-height: 1.7;
}

/* Sliders */

.roi-field {
  margin-bottom: 32px;
}

.roi-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 18px;
  color: #e9edf2;
  font-size: 15px;
}

.roi-field label strong {
  color: #d5a85d;
  font-size: 21px;
  white-space: nowrap;
}

.roi-field input[type="range"] {
  display: block;
  width: 100%;
  height: 5px;
  margin: 0;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  background: #46515e;
  accent-color: #d5a85d;
  cursor: pointer;
}

.roi-field input[type="range"]::-webkit-slider-thumb {
  width: 19px;
  height: 19px;
  border: 3px solid #1d242d;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: #d5a85d;
  box-shadow: 0 0 0 1px #d5a85d;
}

.roi-field input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid #1d242d;
  border-radius: 50%;
  background: #d5a85d;
}

/* Results */

.roi-results {
  background: #202832;
}

.roi-results h3 {
  margin-bottom: 32px;
}

.roi-result-card {
  margin-bottom: 18px;
  padding: 30px;
  border: 1px solid #46515d;
  border-radius: 12px;
  background: #161d25;
}

.roi-result-card > span {
  display: block;
  margin-bottom: 18px;
  color: #bfc8d2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.roi-result-card strong {
  display: block;
  color: #fff;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.roi-result-card p {
  margin: 15px 0 0;
  color: #b5bec9;
  font-size: 14px;
}

.roi-result-gold {
  border-color: #d5a85d;
  background: #d5a85d;
}

.roi-result-gold > span,
.roi-result-gold strong,
.roi-result-gold p {
  color: #1a2027;
}

.roi-formula {
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid #46515d;
}

.roi-formula span {
  color: #d5a85d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.roi-formula p {
  color: #e9edf2;
  font-size: 16px;
  line-height: 1.6;
}

.roi-disclaimer {
  margin-top: 28px;
  color: #aab4bf;
  font-size: 12px;
  line-height: 1.7;
}

/* Mobile */

@media (max-width: 850px) {
  .les-roi {
    padding: 70px 22px;
  }

  .roi-calculator {
    grid-template-columns: 1fr;
  }

  .roi-inputs {
    border-right: 0;
    border-bottom: 1px solid #39434e;
  }
}

@media (max-width: 480px) {
  .roi-inputs,
  .roi-results {
    padding: 25px 20px;
  }

  .roi-result-card {
    padding: 22px;
  }
}


/* ==================================
   PREMIUM LES QUOTE SECTION
================================== */

.les-quote {
  padding: 100px 5%;
  background: #14191f;
}

.les-quote-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #3b4148;
  border-radius: 22px;
  background: #1d2229;
}

/* Left panel */

.les-quote-intro {
  padding: clamp(35px, 5vw, 65px);
  background:
    linear-gradient(145deg, #302b22, #1b2129 80%);
}

.les-quote-eyebrow {
  color: #d5a85d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.les-quote-intro h2 {
  margin: 28px 0 24px;
  color: #fff;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.les-quote-intro h2 span {
  display: block;
  color: #d5a85d;
}

.les-quote-intro > p {
  max-width: 440px;
  color: #b9c2cc;
  font-size: 16px;
  line-height: 1.8;
}

.les-quote-divider {
  height: 1px;
  margin: 45px 0 30px;
  background: #454545;
}

.les-quote-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.les-quote-feature span {
  color: #d5a85d;
  font-size: 12px;
  font-weight: 800;
}

.les-quote-feature p {
  margin: 0;
  color: #e6e9ed;
  font-size: 15px;
}

.les-quote-origin {
  margin-top: 65px;
  color: #a5abb3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.8;
}

/* Right panel */

.les-quote-form-panel {
  min-width: 0;
  padding: clamp(30px, 4vw, 55px);
  background: #20252c;
}

.les-quote-form-panel h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.les-quote-form-description {
  margin-bottom: 35px;
  color: #b9c2cc;
  font-size: 15px;
}

/* Form */

.les-quote-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.les-quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.les-quote-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 10px;
}

.les-quote-field label {
  color: #c5cbd2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.les-quote-field input,
.les-quote-field select,
.les-quote-field textarea {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 17px 18px;
  border: 1px solid #414a54;
  border-radius: 9px;
  outline: none;
  background: #171c22;
  color: #fff;
  font: inherit;
  font-size: 14px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.les-quote-field input::placeholder,
.les-quote-field textarea::placeholder {
  color: #929da9;
}

.les-quote-field input:focus,
.les-quote-field select:focus,
.les-quote-field textarea:focus {
  border-color: #d5a85d;
  box-shadow: 0 0 0 3px rgba(213, 168, 93, 0.12);
}

.les-quote-field textarea {
  min-height: 145px;
  resize: vertical;
}

.les-quote-field select {
  cursor: pointer;
}

/* CTA */

.les-quote-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 25px;
  border: 0;
  border-radius: 9px;
  background: #d5a85d;
  color: #161b20;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.les-quote-submit:hover {
  background: #edc47b;
  transform: translateY(-2px);
}

.les-quote-submit span {
  font-size: 24px;
  font-weight: 400;
}

.les-quote-note {
  margin: -10px 0 0;
  color: #9faab5;
  font-size: 12px;
  text-align: center;
}

/* Responsive */

@media (max-width: 900px) {
  .les-quote {
    padding: 70px 22px;
  }

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

  .les-quote-origin {
    margin-top: 40px;
  }
}

@media (max-width: 520px) {
  .les-quote-intro,
  .les-quote-form-panel {
    padding: 30px 22px;
  }

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

  .les-quote-intro h2 {
    font-size: 38px;
  }
}

/* CATALOG BOTTOM LOGO */

.catalog-bottom-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px 35px;
  border-top: 1px solid rgba(213, 168, 93, 0.15);
}

.catalog-bottom-logo img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 600px) {
  .catalog-bottom-logo {
    padding: 25px 20px;
  }

  .catalog-bottom-logo img {
    max-width: 150px;
  }
}
/* CATALOG CUSTOM QUOTE */

.catalog-custom-quote {
  max-width: 1400px;
  margin: 0 auto;
  padding: 35px 0 40px;
}

.catalog-custom-quote .section-title {
  margin-top: 0;
  margin-bottom: 12px;
}

.catalog-custom-quote .section-copy {
  margin-bottom: 24px;
}

/* Keep the bottom logo close to the section */

.catalog-bottom-logo {
  padding: 25px 20px 30px;
}

@media (max-width: 600px) {
  .catalog-custom-quote {
    padding: 35px 20px;
  }
}
