/* LockGrip Elite homepage styles. Loaded only on the front page. */


/* -------------------------------
   HOMEPAGE TRUST STRIP
-------------------------------- */
.lg-trust-strip {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
}

.lg-trust-inner {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 14px;
  align-items: stretch;
}

.lg-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.lg-trust-badge:first-child { border-left: 0; }

.lg-trust-ico {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #f68720;
  flex: 0 0 auto;
}

.lg-trust-ico svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lg-trust-title {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3px;
  color: #fff;
}

.lg-trust-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  line-height: 1.25;
}

.lg-trust-badge:hover { background: rgba(255,255,255,0.03); }

@media (max-width: 1024px) {
  .lg-trust-inner { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .lg-trust-badge { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .lg-trust-badge:nth-child(-n+3) { border-top: 0; }
}

@media (max-width: 640px) {
  .lg-trust-inner {
    grid-template-columns: none;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 6px;
  }

  .lg-trust-badge {
    min-width: 78%;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    scroll-snap-align: start;
  }
}

/* -------------------------------
   HOMEPAGE HOW IT WORKS
-------------------------------- */
.lg-how {
  background: radial-gradient(1200px 500px at 50% 0%, rgba(246,135,32,0.10), transparent 60%), #0b0b0b;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.lg-how-inner { max-width: 1200px; margin: 0 auto; padding: 0 18px; }
.lg-how-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: center; margin-bottom: 26px; }
.lg-how-head { max-width: 760px; }
.lg-kicker { color: #f68720; letter-spacing: .22em; text-transform: uppercase; font-weight: 800; font-size: 12px; margin-bottom: 10px; }
.lg-how-title { color: #fff; font-size: 44px; line-height: 1.05; margin: 0 0 14px; }
.lg-how-sub { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.6; margin: 0 0 18px; }

.lg-how-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  min-height: 280px;
}

.lg-how-img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.02); }

.lg-how-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.72));
  pointer-events: none;
}

.lg-how-media-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(6px);
}

.lg-how-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.lg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}

.lg-btn:hover { transform: translateY(-1px); opacity: .95; }
.lg-btn-primary { background: #f68720; color: #0b0b0b; }
.lg-btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.16); }
.lg-btn.primary { background: #f68720; color: #000; }
.lg-btn.outline { border: 2px solid #f68720; color: #f68720; background: transparent; }
.lg-btn.large { padding: 14px 28px; font-size: 16px; }

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

.lg-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
}

.lg-step:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, rgba(246,135,32,0.20), transparent 40%);
  opacity: .35;
  pointer-events: none;
}

.lg-step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.lg-step-num { font-weight: 900; letter-spacing: .12em; color: rgba(255,255,255,0.55); font-size: 12px; }

.lg-step-ico {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #f68720;
  border-radius: 14px;
  background: rgba(246,135,32,0.10);
  border: 1px solid rgba(246,135,32,0.25);
}

.lg-step-ico svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.lg-step-title { color: #fff; font-size: 18px; margin: 0 0 10px; }
.lg-step-text { color: rgba(255,255,255,0.70); font-size: 14px; line-height: 1.6; margin: 0 0 12px; }
.lg-step-tip { font-size: 13px; color: rgba(255,255,255,0.78); border-top: 1px solid rgba(255,255,255,0.10); padding-top: 12px; }

.lg-results {
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  overflow: hidden;
}

.lg-results-inner { display: flex; justify-content: space-between; gap: 10px; padding: 14px; flex-wrap: wrap; }
.lg-result { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-left: 1px solid rgba(255,255,255,0.08); flex: 1 1 180px; }
.lg-result:first-child { border-left: 0; }
.lg-result-dot { width: 10px; height: 10px; border-radius: 999px; background: #f68720; box-shadow: 0 0 0 3px rgba(246,135,32,0.12); }
.lg-result-text { color: #fff; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: 12px; }

@media (max-width: 980px) {
  .lg-how-top { grid-template-columns: 1fr; gap: 14px; }
  .lg-how-title { font-size: 36px; }
  .lg-how-media { min-height: 240px; }
  .lg-steps { grid-template-columns: 1fr; gap: 12px; }
  .lg-result { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .lg-result:first-child { border-top: 0; }
}

/* =========================================================
   LOCKGRIP HOMEPAGE CSS (moved from front-page.php)
========================================================= */
.lg10-hero,
  .lg10-strip,
  .lg10-ready,
  .lg10-pro-performance,
  .lg10-reassurance,
  .lg10-reviews,
  .lg10-faq {
    position: relative;
    overflow: hidden;
  }

  .lg10-hero {
    background-size: cover;
    background-position: center;
    padding: 36px 0 34px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .lg10-hero-inner {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .lg10-hero-copy {
    max-width: 640px;
    width: 100%;
  }

  .lg10-kicker {
    margin: 0 0 14px;
    color: rgba(255,255,255,.72);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 13px;
    font-weight: 700;
  }

  .lg10-hero h1,
  .lg10-strip h2,
  .lg10-ready h2,
  .lg10-pro-performance h2,
  .lg10-problem h2,
  .lg10-reviews h2,
  .lg10-faq h2 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.02;
    letter-spacing: -.02em;
  }

  .lg10-hero h1 {
    font-size: clamp(42px, 7vw, 74px);
    max-width: 760px;
  }

  .lg10-hero h1 span,
  .lg10-strip h2 span,
  .lg10-ready h2 span,
  .lg10-pro-performance h2 span,
  .lg10-problem h2 span {
    color: #f68720;
  }

  .lg10-sub {
    max-width: 560px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.9);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
  }

  .lg10-sub strong {
    color: #fff;
    font-weight: 800;
  }

  .lg10-section-intro {
    max-width: 780px;
    margin: 14px auto 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.6;
    text-align: center;
  }

  .lg10-proof-line {
    max-width: 720px;
    margin: 14px auto 0;
    color: #fff;
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: .04em;
    text-align: center;
    text-transform: uppercase;
  }

  .lg10-body-copy {
    margin: 18px 0 0;
    max-width: 560px;
    color: rgba(255,255,255,.82);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
  }

  .lg10-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    align-items: center;
  }

  .lg10-hero-cta .btn {
    min-width: 180px;
    min-height: 52px;
    justify-content: center;
    padding: 12px 18px;
  }

  .btn-hero-secondary {
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.03);
  }

  .lg10-mini-trust {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .lg10-mini-trust div {
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(8,8,10,.58);
    border-radius: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lg10-strip,
  .lg10-ready,
  .lg10-pro-performance,
  .lg10-reassurance,
  .lg10-reviews,
  .lg10-faq {
    padding: 42px 0;
  }

  .lg10-strip {
    background: linear-gradient(180deg, #0b0b0d 0%, #090909 100%);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .lg10-strip h2,
  .lg10-reviews h2,
  .lg10-faq h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 44px);
  }

  .lg10-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
  }

  .lg10-step-card,
  .lg10-review-card,
  .lg10-faq-item {
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(18,18,20,.95), rgba(11,11,13,.98));
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
  }

  .lg10-step-card {
    padding: 14px;
    text-align: center;
  }

  .lg10-step-card-featured {
    border-color: rgba(246,135,32,.45);
    box-shadow: 0 0 0 1px rgba(246,135,32,.12), 0 12px 30px rgba(0,0,0,.28);
  }

  .lg10-step-media {
    height: 170px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    margin-bottom: 14px;
    background-color: #171717;
  }

  .lg10-step-media-spray { background-image: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.42)), url('../img/spray2.png'); }
  .lg10-step-media-wait { background-image: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.42)), url('../img/wait.png'); }
  .lg10-step-media-play { background-image: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.42)), url('../img/play6.png'); }

  .lg10-step-card h3 {
    margin: 0;
    color: #fff;
    font-size: 32px;
  }

  .lg10-step-card p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
  }

  .lg10-ready {
    background: linear-gradient(180deg, #0d0d10 0%, #101015 100%);
  }

  .lg10-ready-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: center;
  }

  .lg10-ready-copy h2,
  .lg10-pro-performance h2,
  .lg10-reassurance-head h2 {
    font-size: clamp(30px, 4.5vw, 52px);
  }

  .lg10-ready-copy ul {
    margin: 22px 0 26px;
    padding: 0 0 0 22px;
    color: rgba(255,255,255,.9);
    font-size: 20px;
    line-height: 1.7;
  }

  .lg10-ready-media {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.10);
    background: radial-gradient(circle at center, rgba(246,135,32,.18), rgba(12,12,14,.95) 58%);
    text-align: center;
  }

  .lg10-ready-media img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: inline-block;
  }



  .lg10-pro-performance {
    background: linear-gradient(180deg, #101015 0%, #0a0a0d 100%);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .lg10-pro-performance-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 28px;
    align-items: center;
  }

  .lg10-pro-performance-media {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.10);
    background: radial-gradient(circle at center, rgba(246,135,32,.22), rgba(12,12,14,.96) 60%);
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
  }

  .lg10-pro-performance-media img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
  }

  .lg10-pro-performance-stat {
    margin-top: 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .lg10-pro-performance-stat span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
  }

  .lg10-pro-performance-kicker {
    margin: 0 0 12px;
    color: rgba(255,255,255,.68);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 800;
  }

  .lg10-pro-performance h2 span {
    color: #f68720;
  }

  .lg10-pro-performance-copy p {
    margin: 18px 0 0;
    max-width: 560px;
    color: rgba(255,255,255,.82);
    font-size: clamp(18px, 2vw, 22px);
  }

  .lg10-pro-performance-copy ul {
    margin: 22px 0 26px;
    padding: 0 0 0 22px;
    color: rgba(255,255,255,.9);
    font-size: 19px;
    line-height: 1.7;
  }

  .lg10-reassurance {
    background: linear-gradient(180deg, #090909 0%, #111114 100%);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .lg10-reassurance-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .lg10-reassurance-head p {
    margin: 14px auto 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.6;
  }

  .lg10-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
  }

  .lg10-reassurance-item {
    padding: 18px 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(18,18,20,.95), rgba(11,11,13,.98));
    border-radius: 16px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
  }

  .lg10-reviews {
    background: #0b0b0d;
  }

  .lg10-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
    align-items: stretch;
  }

  .lg10-review-card {
    padding: 30px 26px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
  }

  .lg10-stars {
    color: #f68720;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }

  .lg10-review-card p {
    margin: 0;
    color: rgba(255,255,255,.96);
    font-size: 22px;
    line-height: 1.42;
    flex: 1 1 auto;
  }

  .lg10-review-author {
    display: block;
    margin-top: 16px;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .lg10-review-cta {
    margin-top: 26px;
    text-align: center;
  }

  .lg10-review-cta .btn {
    min-width: 190px;
  }

  .lg10-faq {
    background: #090909;
    padding-bottom: 60px;
  }

  .lg10-faq-wrap {
    max-width: 980px;
  }

  .lg10-faq-list {
    margin-top: 24px;
    display: grid;
    gap: 12px;
  }

  .lg10-faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    font: inherit;
    font-size: 24px;
    cursor: pointer;
  }

  .lg10-faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f68720;
    color: #0b0b0b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 34px;
  }

  .lg10-faq-answer {
    padding: 0 24px 22px;
  }

  .lg10-faq-answer p {
    margin: 0;
    color: rgba(255,255,255,.8);
    font-size: 18px;
    line-height: 1.65;
  }

  @media (max-width: 1024px) {
    .lg10-steps-grid,
    .lg10-review-grid,
    .lg10-ready-grid,
    .lg10-pro-performance-grid,
    .lg10-reassurance-grid {
      grid-template-columns: 1fr;
    }

    .lg10-hero {
      padding-top: 22px;
    }

    .lg10-hero-inner {
      min-height: auto;
    }
  }

  @media (max-width: 767px) {
    .lg10-hero,
    .lg10-strip,
    .lg10-ready,
    .lg10-pro-performance,
    .lg10-reassurance,
    .lg10-reviews,
    .lg10-faq {
      padding: 28px 0;
    }

    .lg10-hero h1 {
      font-size: 42px;
    }

    .lg10-sub,
    .lg10-section-intro,
    .lg10-body-copy,
    .lg10-ready-copy ul,
    .lg10-reassurance-head p,
    .lg10-review-card p,
    .lg10-faq-question,
    .lg10-faq-answer p {
      font-size: 17px;
    }

    .lg10-hero-cta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      align-items: stretch;
    }

    .lg10-hero-cta .btn {
      width: 100%;
      min-width: 0;
      min-height: 52px;
      padding: 12px 12px;
      font-size: 15px;
      line-height: 1.15;
      text-align: center;
    }

    .brand img,
    .custom-logo-link img,
    .custom-logo{
      max-height: var(--lge-header-logo-mobile, var(--lge-header-logo, 52px));
    }

    .lg10-stars {
      font-size: 24px;
    }

    .lg10-review-author {
      font-size: 12px;
    }

    .lg10-step-card h3 {
      font-size: 26px;
    }

    .lg10-step-media {
      height: 150px;
    }

    .lg10-mini-trust {
      width: 100%;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 18px;
    }

    .lg10-mini-trust div {
      min-height: 56px;
      padding: 10px 8px;
      border-radius: 12px;
      font-size: 12px;
      line-height: 1.15;
      letter-spacing: .01em;
      overflow-wrap: anywhere;
    }

    .lg10-reassurance-item {
      font-size: 15px;
      padding: 16px 14px;
    }
  }

@media (min-width: 768px) {
  .lg10-mini-trust {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .lg10-mini-trust div {
    font-size: 11px;
    padding-left: 6px;
    padding-right: 6px;
  }
}

