/* ==========================================================================
   FRIXON — Homepage
   Fully responsive 1800px → 320px
   ========================================================================== */

.lnd-page *,
.lnd-page *::before,
.lnd-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  margin: 0px;
}

:root {
  --bg-1: #0a3a62;
  --bg-2: #0c4775;
  --bg-3: #0d5183;
  --bg-deep: #062a47;
  --bg-darker: #04223b;
  --accent: #22c55e;
  --accent-2: #16a34a;
  --accent-3: #4ade80;
  --accent-dark: #15803d;
  --red: #dc2626;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --card: #ffffff;
  --card-text: #1a1f2e;
  --card-muted: #6b7280;
  --border: #e5e7eb;
  --line: rgba(255, 255, 255, 0.12);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius: 14px;

  --display: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --script: "Sacramento", cursive;
  --body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.lnd-page {
  font-family: var(--body);
  color: var(--text);
  line-height: 1.6;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-deep) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lnd-page img {
  max-width: 100%;
  display: block;
}
.lnd-page a {
  color: rgb(245, 239, 239);
  text-decoration: none;
  transition: color 0.2s ease;
}
.lnd-page button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}
.lnd-page ul {
  list-style: none;
}

.lnd-container {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 24px;
}
.lnd-site-header a {
  color: #062d5c;
}
/* ---------- Reusable bits ---------- */
.lnd-eyebrow {
  line-height: 27px;
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 30px;
  color: #00da4d;
  margin-bottom: 4px;
}
.lnd-eyebrow.lnd-center {
  text-align: center;
}
.lnd-eyebrow-red {
  color: #ef4444;
}

.lnd-section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 38px);
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 14px;
}
.lnd-section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 44px;
}

.lnd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  white-space: nowrap;
}
.lnd-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.lnd-btn-primary svg {
  stroke: #fff;
}
.lnd-btn-primary .lnd-cta-arrow {
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* PROMO BANNER */
.lnd-promo-banner {
  background: #00da4d;
  color: #fff;
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 50;
}
.lnd-promo-inner b {
  font-weight: 800;
}

/* HEADER */
.lnd-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #062d5c;
  border-bottom: 1px solid var(--line);
  padding-top: 5px;
}
.lnd-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  min-height: 68px;
}
.lnd-logo img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
}
.lnd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lnd-logo-mark {
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.lnd-rating-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.lnd-rating-strip b {
  font-weight: 800;
}
.lnd-rating-strip .lnd-stars {
  color: #fbbf24;
  letter-spacing: 1px;
  font-size: 16px;
}
.lnd-rating-strip .lnd-rating-text {
  color: var(--text-muted);
}

.lnd-quote-cta {
  background: #fff;
  color: var(--bg-deep);
  padding: 10px 8px 10px 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.lnd-quote-cta:hover {
  background: #fff;
  filter: brightness(1);
  transform: translateY(-2px);
}
.lnd-quote-cta svg {
  stroke: #fff;
}
.lnd-quote-cta .lnd-cta-arrow {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.lnd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.lnd-hamburger span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.lnd-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lnd-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.lnd-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.lnd-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image:
    /* linear-gradient(
      135deg,
      rgba(6, 25, 50, 0.75) 0%,
      rgba(6, 25, 50, 0.4) 50%,
      rgba(6, 25, 50, 0.85) 100%
    ), */ url("../images/lnder_5.png");
  background-size: cover;
  background-position: center center;
}
.lnd-hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.lnd-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
  z-index: 1;
  position: relative;
}
.lnd-hero-left {
  max-width: 560px;
}
.lnd-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.12);
  line-height: 27px;
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 18px;
  color: #00da4d;
  margin-bottom: 24px;
}
.lnd-hero-left h1 {
  font-size: clamp(34px, 5.4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.lnd-hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 520px;
}
.lnd-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 32px;
}
.lnd-feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}
.lnd-dot {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.lnd-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}
.lnd-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px;
}
.lnd-hstat {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 18px;
}
.lnd-hstat:first-child {
  border-left: 0;
  padding-left: 0;
}
.lnd-hnum {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.lnd-hnum span {
  color: var(--accent);
}
.lnd-hlbl {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.lnd-hero-right {
  display: flex;
  justify-content: flex-end;
}
.lnd-quote-card {
  position: relative;
  background: #fff;
  color: var(--card-text);
  padding: 36px 32px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}
.lnd-corner-ribbon {
  position: absolute;
  top: 0;
  right: 20px;
  width: 100px;
  height: 120px;
  background: #ff1e1e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  z-index: 9;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transform: none !important;
}
.lnd-corner-ribbon span {
  display: block;
  margin-left: 7px;
  margin-top: -2px;
}
.lnd-corner-ribbon span:first-child {
  margin-top: -10px;
}

.lnd-quote-card .lnd-eyebrow {
  color: var(--accent-2);
  margin-bottom: -2px;
}
.lnd-card-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.lnd-card-sub {
  font-size: 13px;
  color: var(--card-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.lnd-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.lnd-quote-card label {
  display: block;
}
.lnd-quote-card .lnd-full {
  margin-top: 14px;
}
.lnd-lbl {
  display: block;
  font-size: 14px;
  line-height: 19px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #333030;
  padding-bottom: 2px;
}
.lnd-quote-card input,
.lnd-quote-card textarea,
.lnd-quote-card select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border) !important;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  color: var(--card-text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.lnd-quote-card input::placeholder,
.lnd-quote-card textarea::placeholder {
  color: #9ca3af;
}
.lnd-quote-card input:focus,
.lnd-quote-card textarea:focus,
.lnd-quote-card select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.lnd-quote-card textarea {
  resize: vertical;
  min-height: 70px;
}
.lnd-select-wrap {
  position: relative;
}
.lnd-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}
.lnd-select-wrap .lnd-caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--card-muted);
}
.lnd-btn-submit {
  width: 100%;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-2)
  ) !important;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.35) !important;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}
.lnd-btn-submit:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.06) !important;
}
.lnd-form-note {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--card-muted);
}

/* PRODUCTS */
.lnd-products {
  padding: 70px 0;
}
.lnd-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.lnd-product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 18px 24px;
  text-align: center;
  color: #fff;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.lnd-product-card.active {
  background: #00da4d;
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35);
}
.lnd-prod-ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #fff;
  color: var(--bg-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.lnd-product.active .lnd-prod-ic {
  color: var(--accent-2);
}
.lnd-product-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.lnd-product-card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.lnd-product-card.active p {
  color: rgba(255, 255, 255, 0.95);
}

/* HOW IT WORKS */
.lnd-how {
  padding: 60px 0 80px;
}
.lnd-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0 12px;
  margin-top: 28px;
}
.lnd-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}
.lnd-step-circle {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px dashed rgba(34, 197, 94, 0.6);
  display: grid;
  place-items: center;
  color: var(--accent-3);
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.03);
}
.lnd-step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg-1);
}
.lnd-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.lnd-step p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 220px;
}
.lnd-step-arrow {
  width: 90px;
  height: 36px;
  margin-top: -50px;
}

/* WHY US + CTA */
.lnd-why-cta {
  position: relative;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(4, 34, 59, 0.85), rgba(10, 58, 98, 0.78)),
    url("https://images.unsplash.com/photo-1581092335397-9583eb92d232?auto=format&fit=crop&w=1800&q=70")
      center / cover no-repeat;
}
.lnd-why-cta-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  position: relative;
  min-height: 320px;
}
.lnd-why-panel {
  background: linear-gradient(
    135deg,
    var(--accent-3),
    var(--accent),
    var(--accent-2)
  );
  padding: 50px 60px 50px max(24px, calc((100vw - 1280px) / 2 + 24px));
  position: relative;
  clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
}
.lnd-why-content {
  max-width: 600px;
}
.lnd-why-content h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  margin: 4px 0 14px;
  line-height: 1.15;
}
.lnd-why-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  max-width: 520px;
}
.lnd-why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 540px;
}
.lnd-wf {
  text-align: center;
}
.lnd-wf-ic {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
}
.lnd-wf-lbl {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
.lnd-cta-panel {
  padding: 50px 24px 50px 100px;
  display: flex;
  align-items: center;
}
.lnd-cta-content {
  max-width: 460px;
}
.lnd-cta-panel h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}
.lnd-cta-panel > .lnd-cta-content > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.lnd-call-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.lnd-call-ic {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.35);
}
.lnd-call-row small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lnd-call-row .lnd-phones {
  font-size: 18px;
  font-weight: 800;
  margin-top: 2px;
}
.lnd-or {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin: 14px 0;
  position: relative;
  max-width: 200px;
}
.lnd-or::before,
.lnd-or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.lnd-or::before {
  left: -10px;
}
.lnd-or::after {
  right: -10px;
}

footer {
  background-color: #1e426c;
  padding: 80px 0px 30px 0px;
}
footer .tp {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #4b6889;
}
footer .tp ul.frdt {
  display: flex;
  align-items: center;
  gap: 24px;
}
footer .tp ul.frdt > img {
  height: 63px;
  width: 63px;
  min-width: 63px;
  -o-object-fit: contain;
  object-fit: contain;
}
footer .tp ul.frdt b {
  font-size: 30px;
  line-height: 39px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  display: block;
  padding-bottom: 6px;
}
footer .tp ul.frdt span {
  font-size: 17px;
  line-height: 26px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  color: #fff;
}
footer .tp form {
  width: 100%;
  max-width: 643px;
  margin: 0px 121px;
  position: relative;
}
footer .tp form input {
  width: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 60px;
  padding: 22.5px 39px;
  font-size: 16px;
  line-height: 25px;
  color: #222222;
}
footer .tp form button {
  background-color: #000;
  border-radius: 30px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  color: #222222;
  text-transform: uppercase;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding: 13px 41px;
}
footer .tp .lst {
  display: flex;
  align-items: center;
  gap: 21px;
}
footer .tp .lst > b {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #fff;
}
footer .tp .lst .scl_icn {
  display: flex;
  align-items: center;
  gap: 23px;
}
footer .tp .lst .scl_icn li a {
  height: 52px;
  width: 52px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
footer .tp .lst .scl_icn li a:hover {
  background-color: #00da4d;
  border-color: #00da4d;
}
footer.hme {
  padding: 179px 0px 30px 0px;
}
footer .btm {
  padding-top: 40px;
  display: flex;
}
footer .btm .itm {
  width: 35%;
}
footer .btm .itm > b {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 800;
  display: block;
  padding-bottom: 21px;
  color: #fff;
}
footer .btm .itm p {
  font-size: 17px;
  line-height: 29px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
  max-width: 400px;
}
footer .btm .itm .sdrs {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 27px;
}
footer .btm .itm .sdrs > img {
  height: 50px;
  width: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  min-width: 50px;
}
footer .btm .itm .sdrs span {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
  font-weight: 700;
  width: 262px;
}
footer .btm .itm ul li {
  display: block;
}
footer .btm .itm ul li a {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 17px;
  line-height: 29px;
}
footer .btm .itm ul li a:hover {
  color: #00da4d;
}
footer .btm .itm ul li:not(:last-child) {
  padding-bottom: 14px;
}
footer .btm .itm:nth-child(2) {
  width: 15%;
}
footer .btm .itm:nth-child(3) {
  width: 15%;
}
footer .btm .itm:last-child {
  width: 35%;
  padding-left: 128px;
}
footer .btm .itm:last-child ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 9px;
}
footer .btm .itm:last-child ul li b {
  font-size: 17px;
  line-height: 27px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  width: 121px;
}
footer .btm .itm:last-child ul li span {
  font-size: 17px;
  line-height: 26px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #d9d9d9;
  font-weight: 600;
}
footer .btm .itm:last-child ul li img {
  filter: brightness(50);
  width: 142px;
  margin-right: 19px;
}

.cprgt {
  background-color: #35557b;
}
.cprgt .prnt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0px;
}
.cprgt .prnt p {
  display: inline-block;
}
.cprgt .prnt img {
  height: 25px;
  width: 90px;
}
.cprgt .prnt p:first-child {
  font-size: 17px;
  line-height: 25px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
}
.cprgt .prnt p:last-child {
  display: flex;
  align-items: center;
  font-size: 17px;
  line-height: 25px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
  gap: 7px;
}
.cprgt .prnt p:last-child b {
  font-size: 19px;
  line-height: 25px;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}
.mega-footer {
  background: #091628;
  border-top: 1px solid var(--col-divider);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mega-footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mega-footer-right {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  color: #fff;
}
.mega-footer-right svg {
  width: 14px;
  height: 14px;
  fill: var(--green);
}
.mega-footer-right a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.mega-footer-right a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1800px) {
  footer .btm .itm:last-child {
    padding-left: 109px;
  }
  footer .tp form {
    margin: 0px 91px;
  }
}
@media screen and (max-width: 1700px) {
  footer .tp form {
    margin: 0px 49px;
  }
  footer .btm .itm:last-child {
    padding-left: 77px;
  }
  footer .btm .itm:nth-child(3) {
    width: 16%;
  }
}
@media screen and (max-width: 1600px) {
  footer .tp form {
    max-width: 546px;
    margin: 0px 49px;
  }
  footer .btm .itm:last-child {
    padding-left: 32px;
  }
}
@media screen and (max-width: 1500px) {
  footer .tp form {
    max-width: 488px;
    margin: 0px 26px;
  }
  footer .btm .itm:nth-child(2) {
    width: 13%;
  }
  footer .btm .itm:nth-child(3) {
    width: 17%;
  }
  footer .btm .itm:last-child {
    padding-left: 14px;
  }
  footer .tp form button {
    right: 7px;
    top: 6px;
    padding: 13px 41px;
  }
  footer .tp form input {
    padding: 18.5px 39px;
  }
}
@media screen and (max-width: 1400px) {
  footer .tp form {
    max-width: 415px;
    margin: 0px 25px;
  }
  footer .tp .lst {
    gap: 18px;
    margin-left: 17px;
  }
  footer .tp .lst .scl_icn {
    gap: 7px;
  }
  footer .btm .itm:nth-child(2) {
    width: 11%;
  }
  footer .btm .itm:last-child {
    padding-left: 5px;
    width: 37%;
  }
  footer .tp {
    justify-content: space-between;
  }

  @media screen and (min-width: 1301px) {
    footer .btm .itm > ul {
      display: block !important;
    }
  }
  @media screen and (max-width: 1300px) {
    footer .tp {
      justify-content: center;
      flex-wrap: wrap;
    }
    footer .tp {
      justify-content: center;
      flex-wrap: wrap;
      row-gap: 33px;
    }
    footer .tp ul.frdt {
      width: 49%;
    }
    footer .tp form {
      margin: unset;
      max-width: unset;
      width: 49%;
    }
    footer .btm .itm {
      width: 100% !important;
      padding-left: 0px !important;
    }
    footer .btm {
      flex-direction: column;
    }
    footer .btm .itm > b {
      font-size: 20px;
      line-height: 28px;
      display: block;
      position: relative;
      width: 100%;
      font-weight: 700;
      padding-bottom: 0px;
      padding-left: 0px !important;
    }
    footer .btm .itm > b:not(:last-child) {
      padding-bottom: 18px;
      margin-bottom: 18px;
      border-bottom: 1px solid rgba(0, 217, 77, 0.3019607843);
    }
    footer .btm .itm > ul {
      display: none;
      margin-bottom: 20px;
    }
    footer .tp {
      border-bottom: unset;
    }
    footer .btm .itm > b::before {
      position: absolute;
      content: "";
      background-color: #fff;
      width: 18px;
      height: 3px;
      border-radius: 3px;
      transform: translateX(-50%);
      top: 33%;
      right: 2px;
    }
    footer .btm .itm > b::after {
      position: absolute;
      content: "";
      background-color: #fff;
      width: 18px;
      height: 3px;
      border-radius: 3px;
      transform: translateX(-50%) rotate(90deg);
      top: 33%;
      right: 2px;
    }
    footer .btm .itm .sdrs span {
      font-size: 16px;
      width: 204px;
    }
    footer .btm .itm p {
      font-size: 17px;
      line-height: 26px;
      max-width: 80%;
    }
    footer .btm .itm .sdrs {
      margin-top: 5px;
    }
    footer .btm .itm.tg > b::before {
      transform: translateX(-50%) rotate(-43deg);
    }
    footer .btm .itm.tg > b::after {
      transform: translateX(-50%) rotate(47deg);
    }
  }
  @media screen and (max-width: 767px) {
    .lnd-logo img {
      max-width: 170px;
    }

    footer.hme {
      padding: 157px 0px 30px 0px;
    }
    .cprgt .prnt img {
      height: 19px;
      width: 83px;
    }
    footer .tp ul.frdt {
      width: 100%;
    }
    footer .tp form {
      width: 100%;
    }
    footer .tp ul.frdt {
      width: 100%;
    }
    footer .tp form {
      width: 100%;
    }
  }
  @media screen and (max-width: 550px) {
    footer .tp ul.frdt b {
      font-size: 26px;
      line-height: 33px;
    }
    footer .tp {
      row-gap: 25px;
    }
    footer .btm .itm:last-child ul li b {
      font-size: 15px;
      line-height: 23px;
      width: 85px;
    }
    footer .btm .itm:last-child ul li img {
      width: 126px;
    }
    footer .btm .itm:last-child ul li span {
      font-size: 16px;
      line-height: 25px;
    }
    footer .btm .itm > b {
      font-size: 18px;
      line-height: 24px;
    }
    footer .btm {
      padding-top: 22px;
    }
  }
  @media screen and (max-width: 450px) {
    footer .tp ul.frdt > img {
      height: 57px;
      width: 51px;
      min-width: 51px;
    }
    footer .tp ul.frdt span {
      font-size: 15px;
      line-height: 21px;
    }
    footer.hme {
      padding: 142px 0px 30px 0px;
    }
    footer .tp form input {
      padding: 13.5px 39px;
    }
    footer .tp form button {
      right: 7px;
      top: 6px;
      padding: 8px 41px;
      font-size: 14px;
      line-height: 24px;
    }
    .cprgt .prnt p:last-child {
      font-size: 14px;
      line-height: 24px;
      gap: 5px;
      flex-wrap: wrap;
    }
    .cprgt .prnt img {
      height: 20px;
      width: 76px;
    }
    .cprgt .prnt p:first-child {
      font-size: 13px;
      line-height: 21px;
    }
    .cprgt .prnt p:last-child b {
      font-size: 16px;
      line-height: 23px;
      font-weight: 600;
    }
    footer .btm .itm > b:not(:last-child) {
      padding-bottom: 16px;
      margin-bottom: 16px;
      border-bottom: 1px solid rgba(0, 217, 77, 0.3019607843);
    }
    footer .btm .itm > b {
      font-size: 16px;
      line-height: 21px;
      font-weight: 500;
    }
    footer .btm .itm > b::before {
      top: 27%;
    }
    footer .btm .itm > b::after {
      top: 27%;
    }
    footer .tp form input {
      padding: 13.5px 39px 13.5px 25px;
    }
    footer .btm .itm p {
      font-size: 15px;
      line-height: 25px;
      max-width: 100%;
    }
    footer .btm .itm .sdrs > img {
      height: 43px;
      width: 43px;
      min-width: 43px;
    }
    footer .btm .itm ul li a {
      font-size: 16px;
      line-height: 24px;
    }
    footer .btm .itm:last-child ul li b {
      font-size: 13px;
      line-height: 17px;
      width: 76px;
    }
    footer .btm .itm:last-child ul li img {
      width: 86px;
      margin-right: 8px;
    }
    footer .btm .itm:last-child ul li span {
      font-size: 14px;
      line-height: 22px;
    }
    footer.hme {
      padding: 142px 0px 19px 0px;
    }
    footer .tp .lst .scl_icn li a {
      height: 45px;
      width: 45px;
    }
    footer .tp .lst .scl_icn li a img {
      height: 19px;
    }
  }
  /* RESPONSIVE */
  @media (min-width: 1800px) {
    .lnd-container {
      max-width: 1500px;
    }
    .lnd-hero {
      padding: 100px 0 130px;
    }
    .lnd-products,
    .lnd-how,
    .lnd-why-cta {
      padding: 100px 0;
    }
    .lnd-why-cta {
      padding: 0;
    }
  }
  @media (max-width: 1199px) {
    .lnd-hero-left h1 {
      font-size: 44px;
    }
    .lnd-product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .lnd-step-arrow {
      width: 70px;
    }
    .lnd-why-features {
      gap: 14px;
    }
  }
  @media (max-width: 991px) {
    .lnd-nav-wrap {
      min-height: 60px;
      gap: 12px;
    }
    .lnd-rating-strip .lnd-rating-text {
      display: none;
    }
    .lnd-rating-strip {
      font-size: 13px;
    }
    .lnd-hero {
      padding: 50px 0 60px;
    }
    .lnd-hero-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .lnd-hero-right {
      justify-content: center;
    }
    .lnd-hero-stats {
      gap: 18px;
    }
    .lnd-hnum {
      font-size: 26px;
    }
    .lnd-steps {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 50px 30px;
    }
    .lnd-step-arrow {
      display: none;
    }
    .lnd-why-cta-inner {
      grid-template-columns: 1fr;
    }
    .lnd-why-panel {
      clip-path: none;
      padding: 50px 24px;
    }
    .lnd-cta-panel {
      padding: 50px 24px;
    }
    .lnd-why-content,
    .lnd-cta-content {
      max-width: 720px;
      margin: 0 auto;
    }
    .lnd-product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 767px) {
    .lnd-container {
      padding: 0 18px;
    }
    .lnd-promo-banner {
      font-size: 12px;
      padding: 7px 0;
    }
    .lnd-nav-wrap {
      padding: 12px 18px;
      flex-wrap: wrap;
    }
    .lnd-logo-mark {
      width: 32px;
      height: 32px;
    }
    .lnd-rating-strip {
      order: 3;
      width: 100%;
      justify-content: center;
      padding: 8px 0 0;
      border-top: 1px solid var(--line);
      margin-top: 4px;
    }
    .lnd-quote-cta {
      padding: 9px 6px 9px 16px;
      font-size: 11px;
    }
    .lnd-quote-cta .lnd-cta-arrow {
      width: 22px;
      height: 22px;
    }
    .lnd-hero-left h1 {
      font-size: 36px;
    }
    .lnd-pill-badge {
      font-size: 16px;
    }
    .lnd-hero-stats {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .lnd-hstat {
      border-left: 0;
      padding-left: 0;
    }
    .lnd-quote-card {
      padding: 28px 22px 24px;
    }
    .lnd-corner-ribbon {
      width: 78px;
      height: 78px;
    }
    .lnd-card-title {
      font-size: 24px;
    }
    .lnd-product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .lnd-why-features {
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .lnd-wf-ic {
      width: 50px;
      height: 50px;
    }
    .lnd-wf-lbl {
      font-size: 12px;
    }
  }
  @media (max-width: 575px) {
    .lnd-hero-left h1 {
      font-size: 32px;
      line-height: 1.1;
    }
    .lnd-hero-sub {
      font-size: 14px;
    }
    .lnd-badge-row {
      gap: 8px 14px;
    }
    .lnd-feat {
      font-size: 12px;
    }
    .lnd-form-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .lnd-product-grid {
      grid-template-columns: 1fr;
    }
    .lnd-steps {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .lnd-why-features {
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      max-width: 320px;
      margin: 0 auto;
    }
    .lnd-call-row .lnd-phones {
      font-size: 16px;
    }
    .lnd-section-title {
      margin-bottom: 10px;
    }
    .lnd-section-sub {
      margin-bottom: 30px;
      font-size: 14px;
    }
  }
  @media (max-width: 380px) {
    .lnd-container {
      padding: 0 14px;
    }
    .lnd-promo-banner {
      font-size: 11px;
    }
    .lnd-promo-inner span {
      display: inline-block;
      padding: 0 4px;
    }
    .lnd-hero-left h1 {
      font-size: 28px;
    }
    .lnd-nav-wrap {
      padding: 10px 14px;
    }
    .lnd-quote-cta {
      padding: 8px 5px 8px 12px;
      font-size: 10px;
      letter-spacing: 0.5px;
    }
    .lnd-quote-cta .lnd-cta-arrow {
      width: 20px;
      height: 20px;
    }
    .lnd-btn-primary {
      padding: 12px 18px;
      font-size: 12px;
    }
    .lnd-step-circle {
      width: 80px;
      height: 80px;
    }
    .lnd-hnum {
      font-size: 22px;
    }
    .lnd-hlbl {
      font-size: 11px;
    }
    .lnd-corner-ribbon {
      width: 68px;
      height: 68px;
      font-size: 10px;
    }
    .lnd-quote-card {
      padding: 24px 18px 20px;
    }
  }
  @media (max-width: 320px) {
    .lnd-container {
      padding: 0 12px;
    }
    .lnd-hero-left h1 {
      font-size: 24px;
    }
    .lnd-section-title {
      font-size: 20px;
    }
    .lnd-hero-stats {
      gap: 12px;
    }
    .lnd-hnum {
      font-size: 20px;
    }
    .lnd-feat {
      font-size: 11px;
    }
    .lnd-product-card {
      padding: 22px 14px 20px;
    }
    .lnd-wf-lbl {
      font-size: 11px;
    }
  }

  .lnd-hidden {
    display: none !important;
  }
  .lnd-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.7s ease,
      transform 0.7s ease;
  }
  .lnd-reveal.lnd-show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero bg */
  .lnd-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background-image:
      linear-gradient(
        135deg,
        rgba(6, 25, 50, 0.75) 0%,
        rgba(6, 25, 50, 0.4) 50%,
        rgba(6, 25, 50, 0.85) 100%
      ),
      url("../images/LND_BG.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  @media screen and (max-width: 991px) {
    .lnd-hero-bg {
      background-position: center center;
    }
  }
  @media screen and (max-width: 767px) {
    .lnd-hero-bg {
      background-image:
        linear-gradient(
          180deg,
          rgba(6, 25, 50, 0.65) 0%,
          rgba(6, 25, 50, 0.45) 40%,
          rgba(6, 25, 50, 0.85) 100%
        ),
        url("../images/LND_BG.jpg");
      background-position: center top;
      background-attachment: scroll;
    }
  }
  @media screen and (max-width: 380px) {
    .lnd-hero-bg {
      background-position: 60% top;
    }
  }
  @media screen and (max-width: 480px) {
    .lnd-logo img {
      max-width: 108px;
    }
  }
  @media screen and (max-width: 880px) {
    .cprgt .prnt {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0px;
      flex-direction: column;
      gap: 7px;
    }
  }
  /* ═══════════════════════════════════════════════════════════
   LANDING PAGE BUGFIXES
   ═══════════════════════════════════════════════════════════ */

  /* ── Bug 1: "GET FREE QUOTE" button text was invisible ── */
  .btn-primary.quote-cta,
  .site-header .quote-cta {
    color: #062a47 !important;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .btn-primary.quote-cta .cta-arrow svg {
    stroke: #fff !important;
  }
}
/* ── Bug 2: Red corner ribbon clipped/unreadable ── */
.quote-card {
  overflow: hidden;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
