/* ============================================================
   I-nexus Consultants — LMPC LANDING PAGE
   style.css
   ============================================================ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand Colours */
  --ink:   #080d14;
  --ink2:  #0d1520;
  --ink3:  #111d2c;
  --ink4:  #162235;
  --navy:  #0b2c3d;
  --gold:  #cfa36a;
  --goldb: #e8c485;
  --goldd: #a07840;
  --amber: #f0a832;
  --white: #ffffff;
  --chalk: #eef2f5;
  --steel: #8da0b0;
  --mist:  #c8d5df;

  /* Fluid Type Scale */
  --t-nano: clamp(.65rem, 1.6vw, .75rem);
  --t-xs:   clamp(.75rem, 1.9vw, .85rem);
  --t-sm:   clamp(.85rem, 2.2vw, .95rem);
  --t-base: clamp(.9rem,  2.5vw, 1.05rem);
  --t-md:   clamp(1rem,   2.8vw, 1.2rem);
  --t-lg:   clamp(1.15rem,3.2vw, 1.4rem);
  --t-xl:   clamp(1.4rem, 4vw,   1.9rem);
  --t-2xl:  clamp(1.8rem, 5vw,   2.8rem);
  --t-3xl:  clamp(2.4rem, 6.5vw, 4rem);
  --t-hero: clamp(2.8rem, 8.5vw, 6rem);
  --t-mega: clamp(3.2rem, 10vw,  7.5rem);

  /* Fluid Space Scale */
  --s1: clamp(.3rem,  .8vw,  .5rem);
  --s2: clamp(.5rem,  1.5vw, .75rem);
  --s3: clamp(.75rem, 2vw,   1rem);
  --s4: clamp(1rem,   2.5vw, 1.5rem);
  --s5: clamp(1.5rem, 3.5vw, 2.25rem);
  --s6: clamp(2rem,   4.5vw, 3rem);
  --s7: clamp(2.5rem, 5.5vw, 4rem);
  --s8: clamp(3rem,   7vw,   5.5rem);
  --s9: clamp(4rem,   9vw,   7.5rem);

  /* Radius */
  --r1: .375rem;
  --r2: .75rem;
  --r3: 1.25rem;
  --r4: 2rem;

  /* Shadows */
  --sh-sm:   0 2px 10px rgba(0,0,0,.25);
  --sh-md:   0 8px 32px rgba(0,0,0,.35);
  --sh-lg:   0 20px 64px rgba(0,0,0,.5);
  --sh-gold: 0 8px 40px rgba(207,163,106,.3);
  --sh-glow: 0 0 80px rgba(207,163,106,.12);

  /* Easing */
  --ease:   cubic-bezier(.25,.46,.45,.94);
  --bounce: cubic-bezier(.34,1.56,.64,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { /*scroll-behavior: smooth; */ -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Outfit', sans-serif;
  font-size: var(--t-base);
  background: var(--ink);
  color: var(--chalk);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* ─── LAYOUT ─── */
.wrap { width: min(92%, 80rem); margin-inline: auto; }

/* ─── NOISE OVERLAY ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── CANVAS ─── */
#cvs {
  max-width: 100vw;
  max-height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .3;
}

/* ─── SHARED COMPONENTS ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-nano);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: var(--s1) var(--s3);
  border: 1px solid rgba(207,163,106,.3);
  border-radius: 999px;
  background: rgba(207,163,106,.06);
  margin-bottom: var(--s4);
}
.tag-dot {
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .2; }
}

.hdg {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--white);
}
.accent { color: var(--gold); }

.body-p {
  font-size: var(--t-base);
  color: var(--steel);
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-weight: 700;
  border-radius: 999px;
  transition: transform .25s var(--bounce), box-shadow .3s;
  white-space: nowrap;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

.btn-gold {
  background: linear-gradient(135deg, var(--goldd) 0%, var(--gold) 55%, var(--goldb) 100%);
  color: var(--ink);
  font-size: var(--t-sm);
  padding: var(--s3) var(--s6);
  box-shadow: var(--sh-gold);
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 48px rgba(207,163,106,.5);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(207,163,106,.4);
  color: var(--goldb);
  font-size: var(--t-sm);
  padding: var(--s3) var(--s6);
}
.btn-ghost:hover {
  background: rgba(207,163,106,.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ─── */
.rv {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.rv.on { opacity: 1; transform: translateY(0); }

.rv-l {
  opacity: 0;
  transform: translateX(-2rem);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.rv-l.on { opacity: 1; transform: translateX(0); }

.rv-r {
  opacity: 0;
  transform: translateX(2rem);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.rv-r.on { opacity: 1; transform: translateX(0); }

/* ─── NAVBAR ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: var(--s4) 0;
  background: #111d2c;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(207,163,106,.1);
  transition: padding .4s var(--ease);
}
/*.nav.stuck {
  background: rgba(8,13,20,.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: var(--s2) 0;
  border-bottom: 1px solid rgba(207,163,106,.1);
} */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}
.nav-logo-img {
  height: clamp(5rem, 5vw, 2.75rem);
  width: auto;
  display: block;
  filter: brightness(1.3) contrast(1.1);
}

.nav-right { display: flex; align-items: center; gap: var(--s3); flex-shrink: 0; }
.nav-tel {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--mist);
  transition: color .2s;
}
.nav-tel:hover { color: var(--gold); }
.nav-tel svg { width: 1em; height: 1em; flex-shrink: 0; }
#navCta { display: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(11,44,61,.65) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(207,163,106,.04) 0%, transparent 60%),
    linear-gradient(155deg, #0d1520 0%, #080d14 45%, #0a1a28 100%);
}
.hero-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 3;
}
.hero-slash {
  position: absolute;
  top: -10%; bottom: -10%;
  left: 53%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(207,163,106,.3) 40%, rgba(207,163,106,.1) 80%, transparent);
  transform: rotate(6deg) scaleY(1.2);
  transform-origin: top;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(92%, 80rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: center;
  padding: clamp(7rem, 15vw, 10rem) 0 var(--s9);
}
.hero-left { display: flex; flex-direction: column; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
  animation: fadeUp .8s var(--ease) both;
}
.hero-eyebrow-line { width: 2.5rem; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.hero-eyebrow-txt {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-mega);
  line-height: .9;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: var(--s5);
  animation: fadeUp .8s .1s var(--ease) both;
}
.hero-h1 .l2 {
  display: block;
  -webkit-text-stroke: 1.5px var(--gold);
  color: transparent;
}
.hero-h1 .l3 {
  display: block;
  color: var(--goldb);
  font-size: .6em;
  letter-spacing: .1em;
  margin-top: .3em;
}
.hero-desc {
  font-size: var(--t-md);
  color: var(--mist);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: var(--s5);
  animation: fadeUp .8s .2s var(--ease) both;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s6);
  animation: fadeUp .8s .3s var(--ease) both;
}
.chip {
  display: flex;
  align-items: center;
  gap: var(--s1);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(207,163,106,.2);
  border-radius: 999px;
  padding: var(--s1) var(--s3);
  font-size: var(--t-xs);
  color: var(--mist);
  font-weight: 500;
}
.chip svg { width: .85em; height: .85em; color: var(--gold); flex-shrink: 0; }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  animation: fadeUp .8s .4s var(--ease) both;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid rgba(255,255,255,.07);
  animation: fadeUp .8s .5s var(--ease) both;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-xl);
  color: var(--gold);
  letter-spacing: .06em;
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: var(--t-nano);
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(1.8rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── FORM CARD ─── */
#leadForm{
  margin-top: 2rem;
}
.hero-form { animation: fadeUp .8s .15s var(--ease) both; }
.fc {
  background:#ffffff;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(207,163,106,.18);
  border-radius: var(--r3);
  padding: var(--s6);
  box-shadow: var(--sh-lg), var(--sh-glow);
  position: relative;
  overflow: hidden;
}
.fc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--goldb), transparent);
}
.fc::after {
  content: '';
  position: absolute;
  bottom: -4rem; right: -4rem;
  width: 12rem; height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207,163,106,.06) 0%, transparent 70%);
  pointer-events: none;
}
.call-bar {
  display: flex;
  align-items: center;
  gap: var(--s3);
  background: rgba(207,163,106,.07);
  border: 1px solid rgba(207,163,106,.15);
  border-radius: var(--r2);
  padding: var(--s3) var(--s4);
  margin-bottom: var(--s4);
}
.call-bar-ico {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--goldd), var(--gold));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.call-bar-ico svg { width: 1.1rem; height: 1.1rem; color: var(--ink); }
.call-bar strong { display: block; font-size: var(--t-sm); font-weight: 700; color: #000; }
.call-bar span   { font-size: var(--t-nano); color: #3d8ed3 }

.fc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-2xl);
  color: #000;
  letter-spacing: .04em;
  line-height: 1.1;
  margin-bottom: var(--s2);
}
.fc-sub { font-size: var(--t-sm); color: var(--steel); margin-bottom: var(--s5); }
.fc-sub strong { color: var(--gold); }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: var(--s3);
  margin-bottom: var(--s3);
}
.fg { display: flex; flex-direction: column; gap: .35rem; }
.fg label {
  font-size: var(--t-nano);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #000;
}
.fg input,
.fg select {
  background: rgba(255,255,255,.04);
  border: 1px solid blue;
  border-radius: var(--r2);
  padding: var(--s3) var(--s4);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: var(--t-sm);
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}
.fg input::placeholder { color: rgba(255,255,255,.2); }
.fg input:focus,
.fg select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(207,163,106,.06);
  box-shadow: 0 0 0 3px rgba(207,163,106,.1);
}
.fg select option { background: var(--ink3); color: var(--white); }

.form-submit {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: var(--t-md);
  letter-spacing: .04em;
  padding: var(--s4);
  background: linear-gradient(135deg, var(--goldd) 0%, var(--gold) 60%, var(--goldb) 100%);
  color: var(--ink);
  border-radius: var(--r2);
  transition: transform .25s var(--bounce), box-shadow .3s, filter .2s;
  box-shadow: var(--sh-gold);
  margin-top: var(--s2);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 48px rgba(207,163,106,.5);
  filter: brightness(1.05);
}
.form-guar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid rgba(255,255,255,.06);
}
.guar {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: var(--t-nano);
  color: rgba(207,163,106,.7);
  font-weight: 600;
}
.guar svg { width: .9em; height: .9em; flex-shrink: 0; }

/* ─── SECTION BASE ─── */
.sec { padding: var(--s5) 0; position: relative; z-index: 2; }
.sec-head { margin-bottom: var(--s8); }
.sec-head.center { text-align: center; }
.sec-head.center .body-p { margin-inline: auto; max-width: 52ch; }

/* ─── WHY SECTION ─── */
.why-bg { background: var(--ink2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(min(100%, 16rem), 1fr));
  gap: var(--s4);
}
.wc {
  padding: var(--s5);
  border-radius: var(--r3);
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.wc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(207,163,106,.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
}
.wc:hover { transform: translateY(-6px); border-color: rgba(207,163,106,.3); }
.wc:hover::before { opacity: 1; }
.wc-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  color: rgba(207,163,106,.07);
  position: absolute;
  top: var(--s3); right: var(--s4);
  letter-spacing: .05em;
  pointer-events: none;
}
.wc-ico {
  width: 3.25rem; height: 3.25rem;
  border-radius: var(--r2);
  background: linear-gradient(135deg, var(--ink4), var(--navy));
  border: 1px solid rgba(207,163,106,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s4);
  box-shadow: var(--sh-sm);
}
.wc-ico svg { width: 1.4rem; height: 1.4rem; color: var(--gold); }
.wc h3 { font-size: var(--t-md); font-weight: 700; color: var(--white); margin-bottom: var(--s2); line-height: 1.25; }
.wc p  { font-size: var(--t-sm); color: var(--steel); line-height: 1.65; }

/* ─── PROCESS ─── */
.proc-bg { background: var(--ink); }
.proc-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  border: 1px solid rgba(207,163,106,.12);
  border-radius: var(--r3);
  overflow: hidden;
  margin-top: var(--s7);
}
.ps {
  padding: var(--s6) var(--s5);
  border-right: 1px solid rgba(207,163,106,.1);
  position: relative;
  background: rgba(255,255,255,.01);
  transition: background .3s;
}
.ps:last-child { border-right: none; }
.ps:hover { background: rgba(207,163,106,.04); }
.ps-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-xl);
  color: rgba(207,163,106,.22);
  letter-spacing: .08em;
  display: block;
  margin-bottom: var(--s3);
}
.ps-ico {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--goldd), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s3);
  box-shadow: 0 4px 20px rgba(207,163,106,.25);
}
.ps-ico svg { width: 1.3rem; height: 1.3rem; color: var(--ink); }
.ps h3 { font-size: var(--t-lg); font-weight: 700; color: var(--white); margin-bottom: var(--s2); }
.ps p  { font-size: var(--t-sm); color: var(--steel); line-height: 1.6; }
.ps-arr {
  position: absolute;
  top: 50%; right: -1px;
  transform: translateY(-50%);
  width: 1.5rem; height: 1.5rem;
  background: var(--ink);
  border: 1px solid rgba(207,163,106,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.ps-arr svg { width: .7rem; height: .7rem; color: var(--gold); }

/* ─── ABOUT ─── */
.about-bg { background: var(--ink3); }
.about-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: var(--s8);
  align-items: center;
}
.about-vis {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hex-wrap { position: relative; width: min(22rem, 85vw); aspect-ratio: 1; }
.hex {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--ink4) 0%, var(--navy) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  border: 1px solid rgba(207,163,106,.18);
  box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255,255,255,.05);
  animation: morph 8s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: var(--s3);
}
@keyframes morph {
  0%,  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  33%        { border-radius: 70% 30% 50% 50% / 50% 70% 30% 50%; }
  66%        { border-radius: 50% 50% 30% 70% / 70% 50% 50% 30%; }
}
.hex-ico {
  width: 4rem; height: 4rem;
  background: linear-gradient(135deg, var(--goldd), var(--gold));
  border-radius: var(--r3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-gold);
}
.hex-ico svg { width: 2rem; height: 2rem; color: var(--ink); }
.hex-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-3xl);
  color: var(--white);
  letter-spacing: .05em;
  line-height: 1;
}
.hex-label { font-size: var(--t-xs); color: var(--steel); text-transform: uppercase; letter-spacing: .15em; }
.about-badge {
  position: absolute;
  background: var(--ink2);
  border: 1px solid rgba(207,163,106,.2);
  border-radius: var(--r2);
  padding: var(--s2) var(--s3);
  box-shadow: var(--sh-md);
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.about-badge:nth-child(2) { top: 8%; right: 0; }
.about-badge:nth-child(3) { bottom: 12%; left: 0; }
.about-badge span { color: var(--gold); }
.law-box {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  background: rgba(207,163,106,.07);
  border: 1px solid rgba(207,163,106,.18);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r2) var(--r2) 0;
  padding: var(--s3) var(--s4);
  margin-bottom: var(--s5);
}
.law-box svg { width: 1.3rem; height: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.law-box p { font-size: var(--t-sm); color: var(--mist); line-height: 1.5; }
.law-box strong { color: var(--goldb); }

/* ─── BENEFITS ─── */
.ben-bg { background: var(--ink2); }
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(min(100%, 17rem), 1fr));
  gap: var(--s4);
}
.bc {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  padding: var(--s5);
  border-radius: var(--r3);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.bc:hover { transform: translateX(4px); border-color: rgba(207,163,106,.25); background: rgba(207,163,106,.04); }
.bc-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-xl);
  color: rgba(207,163,106,.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.bc-body h3 { font-size: var(--t-md); font-weight: 700; color: var(--white); margin-bottom: var(--s1); }
.bc-body p  { font-size: var(--t-sm); color: var(--steel); line-height: 1.6; }

/* ─── TYPES ─── */
.types-bg { background: var(--ink); }
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: var(--s5);
  margin-top: var(--s7);
}
.tc {
  border-radius: var(--r3);
  overflow: hidden;
  background: var(--ink2);
  border: 1px solid rgba(207,163,106,.1);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.tc:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(207,163,106,.2);
}
.tc-head {
  background: linear-gradient(135deg, var(--ink4) 0%, var(--navy) 100%);
  padding: var(--s4) var(--s5);
  display: flex; align-items: center; gap: var(--s3);
  border-bottom: 1px solid rgba(207,163,106,.12);
}
.tc-ico {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--r1);
  background: rgba(207,163,106,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-ico svg { width: 1.2rem; height: 1.2rem; color: var(--gold); }
.tc-head h3 { font-size: var(--t-md); font-weight: 700; color: var(--white); line-height: 1.25; }
.tc-body { padding: var(--s5); }
.tc-body li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: var(--s2) 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: var(--t-sm);
  color: var(--mist);
  line-height: 1.5;
}
.tc-body li:last-child { border-bottom: none; padding-bottom: 0; }
.tc-body li::before {
  content: '';
  flex-shrink: 0;
  width: .35rem; height: .35rem;
  border-radius: 50%;
  background: var(--gold);
  margin-top: .55rem;
}

/* ─── DOCUMENTS ─── */
.docs-bg { background: var(--ink3); }
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
  gap: var(--s3);
  margin-top: var(--s6);
}
.di {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4);
  border-radius: var(--r2);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(207,163,106,.1);
  transition: all .3s var(--ease);
}
.di:hover { background: rgba(207,163,106,.06); border-color: rgba(207,163,106,.25); transform: translateY(-2px); }
.di-n {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(207,163,106,.1);
  border: 1px solid rgba(207,163,106,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-sm);
  color: var(--gold);
  letter-spacing: .05em;
}
.di-t { font-size: var(--t-sm); color: var(--mist); font-weight: 500; line-height: 1.4; }

/* ─── TESTIMONIALS ─── */
.testi-bg { background: var(--ink2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: var(--s4);
  margin-top: var(--s7);
}
.tcard {
  padding: var(--s5);
  border-radius: var(--r3);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.tcard::before {
  content: '"';
  position: absolute;
  top: -1rem; right: var(--s4);
  font-family: 'Instrument Serif', serif;
  font-size: clamp(5rem, 12vw, 8rem);
  color: rgba(207,163,106,.07);
  line-height: 1;
  pointer-events: none;
}
.tcard:hover { transform: translateY(-4px); border-color: rgba(207,163,106,.2); }
.stars { display: flex; gap: .2rem; margin-bottom: var(--s3); }
.stars svg { width: .95rem; height: .95rem; color: var(--amber); }
.tquote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: var(--t-md);
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: var(--s4);
}
.tperson { display: flex; align-items: center; gap: var(--s3); }
.tav {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.tname { font-weight: 700; color: var(--white); font-size: var(--t-sm); }
.trole { font-size: var(--t-nano); color: var(--steel); }

/* ─── CTA FINAL ─── */
.ctaf {
  background: var(--ink4);
  border-top: 1px solid rgba(207,163,106,.1);
  text-align: center;
  padding: var(--s9) 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.ctaf::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(207,163,106,.08) 0%, transparent 60%);
  pointer-events: none;
}
.big-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-2xl);
  color: var(--gold);
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  margin: var(--s5) 0;
}
.big-phone svg { flex-shrink: 0; }
.cta-btns { display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: center; margin-top: var(--s5); }
.cta-note { font-size: var(--t-xs); color: rgba(255,255,255,.18); margin-top: var(--s5); letter-spacing: .08em; }

/* ─── CONTACT RIGHT NOW STRIP ─── */
.contact-now-strip {
  background: linear-gradient(135deg, var(--ink4) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(207,163,106,.18);
  border-bottom: 1px solid rgba(207,163,106,.18);
  padding: var(--s6) 0;
  position: relative;
  z-index: 2;
}
.contact-now-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(207,163,106,.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-now-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.contact-now-text {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.contact-now-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-now-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-2xl);
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
}
.contact-now-phone {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-xl);
  color: var(--gold);
  letter-spacing: .06em;
  transition: color .2s;
}
.contact-now-phone:hover { color: var(--goldb); }
.contact-now-phone svg { color: var(--gold); }
@media (max-width: 52rem) {
  .contact-now-inner { flex-direction: column; text-align: center; align-items: center; }
  .contact-now-text { align-items: center; }
}

.foot-contact-info { display: flex; flex-direction: column; }
.addr-br { display: none; }

/* ─── FOOTER ─── */
footer {
  background: #050a10;
  border-top: 1px solid rgba(207,163,106,.08);
  padding: var(--s8) 0 var(--s5);
  z-index: 2;
  position: relative;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr; /* Professional spacing for desktop */
  gap: var(--s6);
  margin-bottom: var(--s7);
}
.foot-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-xl);
  color: var(--white);
  letter-spacing: .08em;
  margin-bottom: var(--s3);
}
.foot-desc { font-size: var(--t-sm); color: rgba(255,255,255,.33); line-height: 1.7; margin-bottom: var(--s4); }
.fci {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: var(--t-sm);
  color: rgba(255,255,255,.38);
  line-height: 1.5;
  margin-bottom: var(--s2);
}
.fci svg { width: 1em; height: 1em; color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.fci a { transition: color .2s; }
.fci a:hover { color: var(--gold); }
.foot-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--t-lg);
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: var(--s4);
  display: block; /* Ensures it acts as a header block */
}
.foot-links {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: flex-start; /* Forces links to start at the same left point */
}
.foot-links a { font-size: var(--t-sm); color: rgba(255,255,255,.33); transition: color .2s; }
.foot-links a:hover { color: var(--gold); }
.foot-bot {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: var(--s4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  justify-content: space-between;
  align-items: center;
  font-size: var(--t-xs);
  color: rgba(255,255,255,.18);
}
.foot-bot a:hover { color: var(--gold); }

/* ─── STICKY MOBILE CTA ─── */
.mob {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(8,13,20,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(207,163,106,.15);
  padding: var(--s3) var(--s4);
}
.mob a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  background: linear-gradient(135deg, var(--goldd), var(--gold));
  color: var(--ink);
  font-weight: 800;
  font-size: var(--t-sm);
  padding: var(--s3) var(--s5);
  border-radius: var(--r2);
  width: 100%;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 52rem) {
  .hero-inner { grid-template-columns: 1fr; /*padding-bottom: calc(var(--s9) + 3rem);*/}
  .hero-h1 .l2 { -webkit-text-stroke: 1px var(--gold); }
  .hero-slash { display: none; }
  .hero-h1 { font-size: clamp(3rem, 12vw, 5.5rem); }
  .ps { border-right: none; border-bottom: 1px solid rgba(207,163,106,.1); }
  .ps:last-child { border-bottom: none; }
  .about-badge { display: none; }
  .hero-left {
    padding-top: 2rem;
    text-align: center;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-desc {
    margin-left: 5%;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .call-bar {
    justify-content: center;
  }
  .tag {
    margin-left: 30%;
    margin-top: 2rem;
  }
  .fc-title {
    text-align: center;
  }
  .fc-sub {
    text-align: center;
  }
  .form-guar {
    justify-content: center;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  }
  .hdg {
    text-align: center;
  }
  .body-p {
    text-align: center;
  }
  #get-certified{
    margin-left: 35%;
  }
  .ben-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  }
  .tc-head {
    justify-content: center;
  }
  .tc-body {
    padding-left: 25%;
  }
  #docs-bttn{
    text-align: center;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fci {
    text-align: left;
  }
  .foot-contact-info {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .addr-br { display: inline; }
  .foot-links {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
    padding-left: 0;
  }
  .foot-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  div#ben-tag {
    margin-left: 40%;
  }
  div#lmpc-tag {
    margin-left: 40%;
  }
  div#bis-tag {
    margin-left: 35%;
  }
  .hero-chips {
    justify-content: center;
  }
  #wpc-list{
    padding-left: 35%;
  }
  #get-epr-certified{
    margin-left: 30%; 
  }
  #quick-h{
    padding-right:1rem;
  }
}

@media (max-width: 37.5rem) {
  .mob { display: block; }
  /*.hero-inner { padding-bottom: calc(var(--s9) + 4rem); } */
  .nav-tel span { display: none; }
  .tag {
    margin-left: 15%;
  }
  #get-certified {
    margin-left: 20%;
  }
  #lmpc-tag{
    margin-left: 25% !important;
  }
  #ben-tag{
    margin-left: 32% !important;
  }
  .tc-body {
    padding-left: 15%;
  }
  .hero-chips {
    justify-content: center;
  }
  .nav-logo-img {
    height: clamp(5rem, 5vw, 2.75rem);
  }
  .why-grid {
    text-align: center;
  }
  .ps {
    border-right: none;
    border-bottom: 1px solid rgba(207, 163, 106, .1);
    text-align: center;
  }
  .ps-ico {
    margin-left: 40%;
  }
  .fci {
    text-align: left;
  }
  .foot-links {
    align-items: flex-start;
    padding-left: 0;
    width: fit-content;
  }
  #wpc-list {
    padding-left: 20%;
  }
  #get-epr-certified {
    margin-left: 15%;
  }
  
}

@media (max-width: 25rem) {
  .wrap { width: 94%; }
  .hero-btns, .cta-btns { flex-direction: column; width: 100%; align-items: stretch; }
  .hero-btns .btn, .cta-btns .btn { width: 100%; justify-content: center; }
  .fc { padding: var(--s5) var(--s4); }
  .foot-bot { flex-direction: column; text-align: center; }
}

@media (max-width: 20rem) {
  .wrap { width: 96%; }
  .logo-name { font-size: .95rem; }
  .btn { padding: var(--s3) var(--s4); font-size: .75rem; }
  .fc { padding: var(--s4) var(--s3); }
}
