
    /* =============================================
       THEME-AWARE PRICING VARIABLES
       Light mode: [data-bs-theme="light"]
       Dark mode:  [data-bs-theme="dark"]
    ============================================= */

    [data-bs-theme="light"] {
        --pricing-card-bg: #f2fbfc;
        --pricing-card-border: rgba(0, 51, 255, 0.1);
        --pricing-card-text: #0f172a;
        --pricing-card-muted: #475569;
        --pricing-metric-bg: #f2fbfc;
        --pricing-metric-border: rgba(0, 0, 0, 0.08);
        --pricing-slider-track: #cbd5e1;
        --pricing-slider-thumb: #6328ff;
        --pricing-slider-thumb-border: #ffffff;
        --pricing-savings-bg: #f2fbfc;
        --pricing-savings-border: rgba(0, 0, 0, 0.10);
        --pricing-savings-text: #475569;
        --pricing-rate-color: #0f172a;
        --pricing-rate-note: #94a3b8;
        --pricing-divider: rgba(0, 0, 0, 0.10);
        --pricing-total-accent: #6328ff;
        --pricing-badge-text: #475569;
        --pricing-section-label-bg: rgba(99, 40, 255, 0.08);
        --pricing-section-label-text: #6328ff;
        --pricing-heading-color: #0f172a;
        --pricing-section-bg: #f8fafc;
    }

    [data-bs-theme="dark"] {
        --pricing-card-bg: #0f172a;
        --pricing-card-border: rgba(255, 255, 255, 0.10);
        --pricing-card-text: #f1f5f9;
        --pricing-card-muted: #94a3b8;
        --pricing-metric-bg: rgba(255, 255, 255, 0.05);
        --pricing-metric-border: rgba(255, 255, 255, 0.10);
        --pricing-slider-track: #334155;
        --pricing-slider-thumb: #22d3ee;
        --pricing-slider-thumb-border: #0f172a;
        --pricing-savings-bg: #1e293b;
        --pricing-savings-border: rgba(255, 255, 255, 0.12);
        --pricing-savings-text: #94a3b8;
        --pricing-rate-color: #f1f5f9;
        --pricing-rate-note: #64748b;
        --pricing-divider: rgba(255, 255, 255, 0.10);
        --pricing-total-accent: #22d3ee;
        --pricing-badge-text: #94a3b8;
        --pricing-section-label-bg: rgba(99, 40, 255, 0.20);
        --pricing-section-label-text: #a78bfa;
        --pricing-heading-color: #f1f5f9;
        --pricing-section-bg: #0b0f19;
    }

    /* =============================================
       PRICING SECTION STYLES
    ============================================= */

    .pricing-section-1 {
        background-color: var(--pricing-section-bg);
        transition: background-color 0.3s ease;
    }

    /* Section label pill */
    .pricing-section-label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--pricing-section-label-bg);
        color: var(--pricing-section-label-text);
        font-size: 13px;
        font-weight: 500;
        padding: 6px 16px;
        border-radius: 50px;
        margin-bottom: 14px;
        transition: background 0.3s, color 0.3s;
    }

    /* Section heading */
    .pricing-section-heading {
        color: var(--pricing-heading-color);
        transition: color 0.3s;
    }

    /* Main card */
    .volume-pricing-card {
        background-color: #efeaff !important;
        border: 1.5px solid var(--pricing-card-border) !important;
        border-radius: 16px !important;
        transition: background-color 0.3s, border-color 0.3s;
    }

    .volume-pricing-card .card-title-text {
        font-size: 20px;
        font-weight: 700;
        color: var(--pricing-card-text);
        margin-bottom: 6px;
        transition: color 0.3s;
    }

    .volume-pricing-card .card-desc-text {
        font-size: 13px;
        color: var(--pricing-card-muted);
        margin-bottom: 1.5rem;
        transition: color 0.3s;
    }

    /* Rate display */
    #current-rate {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--pricing-rate-color);
        margin-bottom: 4px;
        transition: color 0.3s;
    }

    .rate-unit-text {
        font-size: 13px;
        color: var(--pricing-card-muted);
        margin-bottom: 4px;
        font-weight: 700;
    }

    .rate-note-text {
        font-size: 12px;
        color: var(--pricing-rate-note);
        margin-bottom: 1.75rem;
    }

    /* Metric boxes */
    .metric-box {
        background: #f4f1fe !important;
        border: 2.5px solid var(--pricing-metric-border) !important;
        border-radius: 10px;
        padding: 14px;
        min-height: 80px;
        transition: background 0.3s, border-color 0.3s;
    }

    .metric-box .metric-label {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--pricing-card-muted);
        margin-bottom: 6px;
        transition: color 0.3s;
    }

    .metric-box .metric-value {
        font-size: 20px;
        font-weight: 700;
        color: var(--pricing-card-text);
        margin: 0;
        transition: color 0.3s;
    }

    .metric-box .metric-value.accent {
        color: var(--pricing-total-accent);
        transition: color 0.3s;
    }

    /* Slider */
    .custom-slider {
        height: 6px;
        background: var(--pricing-slider-track);
        border-radius: 5px;
        outline: none;
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        cursor: pointer;
        transition: background 0.3s;
    }

    .custom-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        background: var(--pricing-slider-thumb);
        border-radius: 50%;
        cursor: pointer;
        border: 3px solid var(--pricing-slider-thumb-border);
        transition: background 0.3s, border-color 0.3s;
    }

    .custom-slider::-moz-range-thumb {
        width: 14px;
        height: 14px;
        background: var(--pricing-slider-thumb);
        border-radius: 50%;
        cursor: pointer;
        border: 3px solid var(--pricing-slider-thumb-border);
    }

    .slider-labels {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        font-size: 11px;
        font-weight: 700;
        color: var(--pricing-card-muted);
        padding: 0 2px;
        transition: color 0.3s;
    }

    /* Savings row */
    .savings-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 0.5px solid var(--pricing-divider);
        padding-top: 1rem;
        margin-top: 0.5rem;
        transition: border-color 0.3s;
    }

    .savings-row .savings-end-text {
        font-size: 13px;
        font-weight: 700;
        color: var(--pricing-card-muted);
        transition: color 0.3s;
    }

    #savings-label {
        background: #f4f1fe;
        border: 0.5px solid var(--pricing-savings-border);
        color: var(--pricing-badge-text);
        font-size: 12px;
        font-weight: 500;
        padding: 5px 14px;
        border-radius: 50px;
        transition: background 0.3s, border-color 0.3s, color 0.3s;
    }

    /* Savings gradient bar */
    .savings-bar-wrap {
        margin-top: 14px;
        height: 6px;
        border-radius: 3px;
        background: var(--pricing-slider-track);
        overflow: hidden;
    }

    .savings-bar-fill {
        height: 100%;
        border-radius: 3px;
        background: linear-gradient(to right, var(--pricing-slider-thumb), var(--pricing-bar-end));
        width: 0%;
        transition: width 0.4s ease, background 0.3s;
    }

    [data-bs-theme="light"] {
        --pricing-bar-end: #a78bfa;
    }

    [data-bs-theme="dark"] {
        --pricing-bar-end: #6328ff;
    }

 
/* =============================================
   CSS VARIABLES (Light / Dark)
============================================= */
:root {
  --lc_bg:            #ffffff;
  --lc_border:        rgba(0,0,0,0.08);
  --lc_text_primary:  #111111;
  --lc_text_muted:    #555555;
  --lc_text_sub:      #888888;
  --lc_hover_bg:      #f5f5f5;
  --lc_dd_bg:         #ffffff;
  --lc_dd_border:     rgba(0,0,0,0.09);
  --lc_dd_shadow:     0 8px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --lc_panel_bg:      #f7f7f9;
  --lc_panel_border:  rgba(0,0,0,0.07);
  --lc_card_bg:       #ffffff;
  --lc_card_border:   rgba(0,0,0,0.08);
  --lc_mob_panel_bg:  #fafafa;
  --lc_mob_border:    rgba(0,0,0,0.06);
  --lc_accent:        #4f46e5;
  --lc_ham_bar:       #333333;
}
 
[data-theme="dark"] {
  --lc_bg:            #18181b;
  --lc_border:        rgba(255,255,255,0.08);
  --lc_text_primary:  #f4f4f5;
  --lc_text_muted:    #aaaaaa;
  --lc_text_sub:      #71717a;
  --lc_hover_bg:      #27272a;
  --lc_dd_bg:         #18181b;
  --lc_dd_border:     rgba(255,255,255,0.10);
  --lc_dd_shadow:     0 8px 40px rgba(0,0,0,0.50);
  --lc_panel_bg:      #111113;
  --lc_panel_border:  rgba(255,255,255,0.08);
  --lc_card_bg:       #1c1c1f;
  --lc_card_border:   rgba(255,255,255,0.08);
  --lc_mob_panel_bg:  #111113;
  --lc_mob_border:    rgba(255,255,255,0.07);
  --lc_ham_bar:       #e4e4e7;
}
 
/* =============================================
   NAVBAR
============================================= */
.lc_navbar {
  background: var(--lc_bg);
  border-bottom: 1px solid var(--lc_border);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.2s, border-color 0.2s;
}
 
.lc_navbar_container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  gap: 1rem;
}
 
/* =============================================
   LOGO
============================================= */
.lc_logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.lc_logo_img_light { display: block; height: 34px; }
.lc_logo_img_dark  { display: none;  height: 34px; }
[data-theme="dark"] .lc_logo_img_light { display: none; }
[data-theme="dark"] .lc_logo_img_dark  { display: block; }
 
/* =============================================
   DESKTOP NAV LIST
============================================= */
.lc_nav_list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
 
.lc_nav_item { position: relative; }
 
.lc_nav_btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  font-size: 14px;
  color: var(--lc_text_muted);
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
  white-space: nowrap;
  line-height: 1;
}
.lc_nav_btn:hover,
.lc_nav_item_open .lc_nav_btn {
  background: var(--lc_hover_bg);
  color: var(--lc_text_primary);
}
 
.lc_nav_chevron {
  transition: transform 0.22s cubic-bezier(.4,0,.2,1);
  opacity: 0.45;
  flex-shrink: 0;
}
.lc_nav_item_open .lc_nav_chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}
 
/* =============================================
   DROPDOWN SHARED
============================================= */
.lc_dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--lc_dd_bg);
  border: 1px solid var(--lc_dd_border);
  border-radius: 18px;
  box-shadow: var(--lc_dd_shadow);
  display: none;
  z-index: 9999;
  overflow: hidden;
  animation: lc_dd_fadein 0.16s ease;
}
@keyframes lc_dd_fadein {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.lc_nav_item_open .lc_dropdown { display: flex; }
 
.lc_dd_label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--lc_text_sub);
  margin-bottom: 14px;
}
 
/* =============================================
   PRODUCT DROPDOWN
============================================= */
.lc_dropdown_product {
  width: 620px;
  padding: 24px;
  gap: 0;
  align-items: stretch;
}
 
.lc_prod_main { flex: 1; }
 
.lc_prod_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
 
.lc_prod_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 11px;
  text-decoration: none;
  transition: background 0.12s;
}
.lc_prod_item:hover { background: var(--lc_hover_bg); }
 
.lc_prod_icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lc_prod_body  { display: flex; flex-direction: column; }
.lc_prod_title { font-size: 13.5px; font-weight: 600; color: var(--lc_text_primary); line-height: 1.3; }
.lc_prod_desc  { font-size: 12px; color: var(--lc_text_sub); line-height: 1.4; margin-top: 2px; }
 
/* Preview panel */
.lc_prod_preview {
  width: 210px;
  background: var(--lc_panel_bg);
  border-left: 1px solid var(--lc_panel_border);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.lc_preview_card {
  background: var(--lc_card_bg);
  border-radius: 12px;
  border: 1px solid var(--lc_card_border);
  padding: 14px;
  font-size: 12px;
  color: var(--lc_text_sub);
  line-height: 1.65;
}
.lc_preview_badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--lc_accent);
  background: rgba(79,70,229,0.08);
  padding: 5px 10px;
  border-radius: 20px;
}
.lc_preview_link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lc_accent);
  text-decoration: none;
  margin-top: auto;
}
.lc_preview_link:hover { text-decoration: underline; }
 
/* =============================================
   RIGHT ACTIONS
============================================= */
.lc_nav_actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
 
/* Theme toggle */
.lc_theme_btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lc_text_muted);
  transition: background 0.15s, color 0.15s;
}
.lc_theme_btn:hover { background: var(--lc_hover_bg); color: var(--lc_text_primary); }
.lc_theme_icon_sun  { display: block; }
.lc_theme_icon_moon { display: none; }
[data-theme="dark"] .lc_theme_icon_sun  { display: none; }
[data-theme="dark"] .lc_theme_icon_moon { display: block; }
 
.lc_btn_signup {
  font-size: 14px; font-weight: 600;
  color: #fff;
  background: var(--lc_accent);
  padding: 8px 20px;
  border-radius: 9px;
  border: none; cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s, background 0.15s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.lc_btn_signup:hover { opacity: 0.88; }
 
/* =============================================
   HAMBURGER
============================================= */
.lc_hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px;
  transition: background 0.15s;
  margin-left: auto;
  flex-shrink: 0;
}
.lc_hamburger:hover { background: var(--lc_hover_bg); }
.lc_hamburger_bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--lc_ham_bar);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.lc_hamburger_open .lc_hamburger_bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lc_hamburger_open .lc_hamburger_bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lc_hamburger_open .lc_hamburger_bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* =============================================
   MOBILE DRAWER
============================================= */
.lc_mobile_menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--lc_bg);
  z-index: 998;
  overflow-y: auto;
  padding: 8px 0 48px;
  border-top: 1px solid var(--lc_border);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), opacity 0.2s ease;
}
.lc_mobile_menu_visible { display: block; }
.lc_mobile_menu_open    { transform: translateY(0); opacity: 1; }
 
/* Accordion */
.lc_mob_item { border-bottom: 1px solid var(--lc_mob_border); }
.lc_mob_trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  font-size: 15px; font-weight: 600;
  color: var(--lc_text_primary);
  background: none; border: none;
  cursor: pointer; font-family: inherit; text-align: left;
  transition: background 0.12s;
}
.lc_mob_trigger:hover { background: var(--lc_hover_bg); }
.lc_mob_chevron {
  transition: transform 0.22s ease;
  opacity: 0.4; flex-shrink: 0;
  color: var(--lc_text_muted);
}
.lc_mob_item_open .lc_mob_chevron { transform: rotate(180deg); opacity: 0.8; }
.lc_mob_panel {
  display: none;
  background: var(--lc_mob_panel_bg);
  padding: 8px 12px 14px;
}
.lc_mob_item_open .lc_mob_panel { display: block; }
 
/* Mobile product items */
.lc_mob_prod_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.12s;
}
.lc_mob_prod_item:hover { background: var(--lc_hover_bg); }
.lc_mob_prod_icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lc_mob_prod_body  { display: flex; flex-direction: column; }
.lc_mob_prod_title { font-size: 14px; font-weight: 600; color: var(--lc_text_primary); }
.lc_mob_prod_desc  { font-size: 12px; color: var(--lc_text_sub); margin-top: 1px; }
 
/* Plain mobile links */
.lc_mob_link {
  display: block;
  padding: 15px 20px;
  font-size: 15px; font-weight: 600;
  color: var(--lc_text_primary);
  text-decoration: none;
  border-bottom: 1px solid var(--lc_mob_border);
  transition: background 0.12s;
}
.lc_mob_link:hover { background: var(--lc_hover_bg); }
 
/* Mobile CTA */
.lc_mob_actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 0;
}
.lc_mob_btn_signup {
  display: block; text-align: center;
  padding: 13px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  color: #fff; background: var(--lc_accent);
  text-decoration: none;
  transition: opacity 0.15s;
}
.lc_mob_btn_signup:hover { opacity: 0.88; }
 
/* Mobile theme row */
.lc_mob_theme_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--lc_mob_border);
}
.lc_mob_theme_label { font-size: 15px; font-weight: 600; color: var(--lc_text_primary); }
.lc_mob_theme_toggle {
  display: flex;
  gap: 4px;
  background: var(--lc_hover_bg);
  border-radius: 8px;
  padding: 3px;
}
.lc_mob_theme_opt {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--lc_text_muted);
  border: none; background: none;
  cursor: pointer; font-family: inherit;
  transition: background 0.12s, color 0.12s;
}
.lc_mob_theme_opt_active {
  background: var(--lc_dd_bg);
  color: var(--lc_text_primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
 
/* =============================================
   OVERLAY
============================================= */
.lc_overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 999;
}
.lc_overlay_active { display: block; }
 
/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 960px) {
  .lc_nav_list    { display: none; }
  .lc_nav_actions { display: none; }
  .lc_hamburger   { display: flex; }
  .lc_navbar_container { justify-content: space-between; }
}
@media (max-width: 480px) {
  .lc_navbar { padding: 0 1rem; height: 60px; }
  .lc_mobile_menu { top: 60px; }
}
 
