@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700;800&display=swap');

/* LoanPeCharcha Customer UI System
   Load only on selected customer-facing pages.
   All common styles are scoped under .lpc-customer-page.
*/

/* =========================================================
   BASE
========================================================= */

.lpc-customer-page,
.lpc-customer-page *,
.lpc-customer-page *::before,
.lpc-customer-page *::after{
  box-sizing:border-box;
}

.lpc-customer-page{
  --lpc-green:#16a34a;
  --lpc-green-dark:#15803d;
  --lpc-green-soft:#ecfdf5;

  --lpc-blue:#2563eb;
  --lpc-blue-soft:#eff6ff;

  --lpc-navy:#0f172a;
  --lpc-text:#1e293b;
  --lpc-muted:#64748b;
  --lpc-soft:#f8fafc;
  --lpc-line:#e2e8f0;
  --lpc-card:#ffffff;

  --lpc-warning:#f59e0b;
  --lpc-danger:#dc2626;

  --lpc-radius-sm:10px;
  --lpc-radius:14px;
  --lpc-radius-lg:18px;

  --lpc-shadow-sm:0 2px 10px rgba(15,23,42,.06);
  --lpc-shadow:0 12px 32px rgba(15,23,42,.08);

  --lpc-font-heading:'Bricolage Grotesque',system-ui,sans-serif;
  --lpc-font-body:'DM Sans',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;

  /* Standard customer page font scale - desktop */
  --lpc-hero-title:clamp(38px,3vw,52px);
  --lpc-hero-subtitle:15px;
  --lpc-section-title:clamp(28px,2.2vw,38px);
  --lpc-card-title:16px;
  --lpc-body-text:14px;
  --lpc-small-text:12px;
  --lpc-button-text:13px;

  background:var(--lpc-soft);
  color:var(--lpc-text);
  font-family:var(--lpc-font-body);
  font-size:var(--lpc-body-text);
  line-height:1.5;
  min-height:calc(100vh - 72px);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.lpc-customer-page img{
  max-width:100%;
  height:auto;
}

.lpc-customer-page a{
  text-decoration:none;
}

/* =========================================================
   STANDARD TEXT SCALE
========================================================= */

.lpc-customer-page .lpc-hero-title,
.lpc-customer-page .hero-h1,
.lpc-customer-page .cp-title{
  font-family:var(--lpc-font-heading);
  font-size:var(--lpc-hero-title);
  line-height:1.06;
  letter-spacing:-.5px;
  font-weight:800;
}

.lpc-customer-page .lpc-hero-subtitle,
.lpc-customer-page .hero-sub,
.lpc-customer-page .cp-sub{
  font-family:var(--lpc-font-body);
  font-size:var(--lpc-hero-subtitle);
  line-height:1.6;
  font-weight:400;
}

.lpc-customer-page .lpc-section-title,
.lpc-customer-page .cp-head h2{
  font-family:var(--lpc-font-heading);
  font-size:var(--lpc-section-title);
  line-height:1.12;
  letter-spacing:-.35px;
  font-weight:800;
}

.lpc-customer-page .lpc-card-title,
.lpc-customer-page .cp-desc{
  font-family:var(--lpc-font-body);
  font-size:var(--lpc-card-title);
  line-height:1.45;
  font-weight:700;
}

.lpc-customer-page .lpc-body-text,
.lpc-customer-page p,
.lpc-customer-page .cp-head p,
.lpc-customer-page .cp-points li{
  font-family:var(--lpc-font-body);
  font-size:var(--lpc-body-text);
  line-height:1.55;
}

.lpc-customer-page .lpc-small-text,
.lpc-customer-page .cp-stag,
.lpc-customer-page .cp-rate-label,
.lpc-customer-page .cp-badge,
.lpc-customer-page .lpc-chip{
  font-family:var(--lpc-font-body);
  font-size:var(--lpc-small-text);
}

.lpc-customer-page .lpc-btn,
.lpc-customer-page .cp-btn,
.lpc-customer-page .cp-link,
.lpc-customer-page .btn-amber,
.lpc-customer-page .btn-glass{
  font-family:var(--lpc-font-body);
  font-size:var(--lpc-button-text);
}

/* =========================================================
   COMMON LAYOUT
========================================================= */

.lpc-customer-page .lpc-container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:16px;
}

.lpc-customer-page .lpc-section{
  margin:0 0 16px;
}

.lpc-customer-page .lpc-card{
  background:var(--lpc-card);
  border:1px solid var(--lpc-line);
  border-radius:var(--lpc-radius-lg);
  box-shadow:var(--lpc-shadow-sm);
  padding:16px;
}

.lpc-customer-page .lpc-card + .lpc-card{
  margin-top:14px;
}

.lpc-customer-page .lpc-title{
  margin:0;
  color:var(--lpc-navy);
  font-family:var(--lpc-font-heading);
  font-size:24px;
  font-weight:800;
  line-height:1.18;
  letter-spacing:-.02em;
}

.lpc-customer-page .lpc-heading{
  margin:0;
  color:var(--lpc-navy);
  font-family:var(--lpc-font-heading);
  font-size:18px;
  font-weight:800;
  line-height:1.25;
}

.lpc-customer-page .lpc-subtitle,
.lpc-customer-page .lpc-muted{
  color:var(--lpc-muted);
  font-size:14px;
  line-height:1.55;
}

.lpc-customer-page .lpc-subtitle{
  margin:6px 0 0;
}

.lpc-customer-page .lpc-row{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.lpc-customer-page .lpc-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:14px;
}

.lpc-customer-page .lpc-col-12{grid-column:span 12;}
.lpc-customer-page .lpc-col-8{grid-column:span 8;}
.lpc-customer-page .lpc-col-6{grid-column:span 6;}
.lpc-customer-page .lpc-col-4{grid-column:span 4;}
.lpc-customer-page .lpc-col-3{grid-column:span 3;}

/* =========================================================
   FORMS
========================================================= */

.lpc-customer-page .lpc-label{
  display:block;
  margin:0 0 6px;
  color:var(--lpc-navy);
  font-size:13px;
  font-weight:700;
}

.lpc-customer-page .lpc-field,
.lpc-customer-page input.lpc-field,
.lpc-customer-page select.lpc-field,
.lpc-customer-page textarea.lpc-field{
  width:100%;
  min-height:44px;
  border:1px solid var(--lpc-line);
  border-radius:12px;
  background:#fff;
  color:var(--lpc-navy);
  font-size:14px;
  font-weight:500;
  padding:10px 12px;
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease;
}

.lpc-customer-page textarea.lpc-field{
  min-height:96px;
  resize:vertical;
}

.lpc-customer-page .lpc-field:focus{
  border-color:rgba(22,163,74,.65);
  box-shadow:0 0 0 4px rgba(22,163,74,.10);
}

/* =========================================================
   BUTTONS
========================================================= */

.lpc-customer-page .lpc-btn{
  min-height:44px;
  border-radius:12px;
  padding:10px 16px;
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  text-decoration:none;
  transition:background .15s ease,border-color .15s ease,color .15s ease,transform .08s ease,box-shadow .15s ease;
}

.lpc-customer-page .lpc-btn:active{
  transform:translateY(1px);
}

.lpc-customer-page .lpc-btn-primary{
  background:var(--lpc-green);
  border-color:var(--lpc-green);
  color:#fff;
  box-shadow:0 8px 18px rgba(22,163,74,.18);
}

.lpc-customer-page .lpc-btn-primary:hover{
  background:var(--lpc-green-dark);
  border-color:var(--lpc-green-dark);
  color:#fff;
}

.lpc-customer-page .lpc-btn-outline{
  background:#fff;
  border-color:rgba(22,163,74,.42);
  color:var(--lpc-green-dark);
}

.lpc-customer-page .lpc-btn-outline:hover{
  background:var(--lpc-green-soft);
  color:var(--lpc-green-dark);
}

.lpc-customer-page .lpc-btn-soft{
  background:var(--lpc-blue-soft);
  border-color:rgba(37,99,235,.14);
  color:var(--lpc-blue);
}

/* =========================================================
   CHIPS
========================================================= */

.lpc-customer-page .lpc-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:30px;
  border-radius:999px;
  border:1px solid var(--lpc-line);
  background:#fff;
  color:var(--lpc-text);
  padding:6px 10px;
  font-weight:800;
}

.lpc-customer-page .lpc-chip-green{
  background:var(--lpc-green-soft);
  border-color:rgba(22,163,74,.20);
  color:var(--lpc-green-dark);
}

.lpc-customer-page .lpc-chip-blue{
  background:var(--lpc-blue-soft);
  border-color:rgba(37,99,235,.18);
  color:var(--lpc-blue);
}

/* =========================================================
   TABLES
========================================================= */

.lpc-customer-page .lpc-table-wrap{
  width:100%;
  overflow-x:auto;
  border:1px solid var(--lpc-line);
  border-radius:var(--lpc-radius);
  background:#fff;
}

.lpc-customer-page .lpc-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  font-size:13px;
}

.lpc-customer-page .lpc-table th,
.lpc-customer-page .lpc-table td{
  padding:11px 12px;
  border-bottom:1px solid rgba(226,232,240,.75);
  text-align:left;
  vertical-align:middle;
}

.lpc-customer-page .lpc-table th{
  background:#f8fafc;
  color:var(--lpc-muted);
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

.lpc-customer-page .lpc-table tr:last-child td{
  border-bottom:0;
}

/* =========================================================
   SUMMARY CARDS
========================================================= */

.lpc-customer-page .lpc-summary-card{
  border:1px solid var(--lpc-line);
  border-radius:var(--lpc-radius);
  background:#fff;
  padding:12px;
  box-shadow:var(--lpc-shadow-sm);
}

.lpc-customer-page .lpc-kv{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px 12px;
  align-items:center;
}

.lpc-customer-page .lpc-kv .k{
  color:var(--lpc-muted);
  font-size:12px;
  font-weight:700;
}

.lpc-customer-page .lpc-kv .v{
  color:var(--lpc-navy);
  font-size:13px;
  font-weight:800;
  text-align:right;
}

/* =========================================================
   MOBILE BOTTOM NAV
========================================================= */

.lpc-customer-page.has-mobile-bottom-nav{
  padding-bottom:78px;
}

.lpc-customer-page .lpc-mobile-bottom-nav{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1030;
  display:none;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  background:rgba(255,255,255,.98);
  border-top:1px solid var(--lpc-line);
  box-shadow:0 -8px 24px rgba(15,23,42,.10);
  padding:6px 4px calc(6px + env(safe-area-inset-bottom));
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.lpc-customer-page .lpc-mobile-bottom-nav a{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  border-radius:10px;
  padding:7px 2px;
  color:var(--lpc-muted);
  font-size:10px;
  font-weight:800;
  line-height:1.1;
}

.lpc-customer-page .lpc-mobile-bottom-nav i{
  font-size:16px;
  line-height:1;
}

.lpc-customer-page .lpc-mobile-bottom-nav a.active,
.lpc-customer-page .lpc-mobile-bottom-nav a:hover{
  color:var(--lpc-green-dark);
  background:var(--lpc-green-soft);
}

.lpc-customer-page .lpc-desktop-only{
  display:block;
}

.lpc-customer-page .lpc-mobile-only{
  display:none;
}

/* =========================================================
   SHARED CUSTOMER HEADER
   Applies only when a customer page exists on the page.
   This keeps old/admin pages safer.
========================================================= */

body:has(.lpc-customer-page) #header.header-lpc,
body:has(.lpc-customer-page) .header-lpc{
  width:100% !important;
  height:auto !important;
  min-height:64px !important;
  background:#fff !important;
  border-bottom:1px solid #e5e7eb !important;
  box-shadow:0 1px 0 rgba(15,23,42,.04) !important;
  font-family:'DM Sans',system-ui,sans-serif !important;
}

body:has(.lpc-customer-page) #header.header-lpc .container,
body:has(.lpc-customer-page) #header.header-lpc .container-fluid,
body:has(.lpc-customer-page) .header-lpc .container,
body:has(.lpc-customer-page) .header-lpc .container-fluid{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding-left:16px !important;
  padding-right:16px !important;
}

body:has(.lpc-customer-page) #header.header-lpc .navbar,
body:has(.lpc-customer-page) .header-lpc .navbar{
  min-height:64px !important;
  padding:7px 0 !important;
  font-family:'DM Sans',system-ui,sans-serif !important;
}

body:has(.lpc-customer-page) #header.header-lpc .navbar-brand,
body:has(.lpc-customer-page) .header-lpc .navbar-brand{
  padding:0 !important;
  margin-right:24px !important;
}

body:has(.lpc-customer-page) #header.header-lpc .navbar-brand img,
body:has(.lpc-customer-page) .header-lpc .navbar-brand img{
  height:42px !important;
  width:auto !important;
  display:block !important;
}

body:has(.lpc-customer-page) #header.header-lpc .navbar-nav,
body:has(.lpc-customer-page) .header-lpc .navbar-nav{
  display:flex !important;
  align-items:center !important;
  gap:18px !important;
  margin-left:auto !important;
}

body:has(.lpc-customer-page) #header.header-lpc .nav-item,
body:has(.lpc-customer-page) .header-lpc .nav-item{
  margin:0 !important;
}

body:has(.lpc-customer-page) #header.header-lpc .nav-link,
body:has(.lpc-customer-page) .header-lpc .nav-link{
  font-family:'DM Sans',system-ui,sans-serif !important;
  font-size:14px !important;
  font-weight:700 !important;
  line-height:1.2 !important;
  color:#2f3341 !important;
  padding:10px 0 !important;
  letter-spacing:-.01em !important;
}

body:has(.lpc-customer-page) #header.header-lpc .nav-link:hover,
body:has(.lpc-customer-page) .header-lpc .nav-link:hover,
body:has(.lpc-customer-page) #header.header-lpc .nav-item.active .nav-link,
body:has(.lpc-customer-page) .header-lpc .nav-item.active .nav-link{
  color:#2563eb !important;
}

body:has(.lpc-customer-page) #header.header-lpc .btn,
body:has(.lpc-customer-page) .header-lpc .btn{
  height:38px !important;
  min-height:38px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:10px !important;
  padding:8px 16px !important;
  font-family:'DM Sans',system-ui,sans-serif !important;
  font-size:14px !important;
  font-weight:800 !important;
  line-height:1 !important;
  box-shadow:none !important;
  white-space:nowrap !important;
  text-transform:none !important;
}

body:has(.lpc-customer-page) #header.header-lpc .btn-outline-primary,
body:has(.lpc-customer-page) .header-lpc .btn-outline-primary{
  border:1px solid #2563eb !important;
  color:#2563eb !important;
  background:#fff !important;
}

body:has(.lpc-customer-page) #header.header-lpc .btn-orange,
body:has(.lpc-customer-page) .header-lpc .btn-orange{
  border:0 !important;
  color:#0f172a !important;
  background:linear-gradient(135deg,#fbbf24,#f97316) !important;
}

/* =========================================================
   DESKTOP SPACING
========================================================= */

@media (min-width:768px){
  .lpc-customer-page .lpc-container{
    padding:20px 24px;
  }

  .lpc-customer-page .lpc-card{
    padding:20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:767.98px){
  .lpc-customer-page{
    --lpc-hero-title:24px;
    --lpc-hero-subtitle:13px;
    --lpc-section-title:22px;
    --lpc-card-title:15px;
    --lpc-body-text:13px;
    --lpc-small-text:11px;
    --lpc-button-text:13px;

    font-size:var(--lpc-body-text);
    min-height:calc(100vh - 62px);
  }

  .lpc-customer-page .lpc-container{
    padding:12px;
  }

  .lpc-customer-page .lpc-card{
    padding:14px;
    border-radius:14px;
    box-shadow:none;
  }

  .lpc-customer-page .lpc-title{
    font-size:20px;
  }

  .lpc-customer-page .lpc-heading{
    font-size:16px;
  }

  .lpc-customer-page .lpc-subtitle,
  .lpc-customer-page .lpc-muted{
    font-size:13px;
  }

  .lpc-customer-page .lpc-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .lpc-customer-page .lpc-col-12,
  .lpc-customer-page .lpc-col-8,
  .lpc-customer-page .lpc-col-6,
  .lpc-customer-page .lpc-col-4,
  .lpc-customer-page .lpc-col-3{
    grid-column:1 / -1;
  }

  .lpc-customer-page .lpc-btn{
    width:100%;
    min-height:46px;
  }

  .lpc-customer-page .lpc-field{
    min-height:46px;
    font-size:15px;
  }

  .lpc-customer-page .lpc-desktop-only{
    display:none!important;
  }

  .lpc-customer-page .lpc-mobile-only{
    display:block!important;
  }

  .lpc-customer-page .lpc-mobile-bottom-nav{
    display:grid;
  }

  body:has(.lpc-customer-page) #header.header-lpc,
  body:has(.lpc-customer-page) .header-lpc{
    min-height:58px !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .container,
  body:has(.lpc-customer-page) #header.header-lpc .container-fluid,
  body:has(.lpc-customer-page) .header-lpc .container,
  body:has(.lpc-customer-page) .header-lpc .container-fluid{
    padding-left:12px !important;
    padding-right:12px !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar,
  body:has(.lpc-customer-page) .header-lpc .navbar{
    min-height:58px !important;
    padding:6px 0 !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar-brand img,
  body:has(.lpc-customer-page) .header-lpc .navbar-brand img{
    height:36px !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar-toggler,
  body:has(.lpc-customer-page) .header-lpc .navbar-toggler{
    padding:7px !important;
    margin-right:0 !important;
    border:0 !important;
    box-shadow:none !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar-collapse,
  body:has(.lpc-customer-page) .header-lpc .navbar-collapse{
    border-top:1px solid #e2e8f0 !important;
    margin-top:8px !important;
    padding-top:8px !important;
    background:#fff !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar-nav,
  body:has(.lpc-customer-page) .header-lpc .navbar-nav{
    gap:0 !important;
    align-items:stretch !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .nav-link,
  body:has(.lpc-customer-page) .header-lpc .nav-link{
    padding:10px 4px !important;
    font-size:14px !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .btn,
  body:has(.lpc-customer-page) .header-lpc .btn{
    width:100% !important;
    margin-top:6px !important;
  }
}
/* =========================================================
   FINAL MOBILE HEADER FIX
   Keeps mobile header consistent with desktop/home style.
   Add this at the very bottom of lpc-customer-ui.css
========================================================= */

@media (max-width:767.98px){

  body:has(.lpc-customer-page) #header.header-lpc,
  body:has(.lpc-customer-page) .header-lpc,
  body:has(.lpc-customer-page) .start-header{
    width:100% !important;
    height:auto !important;
    min-height:58px !important;
    padding:0 !important;
    background:#fff !important;
    border-bottom:1px solid #e5e7eb !important;
    box-shadow:0 1px 0 rgba(15,23,42,.04) !important;
    font-family:'DM Sans',system-ui,sans-serif !important;
  }

  body:has(.lpc-customer-page) .start-header.scroll-on{
    padding:0 !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .container,
  body:has(.lpc-customer-page) #header.header-lpc .container-fluid,
  body:has(.lpc-customer-page) .header-lpc .container,
  body:has(.lpc-customer-page) .header-lpc .container-fluid{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding-left:12px !important;
    padding-right:12px !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar,
  body:has(.lpc-customer-page) .header-lpc .navbar,
  body:has(.lpc-customer-page) .navbar{
    min-height:58px !important;
    padding:6px 0 !important;
    font-family:'DM Sans',system-ui,sans-serif !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar-brand,
  body:has(.lpc-customer-page) .header-lpc .navbar-brand{
    padding:0 !important;
    margin:0 !important;
    display:flex !important;
    align-items:center !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar-brand img,
  body:has(.lpc-customer-page) .header-lpc .navbar-brand img{
    height:36px !important;
    width:auto !important;
    max-width:170px !important;
    display:block !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar-toggler,
  body:has(.lpc-customer-page) .header-lpc .navbar-toggler,
  body:has(.lpc-customer-page) .navbar-toggler{
    width:38px !important;
    height:38px !important;
    padding:0 !important;
    margin:0 !important;
    border:1px solid #e2e8f0 !important;
    border-radius:10px !important;
    background:#fff !important;
    box-shadow:none !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar-toggler:focus,
  body:has(.lpc-customer-page) .header-lpc .navbar-toggler:focus,
  body:has(.lpc-customer-page) .navbar-toggler:focus{
    outline:none !important;
    box-shadow:0 0 0 3px rgba(37,99,235,.12) !important;
  }

  body:has(.lpc-customer-page) #navbarMobile,
  body:has(.lpc-customer-page) .navbar-collapse{
    background:#fff !important;
    margin-top:6px !important;
    padding:8px 0 10px !important;
    border-top:1px solid #e2e8f0 !important;
  }

  body:has(.lpc-customer-page) .show#navbarMobile{
    background:#fff !important;
    margin-top:6px !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .navbar-nav,
  body:has(.lpc-customer-page) .header-lpc .navbar-nav{
    width:100% !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:0 !important;
    margin:0 !important;
    padding:0 !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .nav-item,
  body:has(.lpc-customer-page) .header-lpc .nav-item{
    width:100% !important;
    margin:0 !important;
    border-bottom:1px solid rgba(226,232,240,.72) !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .nav-item:last-child,
  body:has(.lpc-customer-page) .header-lpc .nav-item:last-child{
    border-bottom:0 !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .nav-link,
  body:has(.lpc-customer-page) .header-lpc .nav-link{
    width:100% !important;
    min-height:42px !important;
    display:flex !important;
    align-items:center !important;
    padding:11px 4px !important;
    color:#2f3341 !important;
    font-family:'DM Sans',system-ui,sans-serif !important;
    font-size:14px !important;
    font-weight:700 !important;
    line-height:1.2 !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .nav-link:hover,
  body:has(.lpc-customer-page) .header-lpc .nav-link:hover{
    color:#2563eb !important;
    background:#f8fafc !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .btn,
  body:has(.lpc-customer-page) .header-lpc .btn{
    width:100% !important;
    height:40px !important;
    min-height:40px !important;
    margin:6px 0 0 !important;
    border-radius:10px !important;
    padding:8px 14px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-family:'DM Sans',system-ui,sans-serif !important;
    font-size:14px !important;
    font-weight:800 !important;
    line-height:1 !important;
    text-transform:none !important;
    white-space:nowrap !important;
    box-shadow:none !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .btn-outline-primary,
  body:has(.lpc-customer-page) .header-lpc .btn-outline-primary{
    background:#fff !important;
    border:1px solid #2563eb !important;
    color:#2563eb !important;
  }

  body:has(.lpc-customer-page) #header.header-lpc .btn-orange,
  body:has(.lpc-customer-page) .header-lpc .btn-orange{
    border:0 !important;
    color:#0f172a !important;
    background:linear-gradient(135deg,#fbbf24,#f97316) !important;
  }

  body:has(.lpc-customer-page) .sticky{
    top:58px !important;
  }
}

:root{
  --lpc-blue:#2563EB;
  --lpc-navy:#0F1F5C;
  --lpc-ink:#0F172A;
  --lpc-muted:#64748B;
  --lpc-border:#E2E8F0;
  --lpc-soft:#F8FAFF;
  --lpc-white:#FFFFFF;
  --lpc-font-head:"Bricolage Grotesque",system-ui,sans-serif;
  --lpc-font-body:"DM Sans",system-ui,sans-serif;
}

body.lpc-customer-body{
  font-family:var(--lpc-font-body);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

body.lpc-customer-body a{
  text-decoration:none;
}

body.lpc-customer-body img{
  max-width:100%;
}

.lpc-customer-page{
  font-family:var(--lpc-font-body);
}

.lpc-customer-page h1,
.lpc-customer-page h2,
.lpc-customer-page h3,
.lpc-customer-page h4{
  font-family:var(--lpc-font-head);
}

@media (max-width:991.98px){
  body.lpc-customer-body{
    overflow-x:hidden;
  }
}
body.lpc-customer-body{
  min-height:100vh;
}

body.lpc-customer-body footer,
body.lpc-customer-body .footer,
body.lpc-customer-body #footer{
  position:relative;
  z-index:1;
  display:block;
  visibility:visible;
  opacity:1;
}
/* =========================================================
   LPC CUSTOMER FOOTER FIX
   Makes old footer independent from old global header/theme CSS
========================================================= */

body.lpc-customer-body #stop{
  display:none !important;
}

body.lpc-customer-body #footermain{
  position:relative !important;
  z-index:1 !important;
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  width:100% !important;
  margin:0 !important;
  padding:56px 0 22px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(37,99,235,.28), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(249,115,22,.18), transparent 28%),
    linear-gradient(145deg, #07143F 0%, #0F1F5C 52%, #132A75 100%) !important;
  color:#fff !important;
  font-family:"DM Sans",system-ui,-apple-system,"Segoe UI",sans-serif !important;
  overflow:hidden !important;
}

body.lpc-customer-body #footermain::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size:28px 28px;
  opacity:.75;
}

body.lpc-customer-body #footermain > .container{
  position:relative;
  z-index:1;
  width:100% !important;
  max-width:1180px !important;
  padding-left:24px !important;
  padding-right:24px !important;
}

body.lpc-customer-body #footermain .row{
  row-gap:28px !important;
}

body.lpc-customer-body #footermain .widget{
  height:100%;
}

body.lpc-customer-body #footermain h3{
  margin:0 0 16px !important;
  color:#fff !important;
  font-family:"Bricolage Grotesque",system-ui,sans-serif !important;
  font-size:19px !important;
  font-weight:800 !important;
  line-height:1.15 !important;
  letter-spacing:-.02em !important;
}

body.lpc-customer-body #footermain p,
body.lpc-customer-body #footermain li,
body.lpc-customer-body #footermain label,
body.lpc-customer-body #footermain .small{
  color:rgba(255,255,255,.76) !important;
  font-size:14px !important;
  line-height:1.65 !important;
}

body.lpc-customer-body #footermain p{
  margin:0 0 8px !important;
}

body.lpc-customer-body #footermain a{
  color:rgba(255,255,255,.86) !important;
  text-decoration:none !important;
  transition:color .16s ease, opacity .16s ease, transform .16s ease;
}

body.lpc-customer-body #footermain a:hover,
body.lpc-customer-body #footermain a:focus{
  color:#fff !important;
  text-decoration:none !important;
}

body.lpc-customer-body #footermain i{
  color:inherit !important;
}

body.lpc-customer-body #footermain .footer-menu{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}

body.lpc-customer-body #footermain .footer-menu li{
  margin:0 0 9px !important;
  padding:0 !important;
}

body.lpc-customer-body #footermain .footer-menu a{
  display:inline-flex !important;
  align-items:center !important;
  gap:7px !important;
  font-weight:700 !important;
}

body.lpc-customer-body #footermain .footer-menu a:hover{
  transform:translateX(3px);
}

body.lpc-customer-body #footermain .footer-socials{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}

body.lpc-customer-body #footermain .footer-socials li{
  margin:0 !important;
  padding:0 !important;
}

body.lpc-customer-body #footermain .footer-socials a{
  width:38px !important;
  height:38px !important;
  border-radius:14px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:rgba(255,255,255,.10) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  color:#fff !important;
}

body.lpc-customer-body #footermain .footer-socials a:hover{
  background:rgba(255,255,255,.18) !important;
  transform:translateY(-2px);
}

body.lpc-customer-body #footermain .input-group{
  display:flex !important;
  align-items:stretch !important;
  width:100% !important;
  border-radius:14px !important;
  overflow:hidden !important;
  background:rgba(255,255,255,.08) !important;
  border:1px solid rgba(255,255,255,.18) !important;
}

body.lpc-customer-body #footermain .input-group-text{
  min-height:44px !important;
  display:flex !important;
  align-items:center !important;
  border:0 !important;
  border-radius:0 !important;
  background:rgba(255,255,255,.12) !important;
  color:#fff !important;
  font-weight:800 !important;
}

body.lpc-customer-body #footermain .form-control{
  min-height:44px !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  color:#fff !important;
  font-weight:700 !important;
  box-shadow:none !important;
}

body.lpc-customer-body #footermain .form-control::placeholder{
  color:rgba(255,255,255,.56) !important;
}

body.lpc-customer-body #footermain .form-control:focus{
  background:transparent !important;
  color:#fff !important;
  box-shadow:none !important;
}

body.lpc-customer-body #footermain .form-check{
  display:flex !important;
  align-items:flex-start !important;
  gap:8px !important;
}

body.lpc-customer-body #footermain .form-check-input{
  width:16px !important;
  height:16px !important;
  margin-top:4px !important;
  flex:0 0 auto !important;
  border:1px solid rgba(255,255,255,.7) !important;
  background-color:transparent !important;
}

body.lpc-customer-body #footermain .form-check-input:checked{
  background-color:#25D366 !important;
  border-color:#25D366 !important;
}

body.lpc-customer-body #footermain .form-check-label{
  margin:0 !important;
}

body.lpc-customer-body #footermain #wa-subscribe,
body.lpc-customer-body #footermain .btn-curve{
  width:100% !important;
  min-height:44px !important;
  border:0 !important;
  border-radius:14px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  background:#25D366 !important;
  color:#fff !important;
  font-size:14px !important;
  font-weight:900 !important;
  line-height:1 !important;
  box-shadow:0 12px 28px rgba(37,211,102,.22) !important;
  cursor:pointer !important;
}

body.lpc-customer-body #footermain #wa-subscribe:hover,
body.lpc-customer-body #footermain .btn-curve:hover{
  background:#128C7E !important;
  color:#fff !important;
}

body.lpc-customer-body #footermain #wa-msg{
  display:none;
  margin:10px 0 0 !important;
  padding:9px 11px !important;
  border-radius:12px !important;
  font-size:13px !important;
  font-weight:800 !important;
  line-height:1.35 !important;
}

body.lpc-customer-body #footermain #wa-msg.ok{
  display:block;
  background:rgba(37,211,102,.18) !important;
  color:#DCFCE7 !important;
  border:1px solid rgba(37,211,102,.32) !important;
}

body.lpc-customer-body #footermain #wa-msg.err{
  display:block;
  background:rgba(239,68,68,.18) !important;
  color:#FEE2E2 !important;
  border:1px solid rgba(239,68,68,.32) !important;
}

body.lpc-customer-body #footermain .footer-btm{
  margin-top:34px !important;
  padding-top:20px !important;
  border-top:1px solid rgba(255,255,255,.12) !important;
}

body.lpc-customer-body #footermain .footer-btm .row{
  padding-top:0 !important;
}

body.lpc-customer-body #footermain .copyright p{
  margin:0 !important;
  color:rgba(255,255,255,.64) !important;
  font-size:13px !important;
  font-weight:600 !important;
}

@media (max-width:991.98px){
  body.lpc-customer-body #footermain{
    padding:38px 0 94px !important;
  }

  body.lpc-customer-body #footermain > .container{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  body.lpc-customer-body #footermain h3{
    font-size:17px !important;
    margin-bottom:12px !important;
  }

  body.lpc-customer-body #footermain p,
  body.lpc-customer-body #footermain li,
  body.lpc-customer-body #footermain label,
  body.lpc-customer-body #footermain .small{
    font-size:13px !important;
    line-height:1.55 !important;
  }

  body.lpc-customer-body #footermain .footer-socials a{
    width:36px !important;
    height:36px !important;
    border-radius:12px !important;
  }

  body.lpc-customer-body #footermain .footer-btm{
    margin-top:26px !important;
  }

  body.lpc-customer-body #footermain .copyright p{
    font-size:12px !important;
    line-height:1.45 !important;
  }
}

@media (max-width:575.98px){
  body.lpc-customer-body #footermain{
    text-align:left !important;
  }

  body.lpc-customer-body #footermain .col-lg-3,
  body.lpc-customer-body #footermain .col-md-6,
  body.lpc-customer-body #footermain .col-sm-6{
    width:100% !important;
  }

  body.lpc-customer-body #footermain .footer-socials{
    justify-content:flex-start !important;
  }
}