/* ── Laxmi Fabrications – Brand CSS ── */
:root {
  --navy:  #0a1628;
  --gold:  #f5a800;
  --red:   #cc2222;
  --light: #f4f6fa;
  --text:  #1a1a2e;
}

/* ── Reset / Full-width fix ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); margin: 0; padding: 0 !important; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

.page-container,
.page_content,
body > .container,
body > main { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.lf-navbar {
  background: var(--navy);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
  height: 70px;
  width: 100%;
}

.lf-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}
.lf-brand-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.lf-logo-fallback {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--navy); font-size: 1.2rem;
}
.lf-brand-text { min-width: 0; overflow: hidden; }
.lf-brand-name {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lf-brand-sub {
  color: #a0b4cc;
  font-size: .6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.lf-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.lf-nav-links a {
  color: #b8c8d8;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .4px;
  transition: color .2s;
  white-space: nowrap;
}
.lf-nav-links a:hover { color: var(--gold); }
.lf-nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: .4rem 1.1rem;
  border-radius: 4px;
  font-weight: 700 !important;
}
.lf-nav-cta:hover { background: #e09600 !important; }

/* Hamburger button */
.lf-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  padding: .45rem .55rem;
  cursor: pointer;
  flex-shrink: 0;
}
.lf-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}
.lf-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lf-menu-btn.active span:nth-child(2) { opacity: 0; }
.lf-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.lf-hero {
  background: linear-gradient(135deg, var(--navy) 55%, #142040 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 3rem;
  width: 100%;
}
.lf-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; background: var(--gold); opacity: .05; border-radius: 50%;
}
.lf-hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px; background: var(--red); opacity: .04; border-radius: 50%;
}
.lf-hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 4rem;
  position: relative; z-index: 1;
}
.lf-hero-text { flex: 1; min-width: 0; }
.lf-hero-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: .3rem .85rem; border-radius: 3px; margin-bottom: 1.2rem;
}
.lf-hero-text h1 {
  font-size: clamp(1.8rem, 5vw, 4rem); font-weight: 900;
  color: var(--gold); text-transform: uppercase; letter-spacing: 2px;
  line-height: 1.05; margin: 0 0 .5rem;
}
.lf-hero-text h2 {
  font-size: clamp(.85rem, 2vw, 1.3rem); font-weight: 500;
  color: #7a9bb8; letter-spacing: 3px; text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.lf-hero-desc { color: #b0c4d8; font-size: 1rem; line-height: 1.85; max-width: 560px; margin-bottom: 1.5rem; }
.lf-hero-gstin { color: #5a7a96; font-size: .78rem; letter-spacing: 1px; margin-bottom: 2rem; }
.lf-hero-gstin span { color: var(--gold); font-weight: 700; }
.lf-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold); color: var(--navy); font-weight: 700;
  padding: .75rem 1.8rem; border-radius: 5px; border: 2px solid var(--gold);
  font-size: .95rem; transition: all .2s; cursor: pointer; display: inline-block; white-space: nowrap;
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline {
  background: transparent; color: #fff; font-weight: 600;
  padding: .75rem 1.8rem; border-radius: 5px; border: 2px solid rgba(255,255,255,.25);
  font-size: .95rem; transition: all .2s; cursor: pointer; display: inline-block; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.lf-hero-logo { flex: 0 0 280px; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.lf-hero-logo img { width: 160px; height: 160px; object-fit: contain; filter: drop-shadow(0 0 40px rgba(245,168,0,.3)); }
.lf-logo-circle {
  width: 140px; height: 140px;
  background: rgba(245,168,0,.12); border: 3px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 900; color: var(--gold);
}
.lf-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; width: 100%; }
.lf-stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(245,168,0,.2);
  border-radius: 8px; padding: .9rem .7rem; text-align: center;
}
.lf-stat .num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--gold); line-height: 1; }
.lf-stat .lbl { font-size: .6rem; color: #6a8fa0; letter-spacing: 1px; text-transform: uppercase; }

/* ── Gold Divider ── */
.lf-divider {
  height: 5px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 30%, var(--red) 50%, var(--gold) 70%, var(--navy) 100%);
  width: 100%;
}

/* ════════════════════════════════
   SECTIONS
════════════════════════════════ */
.lf-section { padding: 5rem 3rem; width: 100%; }
.lf-section-inner { max-width: 1200px; margin: 0 auto; }
.lf-section-label {
  display: inline-block; background: var(--red); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 3px; margin-bottom: .8rem;
}
.lf-section-title { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); margin: 0 0 .4rem; }
.lf-section-title span { color: var(--gold); }
.lf-section-line { width: 60px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--red)); border-radius: 2px; margin-bottom: 2.5rem; }
.lf-section-alt { background: var(--light); }

/* ── About ── */
.lf-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.lf-about-text p { color: #444; line-height: 1.9; font-size: 1rem; }
.lf-about-card {
  background: var(--navy); border-radius: 14px; padding: 2.5rem; color: #fff;
  position: relative; overflow: hidden;
}
.lf-about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--gold), var(--red));
}
.lf-about-card h3 { color: var(--gold); font-size: 1rem; margin: 0 0 1.1rem; text-transform: uppercase; letter-spacing: 1.5px; }
.lf-materials { display: flex; flex-wrap: wrap; gap: .6rem; }
.lf-material-tag {
  background: rgba(245,168,0,.15); border: 1px solid rgba(245,168,0,.3);
  color: var(--gold); padding: .35rem .85rem; border-radius: 4px; font-size: .8rem; font-weight: 600;
}
.lf-industries { margin-top: 1.8rem; }
.lf-industry-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.lf-industry-list li { color: #a0bcd0; font-size: .9rem; padding-left: 1.2rem; position: relative; }
.lf-industry-list li::before { content: '—'; color: var(--red); position: absolute; left: 0; }

/* ════════════════════════════════
   CARD IMAGE TOP ZONE
════════════════════════════════ */
.lf-card-top { width: 100%; position: relative; overflow: hidden; }

.lf-card-has-image img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .4s; }
.lf-service-card:hover .lf-card-has-image img,
.lf-machinery-card:hover .lf-card-has-image img { transform: scale(1.05); }

.lf-card-icon-bg {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, #1c3464 60%, #0f2a55 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .6rem;
}
.lf-card-machinery-bg {
  background: linear-gradient(135deg, #0e1e3a 0%, #162a50 60%, #1a3060 100%);
}
.lf-card-icon-large {
  font-size: 3.4rem; line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
  transition: transform .25s;
}
.lf-service-card:hover .lf-card-icon-large,
.lf-machinery-card:hover .lf-card-icon-large { transform: scale(1.15); }

.lf-card-icon-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(10,22,40,.75); backdrop-filter: blur(4px);
  border: 1px solid rgba(245,168,0,.35);
  border-radius: 6px; padding: .3rem .5rem;
  font-size: 1.3rem; line-height: 1;
}
.lf-card-capacity-float {
  background: var(--gold); color: var(--navy);
  font-size: .68rem; font-weight: 800; letter-spacing: .5px;
  padding: .22rem .65rem; border-radius: 4px;
  max-width: 90%; text-align: center;
}
.lf-card-capacity-badge {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(10,22,40,.85); color: var(--gold);
  font-size: .68rem; font-weight: 800;
  padding: .2rem .55rem; border-radius: 4px;
  max-width: 60%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  border: 1px solid rgba(245,168,0,.3);
}
.lf-card-top::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--red));
  opacity: 0; transition: opacity .2s;
}
.lf-service-card:hover .lf-card-top::after,
.lf-machinery-card:hover .lf-card-top::after { opacity: 1; }

/* ── Services ── */
.lf-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.lf-service-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.lf-service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.13); }
.lf-service-body { padding: 1.2rem 1.4rem; flex: 1; }
.lf-service-name {
  font-size: .95rem; font-weight: 700; color: var(--navy); margin: 0 0 .5rem;
  display: flex; align-items: center; gap: .55rem;
}
.lf-service-name::before { content: ''; width: 10px; height: 3px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.lf-service-desc { color: #666; font-size: .85rem; line-height: 1.65; margin: 0; }

/* ── Machineries ── */
.lf-machinery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.lf-machinery-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.lf-machinery-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.13); }
.lf-machinery-body { padding: 1.2rem 1.4rem; flex: 1; }
.lf-machinery-name { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; line-height: 1.4; }
.lf-machinery-capacity {
  display: inline-block; background: var(--navy); color: var(--gold);
  font-size: .7rem; font-weight: 700; padding: .2rem .6rem; border-radius: 4px; margin-bottom: .55rem;
}
.lf-machinery-desc { color: #666; font-size: .82rem; line-height: 1.55; margin: 0; }

/* ── Why Choose Us ── */
.lf-why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.lf-why-card {
  background: var(--navy); border-radius: 10px; padding: 2rem 1.5rem; text-align: center;
  position: relative; overflow: hidden; transition: transform .2s;
}
.lf-why-card:hover { transform: translateY(-5px); }
.lf-why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--red));
}
.lf-why-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.lf-why-card h4 { color: var(--gold); font-size: 1rem; font-weight: 700; margin: 0 0 .5rem; }
.lf-why-card p { color: #7a9aaa; font-size: .84rem; line-height: 1.65; margin: 0; }

/* ── Clients ── */
.lf-clients-grid { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; align-items: stretch; }
.lf-client-card {
  background: #fff; border: 1px solid #dde3ee; border-radius: 10px;
  width: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; padding: 1rem .8rem; transition: box-shadow .2s, border-color .2s;
}
.lf-client-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); border-color: var(--gold); }
.lf-client-card img { max-width: 110px; max-height: 50px; object-fit: contain; filter: grayscale(60%); transition: filter .2s; }
.lf-client-card:hover img { filter: none; }
.lf-client-placeholder {
  width: 110px; height: 50px; border-radius: 6px;
  background: #ebebeb; border: 1px dashed #ccc;
}
.lf-client-name { color: #555; font-size: .78rem; font-weight: 600; text-align: center; line-height: 1.3; word-break: break-word; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.lf-footer { background: var(--navy); color: #7a9aaa; padding: 4rem 3rem 0; width: 100%; }
.lf-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem;
  padding-bottom: 3rem;
}

/* Brand */
.lf-footer-logo { height: 54px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.lf-footer-name { color: var(--gold); font-size: 1.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.lf-footer-sub  { color: #445a70; font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; }
.lf-footer-brand p { font-size: .86rem; line-height: 1.85; margin: .6rem 0; }
.lf-footer-gstin { font-size: .78rem; color: #445a70; }
.lf-footer-gstin span { color: var(--gold); font-weight: 700; }

/* Social icons */
.lf-social-icons { display: flex; gap: .7rem; margin-top: 1.2rem; flex-wrap: wrap; }
.lf-social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #7a9aaa;
  transition: background .2s, color .2s, border-color .2s;
}
.lf-social-icon svg { width: 16px; height: 16px; }
.lf-social-icon:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Links column */
.lf-footer-links h4,
.lf-footer-contact h4 {
  color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px;
  margin: 0 0 1.1rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(245,168,0,.2);
}
.lf-footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.lf-footer-links a { color: #7a9aaa; font-size: .88rem; transition: color .2s; }
.lf-footer-links a:hover { color: var(--gold); padding-left: 4px; }

/* Contact column */
.lf-contact-item {
  display: flex; gap: .65rem; align-items: flex-start;
  margin-bottom: .85rem; font-size: .86rem;
}
.lf-contact-icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  color: var(--gold);
}
.lf-contact-icon svg { width: 100%; height: 100%; }
.lf-contact-icon-wa { color: #25d366; }
.lf-contact-item a { color: #7a9aaa; transition: color .2s; }
.lf-contact-item a:hover { color: var(--gold); }
.lf-contact-item span:not(.lf-contact-icon) { color: #7a9aaa; line-height: 1.55; }

/* Footer bottom bar */
.lf-footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: #3d5568;
}
.lf-footer-bottom strong { color: var(--gold); }
.lf-footer-bottom .lf-uvtech-link,
.lf-footer-bottom .lf-uvtech-link:link,
.lf-footer-bottom .lf-uvtech-link:visited { color: #f5a800 !important; font-weight: 600; text-decoration: none !important; }
.lf-footer-bottom .lf-uvtech-link:hover { color: #ffbe33 !important; }

/* ════════════════════════════════
   WHATSAPP FLOAT BUTTON
════════════════════════════════ */
.lf-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
  color: #fff;
}
.lf-wa-float svg { width: 28px; height: 28px; }
.lf-wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.6); }

/* ════════════════════════════════
   BACK TO TOP
════════════════════════════════ */
.lf-back-top {
  position: fixed;
  bottom: 88px;
  right: 26px;
  width: 40px; height: 40px;
  background: var(--navy);
  border: 1px solid rgba(245,168,0,.4);
  color: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  transform: translateY(10px);
}
.lf-back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lf-back-top:hover { background: var(--gold); color: var(--navy); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .lf-footer-inner { grid-template-columns: 1fr 1fr; }
  .lf-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .lf-navbar { padding: 0 1.2rem; }
  .lf-nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #0c1e38;
    padding: .5rem 1.5rem 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,.5);
    z-index: 999;
  }
  .lf-nav-links.open { display: flex; }
  .lf-nav-links li { padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .lf-nav-links li:last-child { border-bottom: none; padding-top: .9rem; }
  .lf-nav-cta { display: inline-block; }
  .lf-menu-btn { display: flex; }
  .lf-hero { padding: 3rem 1.5rem; min-height: auto; }
  .lf-hero-inner { flex-direction: column; text-align: center; gap: 2rem; }
  .lf-hero-logo { order: -1; flex: none; width: 100%; }
  .lf-hero-logo img { width: 120px; height: 120px; margin: 0 auto; }
  .lf-logo-circle { margin: 0 auto; }
  .lf-hero-desc { margin: 0 auto 1.5rem; }
  .lf-hero-btns { justify-content: center; }
  .lf-hero-stats { max-width: 340px; margin: 0 auto; width: 100%; }
  .lf-about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lf-section { padding: 3.5rem 1.5rem; }
  .lf-footer { padding: 3rem 1.5rem 0; }
  .lf-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lf-footer-brand { grid-column: auto; }
}

@media (max-width: 600px) {
  .lf-brand-sub { display: none; }
  .lf-brand-name { font-size: 1rem; }
  .lf-brand-logo { height: 40px; width: 40px; }
  .lf-logo-fallback { width: 40px; height: 40px; font-size: 1rem; }
  .lf-hero { padding: 2.5rem 1rem; }
  .lf-hero-stats { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .lf-stat .num { font-size: 1.4rem; }
  .lf-services-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .lf-machinery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .lf-why-grid { grid-template-columns: 1fr 1fr; }
  .lf-clients-grid { gap: .8rem; }
  .lf-client-card { width: 120px; }
  .lf-footer-bottom { flex-direction: column; gap: .4rem; text-align: center; padding: 1rem 0; }
  .lf-wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .lf-back-top { bottom: 76px; right: 18px; }
}

@media (max-width: 420px) {
  .lf-hero-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 240px; text-align: center; }
  .lf-services-grid { grid-template-columns: 1fr; }
  .lf-machinery-grid { grid-template-columns: 1fr; }
  .lf-why-grid { grid-template-columns: 1fr; }
  .lf-section { padding: 2.5rem 1rem; }
}
