/* =========================================================
   Lightning Protection page CSS (namespaced: lp-*)
   Safe with your boiler/about/contact styles.
========================================================= */

:root{
  --lp-dark: #0b1220;
  --lp-dark-2: #0f172a;
  --lp-ink: #0b1220;
  --lp-text: #334155;
  --lp-muted: #64748b;
  --lp-white: #ffffff;

  --lp-accent: #22c55e;
  --lp-accent-2: #06b6d4;

  --lp-border: rgba(148, 163, 184, 0.22);
  --lp-border-dark: rgba(255,255,255,0.14);

  --lp-radius-xl: 22px;
  --lp-radius-lg: 18px;
  --lp-radius-md: 14px;

  --lp-shadow-soft: 0 18px 55px rgba(2, 6, 23, 0.35);
  --lp-shadow-light: 0 14px 35px rgba(2, 6, 23, 0.08);

  --lp-container: 1180px;
  --lp-pad-y: clamp(44px, 5.5vh, 78px);
}

/* Keep everything scoped */
.lp-hero, .lp-section { box-sizing: border-box; }
.lp-hero *, .lp-section * { box-sizing: border-box; }

/* Container */
.lp-container{
  width: 100%;
  max-width: var(--lp-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 32px);
}

/* Scroll offset for anchors under fixed header */
#overview, #types, #services, #workflow, #faq { scroll-margin-top: 90px; }

/* =========================================================
   Reveal (LP only) - prevents "faded text" issue
   Only hide if JS adds .lp-js to <html>
========================================================= */
.lp-reveal{ opacity: 1; transform: none; }
html.lp-js .lp-reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
html.lp-js .lp-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HERO
========================================================= */
.lp-hero{
  position: relative;
  padding: clamp(92px, 10vh, 120px) 0 clamp(52px, 7vh, 84px);
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(34, 197, 94, 0.20), transparent 60%),
    radial-gradient(900px 600px at 100% 0%, rgba(6, 182, 212, 0.18), transparent 55%),
    linear-gradient(180deg, var(--lp-dark) 0%, var(--lp-dark-2) 55%, var(--lp-dark) 100%);
  overflow: hidden;
}

/* small bottom soft sheen (inside hero only) */
.lp-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.03));
  pointer-events:none;
}

.lp-hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}

@media (max-width: 980px){
  .lp-hero-grid{ grid-template-columns: 1fr; }
}

/* Left */
.lp-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.lp-kicker-ic{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  background: rgba(34,197,94,0.16);
  color: #d9ffe9;
}

.lp-h1{
  margin: 14px 0 12px;
  color: #f8fafc;
  font-weight: 900;
  line-height: 1.06;
  font-size: clamp(34px, 4.2vw, 58px);
  letter-spacing: -0.02em;
}
.lp-h1 span{
  background: linear-gradient(135deg, #ffffff, rgba(34,197,94,0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-lead{
  margin: 0 0 18px;
  color: rgba(226,232,240,0.88);
  font-size: 15px;
  line-height: 1.8;
  max-width: 62ch;
}

.lp-cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Buttons */
.lp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration:none;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor:pointer;
  white-space: nowrap;
}

.lp-btn-primary{
  color: #0b1220;
  background: linear-gradient(135deg, rgba(34,197,94,1), rgba(6,182,212,0.9));
  box-shadow: 0 16px 40px rgba(34,197,94,0.18);
}
.lp-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(34,197,94,0.24);
}

.lp-btn-ghost{
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}
.lp-btn-ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.10);
}

.lp-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.lp-badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(226,232,240,0.92);
  font-size: 13px;
}

/* Right card */
.lp-hero-card{
  border-radius: var(--lp-radius-xl);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--lp-shadow-soft);
  overflow:hidden;
  backdrop-filter: blur(12px);
}

.lp-hero-media{
  position:relative;
  height: 340px;
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(34,197,94,0.18), transparent 60%),
    radial-gradient(700px 500px at 100% 30%, rgba(6,182,212,0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.lp-hero-media img{
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display:block;
}

.lp-hero-media::after{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2,6,23,0.10), rgba(2,6,23,0.65));
  pointer-events:none;
}

.lp-hero-pill{
  position:absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(2, 6, 23, 0.55);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.lp-hero-card-body{
  padding: 16px 16px 18px;
}

.lp-hero-card-body h3{
  margin: 0 0 6px;
  color: #f8fafc;
  font-size: 18px;
  font-weight: 900;
}

.lp-hero-card-body p{
  margin: 0 0 14px;
  color: rgba(226,232,240,0.86);
  font-size: 13.5px;
  line-height: 1.7;
}

.lp-mini-list{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-mini-list span{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 12.5px;
  font-weight: 750;
}

/* =========================================================
   SECTIONS (base)
========================================================= */
.lp-section{
  padding: var(--lp-pad-y) 0;
  background: var(--lp-white);
  color: var(--lp-ink);
}

.lp-section-alt{
  background: #f6f8fc;
}

.lp-section-dark{
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(34,197,94,0.12), transparent 55%),
    radial-gradient(900px 600px at 100% 20%, rgba(6,182,212,0.10), transparent 55%),
    linear-gradient(180deg, var(--lp-dark-2) 0%, var(--lp-dark) 100%);
  color: #f8fafc;
}

.lp-head{
  display:grid;
  gap: 8px;
  margin-bottom: 18px;
}

.lp-eyebrow{
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(2,6,23,0.55);
}
.lp-section-dark .lp-eyebrow{
  color: rgba(110,231,183,0.95);
}

.lp-h2{
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.lp-text{
  margin: 0;
  color: var(--lp-text);
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 72ch;
}
.lp-text-muted{
  color: rgba(226,232,240,0.78);
}

/* Overview split */
.lp-split{
  display:grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(18px, 4vw, 36px);
  align-items: start;
}
@media (max-width: 980px){
  .lp-split{ grid-template-columns: 1fr; }
}

.lp-check{
  list-style:none;
  padding: 0;
  margin: 14px 0 0;
  display:grid;
  gap: 8px;
}
.lp-check li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
}
.lp-check i{
  margin-top: 3px;
  color: #16a34a;
}

/* Right panel */
.lp-panel{
  background: #0b1220;
  color: #f8fafc;
  border-radius: var(--lp-radius-xl);
  padding: 18px 16px;
  border: 1px solid rgba(148,163,184,0.20);
  box-shadow: var(--lp-shadow-soft);
}
.lp-panel-head h3{
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 900;
}
.lp-panel-head p{
  margin: 0 0 12px;
  color: rgba(226,232,240,0.82);
  font-size: 13px;
  line-height: 1.6;
}
.lp-panel-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
@media (max-width: 480px){
  .lp-panel-grid{ grid-template-columns: 1fr; }
}
.lp-chip{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 750;
}
.lp-panel-cta{ margin-top: 14px; }

/* =========================================================
   Cards grid
========================================================= */
.lp-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
@media (max-width: 1024px){
  .lp-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .lp-grid{ grid-template-columns: 1fr; }
}

.lp-card{
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--lp-shadow-light);
  padding: 16px 16px 14px;
  display:grid;
  gap: 10px;
}

.lp-card--dark{
  background: rgba(255,255,255,0.06);
  border-color: var(--lp-border-dark);
  box-shadow: var(--lp-shadow-soft);
}

.lp-card-top{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.lp-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(34,197,94,0.14);
  color: rgba(209,255,231,0.98);
  flex: 0 0 auto;
}

.lp-tag{
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(2,6,23,0.55);
}
.lp-card--dark .lp-tag{
  color: rgba(226,232,240,0.78);
}

.lp-card h3{
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: inherit;
}
.lp-card p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--lp-muted);
}
.lp-card--dark p{
  color: rgba(226,232,240,0.82);
}

.lp-pills{
  list-style:none;
  padding: 0;
  margin: 6px 0 0;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-pills li{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.25);
  font-size: 12px;
  font-weight: 800;
  color: rgba(2,6,23,0.70);
  background: rgba(2,6,23,0.03);
}
.lp-card--dark .lp-pills li{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
}

/* card media inside dark cards */
.lp-card-media{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.lp-card-media img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display:block;
}

/* =========================================================
   SPD cards
========================================================= */
.lp-grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
@media (max-width: 980px){
  .lp-grid-3{ grid-template-columns: 1fr; }
}

.lp-card-soft{
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.22);
  box-shadow: 0 12px 28px rgba(2,6,23,0.06);
}
.lp-card-soft .lp-tag{ color: rgba(2,6,23,0.55); }
.lp-card-soft p{ color: var(--lp-muted); }

/* =========================================================
   Subhead (Services section)
========================================================= */
.lp-subhead{
  margin-top: 24px;
  display: grid;
  gap: 6px;
}
.lp-h3{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--lp-ink);
}
.lp-text-small{
  font-size: 13.5px;
  color: var(--lp-muted);
  max-width: 80ch;
}

/* =========================================================
   Media grid (device images)
========================================================= */
.lp-media-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 980px){
  .lp-media-grid{ grid-template-columns: 1fr; }
}

.lp-media-card{
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.22);
  border-radius: var(--lp-radius-xl);
  box-shadow: 0 12px 28px rgba(2,6,23,0.06);
  overflow: hidden;
  display:grid;
  grid-template-rows: auto 1fr;
}

.lp-media-img{
  background: #f8fafc;
  border-bottom: 1px solid rgba(148,163,184,0.18);
}
.lp-media-img img{
  width: 100%;
  height: 190px;
  object-fit: contain;
  display:block;
  padding: 14px;
}

.lp-media-body{
  padding: 14px 14px 16px;
  display:grid;
  gap: 8px;
}
.lp-media-body h4{
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: var(--lp-ink);
}
.lp-media-body p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--lp-muted);
}

.lp-bullets{
  margin: 6px 0 0;
  padding-left: 16px;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.6;
}
.lp-bullets li{ margin: 4px 0; }

/* =========================================================
   Monitoring row
========================================================= */
.lp-feature-row{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 980px){
  .lp-feature-row{ grid-template-columns: 1fr; }
}
.lp-feature{
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.22);
  border-radius: var(--lp-radius-xl);
  box-shadow: 0 12px 28px rgba(2,6,23,0.06);
  padding: 16px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.lp-feature-ic{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(6,182,212,0.10);
  color: rgba(2,132,199,1);
  flex: 0 0 auto;
}
.lp-feature h3{
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
}
.lp-feature p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--lp-muted);
}

/* =========================================================
   Workflow steps
========================================================= */
.lp-steps{
  list-style:none;
  padding: 0;
  margin: 18px 0 0;
  display:grid;
  gap: 12px;
}

.lp-step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items:flex-start;
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.22);
  border-radius: var(--lp-radius-xl);
  box-shadow: 0 12px 28px rgba(2,6,23,0.06);
  padding: 14px;
}

.lp-step-no{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 900;
  color: #0b1220;
  background: linear-gradient(135deg, rgba(34,197,94,0.9), rgba(6,182,212,0.85));
}

.lp-step-body h3{
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
}
.lp-step-body p{
  margin: 0;
  color: var(--lp-muted);
  font-size: 13.5px;
  line-height: 1.7;
}

/* =====================================================
   FAQ (NO FADE into About)
========================================================= */
.lp-section-faq{
  background: linear-gradient(180deg, var(--lp-dark-2) 0%, var(--lp-dark) 100%);
  color: #f8fafc;
  padding: var(--lp-pad-y) 0;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08); /* clean edge */
}

.lp-section-faq .lp-eyebrow{ color: rgba(110,231,183,0.95); }
.lp-section-faq .lp-h2{ color: #f8fafc; }
.lp-section-faq .lp-text{ color: rgba(226,232,240,0.78); }

.lp-faq{
  margin-top: 14px;
  display:grid;
  gap: 14px;
}

.lp-qa{
  border-radius: var(--lp-radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  overflow:hidden;
  backdrop-filter: blur(10px);
}

.lp-qa summary{
  cursor:pointer;
  list-style:none;
  padding: 16px 16px;
  font-weight: 900;
  font-size: 16px;
  color: rgba(255,255,255,0.96);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.lp-qa summary::-webkit-details-marker{ display:none; }

.lp-qa summary::after{
  content:"\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0.85;
  transition: transform .2s ease;
}
.lp-qa[open] summary::after{ transform: rotate(180deg); }

.lp-qa p{
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(226,232,240,0.85);
  font-size: 14px;
  line-height: 1.75;
}
/* =========================================================
   TYPES section (pixel-like to screenshot)
========================================================= */

.lp-types{
  padding: var(--lp-pad-y) 0;
  background:
    radial-gradient(1100px 520px at 20% -10%, rgba(34,197,94,0.18), transparent 60%),
    radial-gradient(1000px 520px at 95% 10%, rgba(6,182,212,0.14), transparent 58%),
    linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  color: #f8fafc;
}

.lp-types-head{
  margin-bottom: 18px;
  display: grid;
  gap: 10px;
}

.lp-types-eyebrow{
  margin: 0;
  color: rgba(110,231,183,0.95);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lp-types-title{
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.lp-types-sub{
  margin: 0;
  color: rgba(226,232,240,0.70);
  font-size: 15px;
  line-height: 1.7;
  max-width: 70ch;
}

/* Grid */
.lp-types-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 1024px){
  .lp-types-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .lp-types-grid{ grid-template-columns: 1fr; }
}

/* Card */
.lp-types-card{
  position: relative;
  border-radius: 26px;
  padding: 22px;
  min-height: 520px;                 /* matches tall screenshot */
  display: flex;
  flex-direction: column;
  gap: 14px;

  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 80px rgba(2,6,23,0.55);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.lp-types-card::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(520px 240px at 20% 0%, rgba(34,197,94,0.10), transparent 55%),
    radial-gradient(520px 240px at 100% 10%, rgba(6,182,212,0.08), transparent 55%);
  opacity: 0.9;
}

/* Head row */
.lp-types-cardHead{
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lp-types-ic{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  background: rgba(34,197,94,0.16);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(226,232,240,0.95);
  box-shadow: 0 18px 40px rgba(2,6,23,0.45);
}

.lp-types-kicker{
  margin: 0 0 4px;
  color: rgba(226,232,240,0.65);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-types-h3{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

/* Body text */
.lp-types-body{
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(226,232,240,0.78);
  font-size: 15px;
  line-height: 1.75;
}

/* Media frame like screenshot */
.lp-types-media{
  position: relative;
  z-index: 1;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.lp-types-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.96;
}

.lp-types-mediaLabel{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;

  background: rgba(2,6,23,0.50);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

/* Bottom pills pinned at card bottom */
.lp-types-bottom{
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Horizontal pills */
.lp-types-pill{
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 800;
}

/* Vertical pills (card 1) */
.lp-types-bottom--vertical{
  gap: 14px;
}

.lp-types-vpill{
  width: 92px;
  height: 138px;
  border-radius: 999px;
  padding: 14px 14px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 420px){
  .lp-types-vpill{ width: 84px; height: 128px; }
}
/* =========================================================
   FIX: remove big empty gaps in Types cards + modern media panels
========================================================= */

.lp-tm{
  padding: clamp(56px, 6vh, 86px) 0;
  color: #f8fafc;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(34,197,94,0.16), transparent 60%),
    radial-gradient(900px 520px at 100% 15%, rgba(6,182,212,0.12), transparent 58%),
    linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
}

.lp-tm__head{ margin-bottom: 18px; }
.lp-tm__eyebrow{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 900;
  color: rgba(110,231,183,0.95);
}
.lp-tm__title{
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.lp-tm__sub{
  margin: 12px 0 0;
  color: rgba(226,232,240,0.72);
  font-size: 15px;
  line-height: 1.75;
  max-width: 74ch;
}

.lp-tm__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1024px){
  .lp-tm__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .lp-tm__grid{ grid-template-columns: 1fr; }
}

/* Card */
.lp-tm__card{
  position: relative;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;

  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255,255,255,0.06), rgba(255,255,255,0.03)) padding-box,
    linear-gradient(135deg, rgba(34,197,94,0.35), rgba(6,182,212,0.28), rgba(255,255,255,0.10)) border-box;

  box-shadow: 0 30px 90px rgba(2,6,23,0.62);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.lp-tm__card:hover{
  transform: translateY(-5px);
  box-shadow: 0 36px 110px rgba(2,6,23,0.72);
}

/* top row */
.lp-tm__cardTop{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp-tm__icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 55px rgba(2,6,23,0.55);
  color: rgba(255,255,255,0.92);
}
.lp-tm__kicker{
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: rgba(226,232,240,0.65);
}
.lp-tm__kicker--adv{ color: rgba(110,231,183,0.92); }
.lp-tm__h3{
  margin: 6px 0 0;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 950;
}
.lp-tm__text{
  margin: 0;
  color: rgba(226,232,240,0.78);
  font-size: 15px;
  line-height: 1.75;
}

/* ✅ Media block (used by all cards now) */
.lp-tm__media{
  position: relative;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.lp-tm__media img{
  width: 100%;
  height: 100%;
  display:block;
}
.lp-tm__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(2,6,23,0.10), rgba(2,6,23,0.55));
  pointer-events:none;
}

/* ✅ ghost media for card 1/2 (no empty space) */
.lp-tm__media--ghost{
  background:
    radial-gradient(260px 140px at 18% 20%, rgba(34,197,94,0.14), transparent 65%),
    radial-gradient(260px 140px at 80% 20%, rgba(6,182,212,0.12), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}
.lp-tm__media--ghost::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 24px);
  opacity: 0.25;
  pointer-events:none;
}

/* media label */
.lp-tm__mediaBadge{
  position:absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(2,6,23,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 12.5px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

/* ghost chips inside media */
.lp-tm__ghostGrid{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-tm__ghostGrid span{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-size: 12.5px;
  font-weight: 850;
}

/* best-for row */
.lp-tm__meta{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.lp-tm__metaLabel{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.60);
}
.lp-tm__metaValue{
  font-size: 13px;
  font-weight: 850;
  color: rgba(255,255,255,0.88);
}

/* tags pinned bottom */
.lp-tm__tags{
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-tm__tag{
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Card-1 tag style (chips not tall bubbles = cleaner modern) */
.lp-tm__tags--chips .lp-tm__tag{
  background: rgba(34,197,94,0.10);
  border-color: rgba(34,197,94,0.18);
}

/* ======================= PAST PROJECT EXPERIENCE (lp-pe) ======================= */
.lp-pe {
  padding: clamp(48px, 6vw, 84px) 0;
}

.lp-pe__head {
  margin-bottom: 18px;
}

.lp-pe__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 20, 35, 0.65);
  margin: 0 0 10px;
}

.lp-pe__title {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: #0b1324;
}

.lp-pe__sub {
  max-width: 880px;
  margin: 0;
  color: rgba(10, 20, 35, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

.lp-pe__card {
  margin-top: 26px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(15, 25, 45, 0.08);
  box-shadow: 0 10px 26px rgba(10, 20, 35, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
}

.lp-pe__media {
  position: relative;
  min-height: 320px;
  background: #f3f5f8;
}

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

.lp-pe__body {
  padding: clamp(18px, 2.3vw, 28px);
}

.lp-pe__kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 20, 35, 0.55);
  margin: 0 0 10px;
}

.lp-pe__h3 {
  font-size: clamp(20px, 2vw, 28px);
  margin: 0 0 10px;
  color: #0b1324;
  line-height: 1.25;
}

.lp-pe__text {
  margin: 0 0 18px;
  color: rgba(10, 20, 35, 0.72);
  line-height: 1.7;
}

.lp-pe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.lp-pe__box {
  background: rgba(243, 245, 248, 0.85);
  border: 1px solid rgba(15, 25, 45, 0.08);
  border-radius: 16px;
  padding: 14px 14px;
}

.lp-pe__boxTitle {
  margin: 0 0 8px;
  font-size: 14px;
  color: #0b1324;
}

.lp-pe__boxText {
  margin: 0;
  color: rgba(10, 20, 35, 0.75);
  line-height: 1.6;
}

.lp-pe__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 10px;
}

.lp-pe__list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(10, 20, 35, 0.82);
  line-height: 1.55;
}

.lp-pe__dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: #0f766e;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.lp-pe__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 980px) {
  .lp-pe__card {
    grid-template-columns: 1fr;
  }
  .lp-pe__media {
    min-height: 260px;
  }
  .lp-pe__grid {
    grid-template-columns: 1fr;
  }
}

/* ================= Compact Past Project Card ================= */

.lp-pe {
  padding: 48px 0;   /* reduce vertical spacing */
}

.lp-pe__card {
  margin-top: 18px;
  border-radius: 18px;
  grid-template-columns: 1fr 1fr;  /* equal width */
  max-width: 1000px;               /* prevent full width stretch */
  margin-left: auto;
  margin-right: auto;
}

.lp-pe__media {
  min-height: 240px;   /* reduce image height */
  max-height: 320px;
}

.lp-pe__media img {
  height: 100%;
  object-fit: cover;
}

.lp-pe__body {
  padding: 20px;
}

.lp-pe__h3 {
  font-size: 22px;  /* smaller heading */
}

.lp-pe__text {
  font-size: 14.5px;
  margin-bottom: 14px;
}

.lp-pe__grid {
  gap: 12px;
}

.lp-pe__box {
  padding: 12px;
}

.lp-pe__cta {
  margin-top: 14px;
}

/* ===== lp-pe compact + full-height image fix ===== */

/* Reduce overall section spacing */
.lp-pe{
  padding: 36px 0;
}

/* Make card smaller and ensure both columns stretch equal height */
.lp-pe__card{
  max-width: 980px;              /* overall card size smaller */
  margin: 16px auto 0;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;          /* IMPORTANT: makes columns same height */
}

/* Left media must fill full height */
.lp-pe__media{
  height: 100%;                  /* IMPORTANT */
  min-height: unset;             /* remove old min-height limits */
  display: flex;                 /* IMPORTANT: lets img stretch */
}

/* Image fills full column height */
.lp-pe__media img{
  width: 100%;
  height: 100%;                  /* IMPORTANT */
  object-fit: cover;
  display: block;
}

/* Right side padding smaller */
.lp-pe__body{
  padding: 16px 16px;
}

/* Headings slightly smaller */
.lp-pe__h3{
  font-size: 20px;
  line-height: 1.25;
}

.lp-pe__text{
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Boxes smaller */
.lp-pe__grid{
  gap: 10px;
}

.lp-pe__box{
  padding: 10px 10px;
  border-radius: 14px;
}

/* Reduce text size inside boxes */
.lp-pe__boxTitle{
  font-size: 13px;
  margin-bottom: 6px;
}

.lp-pe__boxText{
  font-size: 13px;
  line-height: 1.5;
}

/* Bullet list inside scope box smaller */
.lp-pe__list{
  gap: 8px;
  margin-top: 6px;
}

.lp-pe__list li{
  font-size: 13px;
  line-height: 1.45;
}

/* Smaller dot */
.lp-pe__dot{
  width: 9px;
  height: 9px;
  margin-top: 5px;
}

/* CTA spacing smaller */
.lp-pe__cta{
  margin-top: 12px;
}

/* Mobile: stack and keep image height reasonable */
@media (max-width: 980px){
  .lp-pe__card{
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .lp-pe__media{
    height: 240px;               /* fixed height when stacked */
  }
}


/* ===== Make left + right same height/width inside lp-pe card ===== */

.lp-pe__card{
  max-width: 1100px;          /* adjust if you want smaller/larger */
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;  /* same width for both sides */
  align-items: stretch;       /* same height for both columns */
  overflow: hidden;
}

/* set a consistent card height on desktop */
@media (min-width: 981px){
  .lp-pe__card{
    min-height: 340px;        /* change to 360/380 if you want */
  }
}

/* Left side fills full card height */
.lp-pe__media{
  height: 100%;
  display: flex;
}

/* Image fills full left area */
.lp-pe__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right side also fills same height */
.lp-pe__body{
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* keep content tidy if it becomes taller */
.lp-pe__grid{
  margin-top: 10px;
}

/* CTA stays at bottom so the right column balances well */
.lp-pe__cta{
  margin-top: auto;
}

/* Mobile stacking */
@media (max-width: 980px){
  .lp-pe__card{
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .lp-pe__media{
    height: 240px;
  }
}

/* =========================
   lp-pe FINAL FIX (collage fills full height)
   ========================= */

/* Increase card height and force equal columns */
@media (min-width: 981px){
  .lp-pe__card{
    max-width: 1180px;
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 420px;          /* increase height here */
    overflow: hidden;
    border-radius: 18px;
  }
}

/* Make BOTH sides stretch */
.lp-pe__media,
.lp-pe__body{
  height: 100%;
  align-self: stretch;
}

/* Left media: no padding, no gaps, fill all height */
.lp-pe__media{
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  display: block;
}

/* IMPORTANT:
   If you have a wrapper for collage like .lp-pe__mediaGrid, force it to fill height */
.lp-pe__mediaGrid{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;                      /* remove gaps between images */
  margin: 0;
}

/* Each image must fill its grid cell */
.lp-pe__mediaGrid img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* If your images are directly under .lp-pe__media (no wrapper), also support that */
.lp-pe__media > img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Right side layout: keep CTA at bottom */
.lp-pe__body{
  display: flex;
  flex-direction: column;
  padding: 18px 18px;
}
.lp-pe__cta{
  margin-top: auto;
}

/* Mobile stacking */
@media (max-width: 980px){
  .lp-pe__card{
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .lp-pe__media{
    height: 280px; /* increase mobile image height */
  }
  .lp-pe__mediaGrid{
    height: 280px;
  }
}
/* =========================
   HARD FIX: make left image/collage touch card bottom
   works even if wrapper class is different
   ========================= */

@media (min-width: 981px){
  .lp-pe__card{
    min-height: 460px !important;     /* increase height */
    align-items: stretch !important;
  }
}

/* Make left column stretch */
.lp-pe__media{
  padding: 0 !important;
  margin: 0 !important;
  height: 100% !important;
  align-self: stretch !important;
  overflow: hidden !important;
  position: relative !important;
  display: block !important;
}

/* FORCE the first child inside media to fill full height */
.lp-pe__media > *{
  position: absolute !important;
  inset: 0 !important;               /* top:0 right:0 bottom:0 left:0 */
  width: 100% !important;
  height: 100% !important;
}

/* If that first child is a grid/collage, make it fill */
.lp-pe__media > *{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 0 !important;
}

/* All images inside fill their cells */
.lp-pe__media img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Remove any inline spacing issues */
.lp-pe__media,
.lp-pe__media *{
  line-height: 0 !important;
}

/* Mobile stacking */
@media (max-width: 980px){
  .lp-pe__media{
    position: relative !important;
    height: 280px !important;
  }
  .lp-pe__media > *{
    position: absolute !important;
    inset: 0 !important;
  }
}

/* Case Study - Image Left, Content Right */
.cs-wrap{
  padding: 28px 16px;
  background: #ffffff;
}

.cs-container{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* image slightly wider */
  gap: 22px;
  align-items: stretch;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 18px 40px rgba(17, 24, 39, .08);
  overflow: hidden;
}

/* Left media */
.cs-media{
  position: relative;
  min-height: 280px;
  background: #f3f5f8;
}

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

/* Right content */
.cs-content{
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-eyebrow{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, .65);
  margin: 0 0 8px;
}

.cs-title{
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #0f172a;
}

.cs-desc{
  margin: 0 0 14px;
  color: rgba(15, 23, 42, .78);
  line-height: 1.6;
  font-size: 15px;
}

.cs-list{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.cs-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(15, 23, 42, .88);
  line-height: 1.5;
  font-size: 14.5px;
}

.cs-tick{
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, .12);
  color: #10b981;
  font-weight: 700;
  margin-top: 1px;
}

/* Button */
.cs-btn{
  margin-top: 6px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #06281a;
  font-weight: 600;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  box-shadow: 0 12px 24px rgba(20, 184, 166, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.cs-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(20, 184, 166, .28);
}

.cs-btn-ico{
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 900px){
  .cs-container{
    grid-template-columns: 1fr;
  }
  .cs-media{
    min-height: 240px;
  }
  .cs-content{
    padding: 18px 18px 22px;
  }
  .cs-title{
    font-size: 24px;
  }
}
.cs-wrap{
  padding: 28px 16px;
  background: #fff;
}

/* Common alignment container for header + box */
.cs-shell{
  max-width: 1180px;
  margin: 0 auto;
}

/* Header now aligns perfectly with the box */
.lp-pe__head{
  margin: 0 0 14px;
  padding: 0;   /* important: no extra left padding */
}

/* IMPORTANT:
   remove max-width/margins from cs-container because cs-shell controls it */
.cs-container{
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;

  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 18px 40px rgba(17, 24, 39, .08);
  overflow: hidden;
}

/* Responsive */
@media (max-width: 900px){
  .cs-container{ grid-template-columns: 1fr; }
}
