/* ============================================================
   ACCOUNTIFYING — Modern Lead Magnet Landing CSS
   ============================================================ */

:root {
  --primary: #0057FF;
  --primary-dark: #0040CC;
  --accent: #00C6A7;
  --accent2: #8B5CF6;
  --warn: #FF6B2C;
  --dark: #F6F8FC;
  --dark2: #FFFFFF;
  --mid: #E2E8F0;
  --glass: rgba(0,0,0,.05);
  --glass-border: rgba(0,0,0,.08);
  --text-main: #0F172A;
  --text-muted: #475569;
  --radius: 18px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px rgba(0,87,255,.12);
  --shadow-soft: 0 8px 30px rgba(0,0,0,.08);
}

/* ── Typography & Global Resets ──────────────────────────── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-muted);
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

p, li {
  color: var(--text-muted);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2rem); }
h3 { font-size: clamp(1.5rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1.25rem, 1.5vw, 1.5rem); }
h5 { font-size: clamp(1.1rem, 1.2vw, 1.25rem); }
h6 { font-size: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* ── Inner pages reset (non-hero content) ───────────────── */
main > .lp-section:not(.lp-hero) {
  padding-top: 72px;
  padding-bottom: 72px;
}

.lp-section .content-container,
.lp-section .faq,
.lp-section .accordion-container,
.lp-section .posts .__item,
.lp-section .sidebar .widget {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.lp-section .content-container,
.lp-section .faq,
.lp-section .accordion-container,
.lp-section .posts .__item {
  padding: 24px;
}

.lp-section .sidebar .widget {
  padding: 20px;
  margin-bottom: 18px;
}

.lp-section .posts .__title,
.lp-section .widget-title,
.lp-section .accordion-title {
  color: var(--text-main);
}

.lp-section .posts p,
.lp-section .accordion-content p,
.lp-section .list__item__link,
.lp-section .post-meta,
.lp-section time,
.lp-section .post-author__name {
  color: var(--text-muted);
}

/* ── Pricing page modern table reset ─────────────────────── */
.lp-pricing-page .content-container {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.lp-pricing-page .price-swicher {
  float: none;
  margin: 0 auto 12px;
  max-width: 340px;
}

.lp-pricing-page .lp-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: #fff;
}

.lp-pricing-page .lp-pricing-table th,
.lp-pricing-page .lp-pricing-table td {
  vertical-align: middle;
  border-color: var(--mid);
  font-size: 14px;
  color: var(--text-muted);
}

.lp-pricing-page .lp-pricing-table thead th {
  background: #F8FAFC;
  color: var(--text-main);
  font-weight: 700;
}

.lp-pricing-page .lp-pricing-table .__title {
  color: var(--text-main);
  font-size: 18px;
  font-weight: 800;
}

.lp-pricing-page .lp-pricing-table .__price,
.lp-pricing-page .lp-pricing-table .price_month,
.lp-pricing-page .lp-pricing-table .price_year {
  color: var(--text-main);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
}

.lp-pricing-page .lp-pricing-table .price-off {
  color: #94A3B8;
  font-size: 18px;
  font-weight: 500;
}

.lp-pricing-page .lp-pricing-table .feature-item,
.lp-pricing-page .lp-pricing-table .feature-item i {
  color: inherit;
}

.lp-pricing-page .lp-pricing-table tfoot td {
  background: #fff;
}

.lp-hero, .lp-hero *, .lp-section, .lp-section * { box-sizing: border-box; }

.lp-gradient-text {
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 60%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-gradient-text-alt {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Global nav overrides ────────────────────────────────── */
.lp-topbar {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,.85) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 !important;
  transition: background .3s;
}

.lp-topbar .lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1360px;
  margin: 0 auto;
  gap: 16px;
}

.lp-nav-logo img {
  height: 54px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(1.04) contrast(1.05);
  transition: filter .2s, transform .2s;
  display: block;
}
.lp-nav-logo:hover img {
  filter: brightness(1.1) contrast(1.08);
  transform: scale(1.03);
}

.lp-nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}

.lp-nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: color .2s, background .2s;
}

.lp-nav-links a:hover { color: var(--primary); background: var(--glass); }

.lp-nav-links .has-submenu {
  position: relative;
}

.lp-nav-links .has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: var(--shadow);
}

.lp-nav-links .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lp-nav-links .submenu li {
  display: block;
}

.lp-nav-links .submenu a {
  padding: 8px 20px;
  border-radius: 0;
  font-size: 13px;
  white-space: nowrap;
}

.lp-nav-links .submenu a:hover {
  background: var(--mid);
  color: var(--primary);
}

.lp-nav-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: var(--text-main) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.lp-btn-wa:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,211,102,.35); }

.lp-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: color .2s;
}
.lp-btn-login:hover { color: var(--primary) !important; }

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,87,255,.4);
  transition: transform .2s, box-shadow .2s;
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,87,255,.55);
  color: #fff !important;
}

/* ── Hero ────────────────────────────────────────────────── */
.lp-hero {
  min-height: 100vh;
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(0,87,255,.28) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(0,198,167,.15) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}

.lp-hero-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  letter-spacing: .4px;
  text-transform: uppercase;
}

.lp-hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.lp-hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-main);
  margin: 0 0 20px;
  letter-spacing: -.5px;
}

.lp-hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.lp-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
}

.lp-btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  color: #fff !important;
  font-size: 16px;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .1px;
}

.lp-btn-cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,87,255,.55);
  color: #fff !important;
}

.lp-btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--glass-border);
  color: var(--text-main) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.lp-btn-cta-outline:hover {
  border-color: var(--accent);
  background: rgba(0,198,167,.08);
  color: var(--accent) !important;
}

.lp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.lp-trust-item .icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.lp-trust-item .icon.green { background: rgba(0,198,167,.15); color: var(--accent); }
.lp-trust-item .icon.blue { background: rgba(0,87,255,.15); color: var(--primary); }
.lp-trust-item .icon.purple { background: rgba(139,92,246,.15); color: var(--accent2); }
.lp-trust-item .icon.orange { background: rgba(255,107,44,.15); color: var(--warn); }

/* Hero right: floating visual */
.lp-hero-visual {
  position: relative;
}

.lp-dash-mock {
  background: var(--mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 40px 100px rgba(0,87,255,.2), 0 0 0 1px rgba(255,255,255,.04);
  position: relative;
  overflow: hidden;
}

.lp-dash-mock::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,255,.3) 0%, transparent 70%);
  pointer-events: none;
}

.lp-mock-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.lp-mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.lp-mock-dot.r { background: #FF5F57; }
.lp-mock-dot.y { background: #FFBD2E; }
.lp-mock-dot.g { background: #28C840; }

.lp-mock-title {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
}

.lp-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.lp-kpi-card {
  background: rgba(0,87,255,.08);
  border: 1px solid rgba(0,87,255,.2);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.lp-kpi-card .num {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-main);
}

.lp-kpi-card .lbl {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.lp-kpi-card.accent { background: rgba(0,198,167,.08); border-color: rgba(0,198,167,.2); }
.lp-kpi-card.accent .num { color: var(--accent); }

.lp-kpi-card.purple { background: rgba(139,92,246,.08); border-color: rgba(139,92,246,.2); }
.lp-kpi-card.purple .num { color: var(--accent2); }

.lp-mini-chart {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.lp-mini-chart-title {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.lp-bar-row { display: flex; gap: 4px; align-items: flex-end; height: 48px; }
.lp-bar {
  flex: 1;
  background: rgba(0,87,255,.35);
  border-radius: 4px 4px 0 0;
  transition: background .3s;
}
.lp-bar:hover { background: var(--primary); }
.lp-bar.accent { background: rgba(0,198,167,.4); }
.lp-bar.accent:hover { background: var(--accent); }

.lp-ai-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(0,87,255,.1));
  border: 1px solid rgba(139,92,246,.3);
  border-radius: 12px;
  padding: 10px 14px;
}

.lp-ai-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  flex-shrink: 0;
}

.lp-ai-text { font-size: 11px; color: var(--text-muted); }
.lp-ai-text strong { color: var(--accent2); display: block; margin-bottom: 2px; }

.lp-float-tag {
  position: absolute;
  background: var(--mid);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--text-main);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.lp-float-tag.tl { top: -18px; left: -18px; }
.lp-float-tag.br { bottom: -18px; right: -18px; }
.lp-float-tag span { color: var(--accent); margin-right: 4px; }

/* ── Social proof bar ────────────────────────────────────── */
.lp-proof-bar {
  background: var(--dark2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 28px;
}

.lp-proof-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.lp-proof-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-proof-stat .icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.lp-proof-stat .icon.blue { background: rgba(0,87,255,.15); color: var(--primary); }
.lp-proof-stat .icon.green { background: rgba(0,198,167,.15); color: var(--accent); }
.lp-proof-stat .icon.purple { background: rgba(139,92,246,.15); color: var(--accent2); }
.lp-proof-stat .icon.orange { background: rgba(255,107,44,.15); color: var(--warn); }

.lp-proof-stat .num { font-size: 22px; font-weight: 900; color: var(--text-main); }
.lp-proof-stat .lbl { font-size: 12px; color: var(--text-muted); }

.lp-divider-v {
  width: 1px; height: 36px;
  background: var(--glass-border);
}

/* ── Sections shared ─────────────────────────────────────── */
.lp-section {
  padding: 90px 28px;
}

.lp-section-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.lp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lp-section-title {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.12;
  margin: 0 0 14px;
}

.lp-section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Feature cards grid ──────────────────────────────────── */
.lp-features-bg {
  background: var(--dark2);
}

.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.lp-feat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s, border-color .25s, background .25s;
  position: relative;
  overflow: hidden;
}

.lp-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent2));
  opacity: 0;
  transition: opacity .25s;
}

.lp-feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,87,255,.3);
  background: rgba(0,87,255,.06);
}

.lp-feat-card:hover::before { opacity: 1; }

.lp-feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.lp-feat-icon.blue { background: rgba(0,87,255,.15); color: var(--primary); }
.lp-feat-icon.green { background: rgba(0,198,167,.15); color: var(--accent); }
.lp-feat-icon.purple { background: rgba(139,92,246,.15); color: var(--accent2); }
.lp-feat-icon.orange { background: rgba(255,107,44,.15); color: var(--warn); }

.lp-feat-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 8px;
}

.lp-feat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── AI Agentic section ──────────────────────────────────── */
.lp-agentic-bg {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}

.lp-agentic-bg::before {
  content: '';
  position: absolute;
  right: -200px; top: -150px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 65%);
  pointer-events: none;
}

.lp-agentic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-agent-steps {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-agent-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lp-step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,87,255,.4);
}

.lp-step-body h5 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 4px;
}

.lp-step-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Chat simulation */
.lp-chat-sim {
  background: var(--mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 40px 100px rgba(139,92,246,.15);
}

.lp-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 20px;
}

.lp-chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dark);
}

.lp-chat-info strong { color: var(--text-main); font-size: 14px; display: block; }
.lp-chat-info span { color: var(--accent); font-size: 12px; }

.lp-chat-bubble {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.lp-chat-bubble.bot {
  background: rgba(0,87,255,.12);
  border: 1px solid rgba(0,87,255,.2);
  color: var(--text-main);
  border-bottom-left-radius: 4px;
}

.lp-chat-bubble.user {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: var(--dark);
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.lp-chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background: rgba(0,87,255,.08);
  border-radius: 10px;
  width: fit-content;
}

.lp-chat-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: bounce 1.2s infinite;
}
.lp-chat-typing span:nth-child(2) { animation-delay: .2s; }
.lp-chat-typing span:nth-child(3) { animation-delay: .4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

/* ── Security / Compliance section ──────────────────────── */
.lp-security-bg {
  background: var(--dark2);
}

.lp-security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.lp-sec-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .25s, transform .25s;
}

.lp-sec-card:hover {
  border-color: rgba(0,198,167,.3);
  transform: translateY(-4px);
}

.lp-sec-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.lp-sec-icon.green { background: rgba(0,198,167,.12); color: var(--accent); }
.lp-sec-icon.blue { background: rgba(0,87,255,.12); color: var(--primary); }
.lp-sec-icon.purple { background: rgba(139,92,246,.12); color: var(--accent2); }
.lp-sec-icon.orange { background: rgba(255,107,44,.12); color: var(--warn); }

.lp-sec-card h5 { font-size: 14px; font-weight: 800; color: var(--text-main); margin: 0 0 6px; }
.lp-sec-card p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── KYC Process ─────────────────────────────────────────── */
.lp-kyc-bg { background: var(--dark); }

.lp-kyc-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  margin-top: 50px;
  position: relative;
}

.lp-kyc-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent2), var(--accent));
  border-radius: 999px;
}

.lp-kyc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.lp-kyc-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--dark2);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 18px;
  box-shadow: 0 0 0 8px rgba(0,87,255,.08);
}

.lp-kyc-step h5 { font-size: 14px; font-weight: 800; color: var(--text-main); margin: 0 0 6px; }
.lp-kyc-step p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Testimonials ────────────────────────────────────────── */
.lp-testimonials-bg { background: var(--dark2); }

.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.lp-testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .25s;
}

.lp-testimonial-card:hover {
  border-color: rgba(0,87,255,.3);
}

.lp-stars { color: #FFC300; font-size: 13px; margin-bottom: 14px; }

.lp-testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-tauthor-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  flex-shrink: 0;
}

.lp-tauthor-name { font-size: 13px; font-weight: 800; color: var(--text-main); }
.lp-tauthor-title { font-size: 11px; color: var(--text-muted); }

/* ── CTA band ────────────────────────────────────────────── */
.lp-cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 60%, #0040CC 100%);
  padding: 70px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.lp-cta-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }

.lp-cta-band h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  color: var(--dark2);
  line-height: 1.1;
  margin: 0 0 16px;
}

.lp-cta-band p { font-size: 17px; color: rgba(255,255,255,.8); margin: 0 0 32px; }

.lp-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-main);
  color: var(--primary) !important;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.lp-btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0,0,0,.22);
  color: var(--primary-dark) !important;
}

.lp-btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--dark) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.lp-btn-cta-ghost:hover { border-color: var(--primary); background: rgba(0,87,255,.1); color: var(--primary) !important; }

/* ── Contact Form ────────────────────────────────────────── */
.lp-contact-bg { background: var(--dark); }

.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.lp-contact-info h3 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 14px;
}

.lp-contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0 0 28px; }

.lp-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 18px;
  text-decoration: none !important;
  transition: border-color .2s, transform .2s;
}

.lp-channel:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  text-decoration: none !important;
}

.lp-channel-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.lp-channel.wa .lp-channel-icon { background: rgba(37,211,102,.15); color: #25D366; }
.lp-channel.mail .lp-channel-icon { background: rgba(0,87,255,.15); color: var(--primary); }
.lp-channel.phone .lp-channel-icon { background: rgba(139,92,246,.15); color: var(--accent2); }

.lp-channel-label { font-size: 11px; color: var(--text-muted); }
.lp-channel-value { font-size: 13px; font-weight: 700; color: var(--text-main); }

/* Contact form */
.lp-contact-form-wrap {
  background: var(--mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.lp-contact-form-wrap h4 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 6px;
}

.lp-contact-form-wrap .lp-form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.lp-field {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text-main);
  transition: border-color .2s, background .2s;
  outline: none;
  display: block;
}

.lp-field:focus {
  border-color: var(--primary);
  background: rgba(0,87,255,.06);
}

.lp-field::placeholder { color: var(--text-muted); }

.lp-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lp-form-group { margin-bottom: 14px; }

.lp-form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  display: block;
  margin-bottom: 6px;
}

.lp-inquiry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.lp-inquiry-chip {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  user-select: none;
}

.lp-inquiry-chip.active,
.lp-inquiry-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0,87,255,.08);
}

.lp-captcha-wrap {
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.lp-ai-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(139,92,246,.08);
  border: 1px solid rgba(139,92,246,.2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.lp-ai-note i { color: var(--accent2); font-size: 16px; }

.lp-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow);
}

.lp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,87,255,.5);
}

/* ── Footer ──────────────────────────────────────────────── */
.lp-footer {
  background: var(--dark2);
  border-top: 1px solid var(--glass-border);
  padding: 60px 28px 28px;
}

.lp-footer-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.lp-footer-logo { height: 46px; width: auto; max-width: 210px; object-fit: contain; margin-bottom: 16px; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; display: block; }

.lp-footer-about {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

.lp-footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.lp-badge i { font-size: 12px; }
.lp-badge.iso { color: var(--accent); border-color: rgba(0,198,167,.2); background: rgba(0,198,167,.06); }
.lp-badge.gdpr { color: var(--primary); border-color: rgba(0,87,255,.2); background: rgba(0,87,255,.06); }
.lp-badge.soc { color: var(--accent2); border-color: rgba(139,92,246,.2); background: rgba(139,92,246,.06); }

.lp-footer-col h6 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.lp-footer-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.lp-footer-links a:hover { color: var(--primary); }

.lp-footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-footer-copy { font-size: 12px; color: var(--text-muted); }

.lp-footer-socials { display: flex; gap: 10px; }

.lp-social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.lp-social-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(0,87,255,.08); }

/* ── Floating WhatsApp button ────────────────────────────── */
.lp-wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9998;
  background: #25D366;
  color: #fff !important;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  animation: wa-float 3s ease-in-out infinite;
}

@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.lp-wa-float:hover {
  animation: none;
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,.6);
  color: #fff !important;
}

/* ── Home view class mappings (revamp alignment) ────────── */
.lp-hero-title,
.lp-hero h1 { margin-bottom: 18px; }

.lp-hero-subtitle,
.lp-hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 620px;
}

.lp-hero-ctas,
.lp-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
}

.lp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-stat {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 120px;
}

.lp-stat-number {
  display: block;
  font-size: 18px;
  color: var(--text-main);
  font-weight: 800;
}

.lp-stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.lp-floating-mockup {
  background: var(--mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.lp-floating-mockup img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Fix consistent image sizing in the slider */
.lp-floating-mockup .carousel-item img {
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

@media (max-width: 767px) {
  .lp-floating-mockup .carousel-item img {
    aspect-ratio: 4 / 3;
  }
}

.lp-float-tag-1 { top: -14px; left: -14px; }
.lp-float-tag-2 { right: -16px; top: 40%; }
.lp-float-tag-3 { bottom: -14px; left: 8%; }

.lp-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.lp-section-subtitle,
.lp-section-sub {
  margin: 0 auto;
  color: var(--text-muted);
}

.lp-agentic-section { background: var(--dark2); }

.lp-agentic-section .lp-agentic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.lp-agentic-card {
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}

.lp-agentic-card:hover { 
  transform: translateY(-4px); 
  border-color: var(--primary); 
  box-shadow: 0 10px 30px rgba(0,87,255,.08);
}

.lp-agentic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--primary));
  opacity: 0; transition: opacity .3s;
}
.lp-agentic-card:hover::before { opacity: 1; }

.lp-card-icon {
  width: 48px; height: 48px;
  background: rgba(0,87,255,.08);
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.lp-agentic-card h3 {
  color: var(--text-main);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}

.lp-agentic-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ── Features List Section ────────────────────────────────── */
.lp-features-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.lp-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lp-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--primary);
}

.lp-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 198, 167, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px 0;
}

.lp-feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.lp-security-section { background: var(--dark); }

.lp-security-section .lp-security-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}

.lp-security-content h2 {
  color: var(--text-main);
  font-size: clamp(30px, 4vw, 46px);
  margin: 14px 0;
}

.lp-security-content > p { color: var(--text-muted); }

.lp-security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,198,167,.12);
  border: 1px solid rgba(0,198,167,.3);
  color: var(--accent);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
}

.lp-security-features { margin-top: 18px; }

.lp-security-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.lp-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,198,167,.15);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-security-shield {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.lp-kyc-section { background: var(--dark2); }

.lp-step-number,
.lp-kyc-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark2);
  border: 3px solid var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  box-shadow: 0 0 0 8px rgba(0,87,255,.08);
}

.lp-kyc-step h3 {
  font-size: 16px;
  color: var(--text-main);
  margin: 0 0 6px;
}

.lp-kyc-step p { color: var(--text-muted); }

.lp-kyc-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.lp-testimonials-section { background: var(--dark); }

.lp-testimonials-grid,
.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.lp-testimonial-stars,
.lp-stars {
  color: #FFC300;
  margin-bottom: 10px;
}

.lp-testimonial-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-contact-section { background: var(--dark2); }

.lp-contact-content h2 {
  color: var(--text-main);
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 14px;
}

.lp-contact-content p { color: var(--text-muted); }

.lp-contact-features { margin-top: 18px; }

.lp-contact-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.lp-contact-form,
.lp-contact-form-wrap {
  background: var(--mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.lp-contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 700;
}

.lp-contact-form input,
.lp-contact-form textarea,
.lp-contact-form select {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text-main);
}

.lp-contact-form select option { color: #111; }

.lp-contact-form input:focus,
.lp-contact-form textarea:focus,
.lp-contact-form select:focus {
  border-color: var(--primary);
  outline: none;
}

.lp-btn-full { width: 100%; justify-content: center; }

.lp-form-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.lp-cta-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-cta-buttons,
.lp-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ════════════════════════════════════════════════════════════
   FEATURES PAGE
═══════════════════════════════════════════════════════════ */

/* ── Tag color variants ──────────────────────────────────── */
.lp-tag--blue   { color: var(--primary);  background: rgba(0,87,255,.08);    border-color: rgba(0,87,255,.15); }
.lp-tag--green  { color: var(--accent);   background: rgba(0,198,167,.08);   border-color: rgba(0,198,167,.15); }
.lp-tag--purple { color: var(--accent2);  background: rgba(139,92,246,.08);  border-color: rgba(139,92,246,.15); }
.lp-tag--orange { color: var(--warn);     background: rgba(255,107,44,.08);  border-color: rgba(255,107,44,.15); }

/* ── Features Hero ───────────────────────────────────────── */
.lp-feat-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #F0F4FF 0%, #EEF9F6 50%, #F5F0FF 100%);
  padding: 100px 28px 72px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.lp-feat-hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: .35;
}
.lp-feat-hero-bg-blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,87,255,.25) 0%, transparent 65%);
  top: -200px; left: -150px;
}
.lp-feat-hero-bg-blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,.2) 0%, transparent 65%);
  bottom: -180px; right: -120px;
}

.lp-feat-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
  margin: 0 auto 18px;
  max-width: 780px;
}

.lp-feat-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.lp-feat-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.lp-feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

/* ── Feature Spotlights ──────────────────────────────────── */
.lp-feat-spot {
  padding: 88px 28px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.lp-feat-spot--alt {
  background: linear-gradient(160deg, #F8FAFF 0%, #F0FDF9 100%);
}

.lp-feat-spot-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lp-feat-spot--flip .lp-feat-spot-grid {
  direction: rtl;
}
.lp-feat-spot--flip .lp-feat-spot-grid > * {
  direction: ltr;
}

.lp-feat-spot-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-feat-spot-title {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
  margin: 0 0 14px;
}

.lp-feat-spot-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 22px;
}

.lp-feat-spot-bullets {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-feat-spot-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.lp-bullet-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-bullet-dot--blue   { background: var(--primary); }
.lp-bullet-dot--green  { background: var(--accent); }
.lp-bullet-dot--purple { background: var(--accent2); }
.lp-bullet-dot--orange { background: var(--warn); }

.lp-feat-spot-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-feat-spot-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.lp-feat-spot-link:hover { color: var(--primary); gap: 8px; }

/* Visual column */
.lp-feat-spot-visual {
  position: relative;
}

.lp-feat-spot-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
  aspect-ratio: 16 / 10;
  background: #F1F5FF;
  z-index: 1;
}

.lp-feat-spot-img-card--blue   { border-top: 3px solid var(--primary); }
.lp-feat-spot-img-card--green  { border-top: 3px solid var(--accent); }
.lp-feat-spot-img-card--purple { border-top: 3px solid var(--accent2); }
.lp-feat-spot-img-card--orange { border-top: 3px solid var(--warn); }

.lp-feat-spot-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.lp-feat-spot-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
  opacity: .4;
  font-size: 13px;
  font-weight: 600;
}

/* Decorative blobs behind card */
.lp-feat-spot-blob {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .18;
  z-index: 0;
  pointer-events: none;
  bottom: -80px; right: -80px;
}
.lp-feat-spot-blob--blue   { background: var(--primary); }
.lp-feat-spot-blob--green  { background: var(--accent); }
.lp-feat-spot-blob--purple { background: var(--accent2); }
.lp-feat-spot-blob--orange { background: var(--warn); }

/* Floating badge over image */
.lp-feat-spot-badge {
  position: absolute;
  bottom: -16px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  z-index: 2;
}
.lp-feat-spot-badge--blue   svg { color: var(--primary); }
.lp-feat-spot-badge--green  svg { color: var(--accent); }
.lp-feat-spot-badge--purple svg { color: var(--accent2); }
.lp-feat-spot-badge--orange svg { color: var(--warn); }

/* ── Module cards grid ───────────────────────────────────── */
.lp-feat-modules-section {
  background: linear-gradient(160deg, #F8FAFF 0%, #F0FFF9 100%);
}

.lp-feat-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.lp-feat-module-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.lp-feat-module-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent2));
  opacity: 0;
  transition: opacity .25s;
}

.lp-feat-module-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(0,87,255,.2);
}
.lp-feat-module-card:hover::after { opacity: 1; }

.lp-feat-module-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.lp-feat-module-icon--blue   { background: rgba(0,87,255,.1);    color: var(--primary); }
.lp-feat-module-icon--green  { background: rgba(0,198,167,.1);   color: var(--accent); }
.lp-feat-module-icon--purple { background: rgba(139,92,246,.1);  color: var(--accent2); }
.lp-feat-module-icon--orange { background: rgba(255,107,44,.1);  color: var(--warn); }

.lp-feat-module-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 8px;
}

.lp-feat-module-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Features CTA Section ────────────────────────────────── */
.lp-feat-cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0057FF 0%, #8B5CF6 60%, #00C6A7 100%);
  padding: 80px 28px;
  text-align: center;
}

.lp-feat-cta-bg-blob {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 65%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.lp-feat-cta-section .lp-feat-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #ffffff !important;
  line-height: 1.15;
  margin: 0 auto 16px;
  max-width: 700px;
}

.lp-feat-cta-section .lp-feat-cta-title .lp-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-feat-cta-section .lp-feat-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,.85) !important;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Force all text in the CTA to be white */
.lp-feat-cta-section h1,
.lp-feat-cta-section h2,
.lp-feat-cta-section h3,
.lp-feat-cta-section p,
.lp-feat-cta-section span:not(.lp-gradient-text) {
  color: #ffffff !important;
}

.lp-feat-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* "Start Free Trial" — white pill, primary-colored label */
.lp-feat-cta-section .lp-btn-primary {
  background: #ffffff !important;
  color: var(--primary) !important;
  border: none;
  font-weight: 700;
}
.lp-feat-cta-section .lp-btn-primary svg {
  color: var(--primary) !important;
  stroke: var(--primary) !important;
}
.lp-feat-cta-section .lp-btn-primary:hover {
  background: rgba(255,255,255,.9) !important;
  color: var(--primary) !important;
}

/* "Chat with Expert" — keep its own green style intact */
.lp-feat-cta-section .lp-btn-wa {
  color: #fff !important;
}

/* Section tag inside CTA */
.lp-feat-cta-section .lp-section-tag {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE — Full Revamp
═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.lp-price-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 16px 90px;
  background: linear-gradient(145deg, #0C1A3A 0%, #0D3577 55%, #1C0D5E 100%);
  text-align: center;
}
.lp-price-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 1;
}
.lp-price-hero-blob--1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(0,87,255,.35) 0%, transparent 70%);
  top: -220px; left: -160px;
}
.lp-price-hero-blob--2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(139,92,246,.3) 0%, transparent 70%);
  bottom: -160px; right: -100px;
}
.lp-price-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff !important;
  line-height: 1.15;
  margin: 0 auto 20px;
  max-width: 820px;
}
.lp-price-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.78) !important;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.lp-price-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
/* Hero badges reuse .lp-feat-badge — override text colour for dark bg */
.lp-price-hero .lp-feat-badge {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
}

/* ── Billing Toggle ───────────────────────────────────────── */
.lp-price-plans {
  background: #F8FAFC;
}
.lp-price-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.lp-price-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .4px;
}
.lp-price-toggle {
  display: flex;
  background: #E9EEF5;
  border-radius: 50px;
  padding: 4px;
  border: 1px solid var(--glass-border);
  gap: 0;
}
.lp-price-toggle-opt {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.lp-price-toggle-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.lp-price-toggle-opt span {
  display: block;
  padding: 9px 26px;
  border-radius: 46px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .25s ease;
  white-space: nowrap;
}
.lp-price-toggle-opt input:checked ~ span {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,87,255,.32);
}

/* ── Plan Cards Grid ──────────────────────────────────────── */
.lp-price-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.lp-price-card {
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: var(--shadow-soft);
}
.lp-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,.11);
}
.lp-price-card--featured {
  background: linear-gradient(155deg, #0057FF 0%, #4338CA 100%);
  border-color: transparent;
  transform: translateY(-18px);
  box-shadow: 0 30px 80px rgba(0,87,255,.38);
}
.lp-price-card--featured:hover {
  transform: translateY(-24px);
  box-shadow: 0 40px 90px rgba(0,87,255,.46);
}

/* "Most Popular" ribbon */
.lp-price-card-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--accent), #00A88E);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: .7px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,198,167,.35);
}

/* Card header */
.lp-price-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.lp-price-card-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-price-card:not(.lp-price-card--featured) .lp-price-card-icon {
  background: linear-gradient(135deg, rgba(0,87,255,.12), rgba(0,198,167,.1));
  color: var(--primary);
}
.lp-price-card--featured .lp-price-card-icon {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.lp-price-card-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 3px;
  line-height: 1.2;
}
.lp-price-card:not(.lp-price-card--featured) .lp-price-card-name { color: var(--text-main); }
.lp-price-card--featured .lp-price-card-name                      { color: #fff !important; }
.lp-price-card-tagline {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}
.lp-price-card:not(.lp-price-card--featured) .lp-price-card-tagline { color: var(--text-muted); }
.lp-price-card--featured .lp-price-card-tagline                      { color: rgba(255,255,255,.72) !important; }

/* Discount badge on card */
.lp-price-dis-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.lp-price-card:not(.lp-price-card--featured) .lp-price-dis-badge {
  background: rgba(0,198,167,.12);
  color: var(--accent);
}
.lp-price-card--featured .lp-price-dis-badge {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* Price amount block */
.lp-price-amount-wrap {
  margin: 14px 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid;
}
.lp-price-card:not(.lp-price-card--featured) .lp-price-amount-wrap { border-color: var(--glass-border); }
.lp-price-card--featured .lp-price-amount-wrap                      { border-color: rgba(255,255,255,.22); }

.lp-price-block { display: block; }

.lp-price-orig {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}
.lp-price-card:not(.lp-price-card--featured) .lp-price-orig { color: #94A3B8; }
.lp-price-card--featured .lp-price-orig                      { color: rgba(255,255,255,.45) !important; }

.lp-price-main {
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.lp-price-card:not(.lp-price-card--featured) .lp-price-main { color: var(--text-main); }
.lp-price-card--featured .lp-price-main                      { color: #fff !important; }

.lp-price-period {
  font-size: 12px;
  margin: 6px 0 0;
}
.lp-price-card:not(.lp-price-card--featured) .lp-price-period { color: var(--text-muted); }
.lp-price-card--featured .lp-price-period                      { color: rgba(255,255,255,.65) !important; }

/* Feature list */
.lp-price-feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.lp-price-feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
}
.lp-price-card:not(.lp-price-card--featured) .lp-price-feat-list li { color: var(--text-muted); }
.lp-price-card--featured .lp-price-feat-list li                      { color: rgba(255,255,255,.84) !important; }

/* Feature icons */
.lp-price-fi {
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}
.lp-price-fi--yes { background: rgba(0,198,167,.14); color: var(--accent); }
.lp-price-fi--no  { background: rgba(255,107,44,.1);  color: var(--warn);  }
.lp-price-fi--inf,
.lp-price-fi--val { background: rgba(0,87,255,.1);    color: var(--primary); font-size: 13px; }

.lp-price-card--featured .lp-price-fi--yes,
.lp-price-card--featured .lp-price-fi--no,
.lp-price-card--featured .lp-price-fi--inf,
.lp-price-card--featured .lp-price-fi--val {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.lp-price-fname { flex: 1; }

/* Card CTA */
.lp-price-card-cta { margin-top: 4px; }
.lp-price-card-cta .lp-btn-primary {
  width: 100%;
  justify-content: center;
  text-align: center;
  display: flex;
}
.lp-price-card--featured .lp-price-card-cta .lp-btn-primary,
.lp-price-card--featured .lp-btn-primary {
  background: #ffffff !important;
  color: var(--primary) !important;
  border-color: transparent !important;
}
.lp-price-card--featured .lp-price-card-cta .lp-btn-primary:hover,
.lp-price-card--featured .lp-btn-primary:hover {
  background: rgba(255,255,255,.9) !important;
  box-shadow: 0 6px 24px rgba(255,255,255,.28) !important;
}
.lp-price-card--featured .lp-price-card-cta .lp-btn-primary svg {
  stroke: var(--primary) !important;
}

/* ── Trust Section ────────────────────────────────────────── */
.lp-price-trust { background: #fff; }
.lp-price-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.lp-price-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.lp-price-trust-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-price-trust-icon--blue   { background: rgba(0,87,255,.1);   color: var(--primary); }
.lp-price-trust-icon--green  { background: rgba(0,198,167,.1);  color: var(--accent);  }
.lp-price-trust-icon--purple { background: rgba(139,92,246,.1); color: var(--accent2); }
.lp-price-trust-icon--orange { background: rgba(255,107,44,.1); color: var(--warn);    }
.lp-price-trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main) !important;
  margin: 0;
}
.lp-price-trust-item p {
  font-size: 13px;
  color: var(--text-muted) !important;
  margin: 0;
  line-height: 1.65;
}

/* ── FAQ Section ──────────────────────────────────────────── */
.lp-price-faq { background: #F8FAFC; }
.lp-price-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.lp-price-faq-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .25s, transform .25s;
}
.lp-price-faq-item:hover {
  box-shadow: 0 10px 34px rgba(0,87,255,.1);
  transform: translateY(-2px);
}
.lp-price-faq-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(0,87,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.lp-price-faq-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main) !important;
  margin: 0 0 6px;
}
.lp-price-faq-item p {
  font-size: 13px;
  color: var(--text-muted) !important;
  margin: 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   BLOG PAGE — Full Revamp
═══════════════════════════════════════════════════════════ */

/* ── Blog Hero ─────────────────────────────────────────────── */
.lp-blog-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 16px 0;
  background: linear-gradient(145deg, #12082E 0%, #1D1060 42%, #0D1B45 100%);
  text-align: center;
}
.lp-blog-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.lp-blog-hero-blob--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(139,92,246,.32) 0%, transparent 70%);
  top: -180px; left: -120px;
}
.lp-blog-hero-blob--2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,87,255,.28) 0%, transparent 70%);
  bottom: -180px; right: -100px;
}
.lp-blog-hero-tag {
  background: rgba(139,92,246,.12) !important;
  border-color: rgba(139,92,246,.35) !important;
  color: #a78bfa !important;
}
.lp-blog-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff !important;
  line-height: 1.15;
  margin: 0 auto 18px;
  max-width: 800px;
}
.lp-blog-hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,.75) !important;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.lp-blog-hero-sub strong { color: rgba(255,255,255,.95); }

/* ── Category Filter Pills ────────────────────────────────── */
.lp-blog-cat-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 24px 0 36px;
}
.lp-blog-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8) !important;
  transition: all .25s ease;
  backdrop-filter: blur(8px);
}
.lp-blog-cat-pill:hover,
.lp-blog-cat-pill--active {
  background: rgba(255,255,255,.95);
  border-color: transparent;
  color: var(--text-main) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transform: translateY(-1px);
}
.lp-blog-cat-pill--blue.lp-blog-cat-pill--active   { background: var(--primary); color: #fff !important; }
.lp-blog-cat-pill--green.lp-blog-cat-pill--active  { background: var(--accent);  color: #fff !important; }
.lp-blog-cat-pill--purple.lp-blog-cat-pill--active { background: var(--accent2); color: #fff !important; }
.lp-blog-cat-pill--orange.lp-blog-cat-pill--active { background: var(--warn);    color: #fff !important; }
.lp-blog-cat-pill--blue.lp-blog-cat-pill--active,
.lp-blog-cat-pill--green.lp-blog-cat-pill--active,
.lp-blog-cat-pill--purple.lp-blog-cat-pill--active,
.lp-blog-cat-pill--orange.lp-blog-cat-pill--active { border-color: transparent; box-shadow: 0 4px 16px rgba(0,0,0,.25); }

/* ── Blog Main Section ────────────────────────────────────── */
.lp-blog-main { background: #F8FAFC; }

/* ── Empty State ──────────────────────────────────────────── */
.lp-blog-empty {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.lp-blog-empty-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0,87,255,.08), rgba(0,198,167,.08));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.lp-blog-empty h3 { color: var(--text-main) !important; margin-bottom: 10px; }
.lp-blog-empty p  { color: var(--text-muted) !important; margin-bottom: 24px; }

/* ── Featured Post ────────────────────────────────────────── */
.lp-blog-featured {
  display: grid;
  grid-template-columns: 55% 1fr;
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 36px;
  transition: box-shadow .3s, transform .3s;
}
.lp-blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.1);
}
.lp-blog-featured__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.lp-blog-featured__img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.lp-blog-featured:hover .lp-blog-featured__img { transform: scale(1.04); }
.lp-blog-featured__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(0,0,0,.04) 100%);
  pointer-events: none;
}
.lp-blog-featured__content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-blog-featured__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.lp-blog-featured__title a {
  color: var(--text-main) !important;
  text-decoration: none;
  transition: color .2s;
}
.lp-blog-featured__title a:hover { color: var(--primary) !important; }
.lp-blog-featured__excerpt {
  font-size: 15px;
  color: var(--text-muted) !important;
  line-height: 1.7;
  margin-bottom: 24px;
}
.lp-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-blog-meta-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted) !important;
  font-weight: 500;
}

/* ── Post Cards Grid ──────────────────────────────────────── */
.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.lp-blog-card {
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.lp-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}
.lp-blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.lp-blog-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.lp-blog-card:hover .lp-blog-card__img { transform: scale(1.06); }
.lp-blog-card__cat {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: opacity .2s;
}
.lp-blog-card__body {
  padding: 20px 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lp-blog-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-blog-card__title a {
  color: var(--text-main) !important;
  text-decoration: none;
  transition: color .2s;
}
.lp-blog-card__title a:hover { color: var(--primary) !important; }
.lp-blog-card__excerpt {
  font-size: 13px;
  color: var(--text-muted) !important;
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
}
.lp-blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted) !important;
}
.lp-blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary) !important;
  text-decoration: none;
  transition: gap .2s;
}
.lp-blog-card__more:hover { gap: 8px; }

/* ── Pagination ───────────────────────────────────────────── */
.lp-blog-pagination {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.lp-blog-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.lp-blog-pagination .pagination a,
.lp-blog-pagination .pagination span.current,
.lp-blog-pagination > a,
.lp-blog-pagination > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.lp-blog-pagination .pagination a,
.lp-blog-pagination > a {
  background: #fff;
  border: 1.5px solid var(--glass-border);
  color: var(--text-muted) !important;
}
.lp-blog-pagination .pagination a:hover,
.lp-blog-pagination > a:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  box-shadow: 0 2px 10px rgba(0,87,255,.15);
}
.lp-blog-pagination .pagination .current,
.lp-blog-pagination > span.current {
  background: var(--primary);
  border: 1.5px solid var(--primary);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0,87,255,.3);
}

/* ═══════════════════════════════════════════════════════════
   SINGLE POST PAGE — Full Revamp
═══════════════════════════════════════════════════════════ */

/* ── Post Header ──────────────────────────────────────────── */
.lp-post-header {
  position: relative;
  overflow: hidden;
  padding: 130px 16px 60px;
  background: linear-gradient(145deg, #071E2A 0%, #0A4040 50%, #082B45 100%);
}
.lp-post-header-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.lp-post-header-blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,198,167,.3) 0%, transparent 70%);
  top: -200px; left: -150px;
}
.lp-post-header-blob--2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,87,255,.25) 0%, transparent 70%);
  bottom: -160px; right: -80px;
}
/* Breadcrumb */
.lp-post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 13px;
  flex-wrap: wrap;
}
.lp-post-breadcrumb a {
  color: rgba(255,255,255,.65) !important;
  text-decoration: none;
  transition: color .2s;
}
.lp-post-breadcrumb a:hover { color: rgba(255,255,255,.95) !important; }
.lp-post-breadcrumb svg  { color: rgba(255,255,255,.4); stroke: rgba(255,255,255,.4); flex-shrink: 0; }
.lp-post-breadcrumb span {
  color: rgba(255,255,255,.45) !important;
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Category tag on dark bg */
.lp-post-cat-tag                     { border-color: rgba(255,255,255,.2) !important; }
.lp-post-cat-tag.lp-tag--blue        { background: rgba(0,87,255,.28)   !important; color: rgba(255,255,255,.9) !important; }
.lp-post-cat-tag.lp-tag--green       { background: rgba(0,198,167,.28)  !important; color: rgba(255,255,255,.9) !important; }
.lp-post-cat-tag.lp-tag--purple      { background: rgba(139,92,246,.28) !important; color: rgba(255,255,255,.9) !important; }
.lp-post-cat-tag.lp-tag--orange      { background: rgba(255,107,44,.28) !important; color: rgba(255,255,255,.9) !important; }
/* Post title */
.lp-post-header__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff !important;
  line-height: 1.15;
  max-width: 860px;
  margin-bottom: 22px;
}
/* Post meta */
.lp-post-header__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-post-header__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.7) !important;
  font-weight: 500;
}
.lp-post-header__meta svg { stroke: rgba(255,255,255,.5); flex-shrink: 0; }

/* ── Post Content Section ─────────────────────────────────── */
.lp-post-content-section { background: #F8FAFC; }

/* ── Post Layout (2-col) ──────────────────────────────────── */
.lp-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.lp-post-main { display: flex; flex-direction: column; gap: 24px; }

/* Featured image */
.lp-post-feat-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--glass-border);
}
.lp-post-feat-img img {
  width: 100%; display: block;
  max-height: 480px; object-fit: cover;
}
/* Content card */
.lp-post-content-card {
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-soft);
}
/* Article body typography */
.lp-post-body { font-size: 16px; line-height: 1.85; color: var(--text-main) !important; }
.lp-post-body h1,.lp-post-body h2,.lp-post-body h3,
.lp-post-body h4,.lp-post-body h5,.lp-post-body h6 {
  color: var(--text-main) !important; font-weight: 700; margin: 1.6em 0 .6em; line-height: 1.25;
}
.lp-post-body p  { margin-bottom: 1.1em; color: var(--text-main) !important; }
.lp-post-body a  { color: var(--primary) !important; text-decoration: underline; }
.lp-post-body ul,.lp-post-body ol { padding-left: 1.5em; margin-bottom: 1em; }
.lp-post-body li { margin-bottom: .4em; }
.lp-post-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 1em 0; }
.lp-post-body blockquote {
  border-left: 4px solid var(--primary);
  margin: 1.5em 0; padding: 12px 20px;
  background: rgba(0,87,255,.04); border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--text-muted) !important;
}
.lp-post-body code {
  background: #F1F5F9; padding: 2px 6px; border-radius: 4px;
  font-size: .875em; color: var(--accent2) !important;
}
.lp-post-body pre {
  background: #1E293B; color: #E2E8F0 !important;
  padding: 20px 24px; border-radius: 10px; overflow-x: auto; margin: 1.5em 0;
}
/* Tags */
.lp-post-tags {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding-top: 20px; margin-top: 20px;
  border-top: 1px solid var(--glass-border);
}
.lp-post-tags__label {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; color: var(--text-muted) !important;
  text-transform: uppercase; letter-spacing: .4px;
}
.lp-post-tag {
  display: inline-flex; padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: rgba(0,87,255,.08); border: 1px solid rgba(0,87,255,.15);
  color: var(--primary) !important; text-decoration: none; transition: background .2s, border-color .2s;
}
.lp-post-tag:hover { background: rgba(0,87,255,.15); border-color: rgba(0,87,255,.28); color: var(--primary) !important; }
/* Section headings */
.lp-post-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.lp-post-section-head-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0,87,255,.1); display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.lp-post-section-head h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-main) !important; margin: 0; }
.lp-post-comment-count  { color: var(--text-muted); font-weight: 400; font-size: .9em; }
/* Comments section */
.lp-post-comments,
.lp-post-comment-form {
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
}
.lp-comment-list { display: flex; flex-direction: column; gap: 14px; }
.lp-comment {
  display: flex; gap: 14px; padding: 16px;
  background: #F8FAFC; border-radius: var(--radius); border: 1px solid var(--glass-border);
}
.lp-comment__avatar {
  width: 42px; height: 42px; min-width: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; flex-shrink: 0;
}
.lp-comment__body  { flex: 1; }
.lp-comment__meta  { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.lp-comment__author { font-size: 14px; font-weight: 700; color: var(--text-main) !important; }
.lp-comment__date   { font-size: 12px; color: var(--text-muted) !important; }
.lp-comment__text   { font-size: 14px; color: var(--text-muted) !important; line-height: 1.65; margin: 0; }
/* Comment form / lp-form-control */
.lp-form { margin: 0; }
.lp-form-control {
  width: 100%; display: block;
  padding: 10px 14px;
  border: 1.5px solid var(--glass-border);
  border-radius: 10px; font-size: 14px;
  color: var(--text-main) !important;
  background: #F8FAFC;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.lp-form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,87,255,.1); background: #fff;
}
.lp-form-control::placeholder { color: var(--text-muted); }
textarea.lp-form-control { resize: vertical; min-height: 100px; }

/* ── Post Sidebar ─────────────────────────────────────────── */
.lp-post-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-blog-widget {
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-soft);
}
.lp-blog-widget__title {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  color: var(--text-main) !important;
  margin: 0 0 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}
.lp-blog-widget__title svg { color: var(--primary); stroke: var(--primary); }
/* Category list */
.lp-blog-widget-cats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.lp-blog-widget-cats li { margin: 0; }
.lp-blog-widget-cat {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  text-decoration: none; transition: background .2s;
}
.lp-blog-widget-cat:hover { background: var(--glass); }
.lp-blog-widget-cat--active { background: rgba(0,87,255,.06) !important; }
.lp-blog-widget-cat__dot {
  width: 8px; height: 8px; min-width: 8px; border-radius: 50%; flex-shrink: 0;
}
.lp-blog-widget-cat__dot--blue   { background: var(--primary); }
.lp-blog-widget-cat__dot--green  { background: var(--accent);  }
.lp-blog-widget-cat__dot--purple { background: var(--accent2); }
.lp-blog-widget-cat__dot--orange { background: var(--warn);    }
.lp-blog-widget-cat__name {
  flex: 1; font-size: 13px; color: var(--text-muted) !important; font-weight: 500; transition: color .2s;
}
.lp-blog-widget-cat:hover .lp-blog-widget-cat__name,
.lp-blog-widget-cat--active .lp-blog-widget-cat__name { color: var(--primary) !important; }
.lp-blog-widget-cat__count {
  font-size: 11px; font-weight: 700; padding: 2px 8px;
  border-radius: 999px; background: var(--glass); color: var(--text-muted) !important;
}
/* Related posts */
.lp-blog-widget-posts { display: flex; flex-direction: column; gap: 10px; }
.lp-blog-widget-post {
  display: flex; gap: 12px; text-decoration: none;
  transition: background .2s; padding: 8px; border-radius: 10px;
}
.lp-blog-widget-post:hover { background: var(--glass); }
.lp-blog-widget-post__img {
  width: 64px; height: 64px; min-width: 64px;
  border-radius: 8px; overflow: hidden; flex-shrink: 0;
}
.lp-blog-widget-post__img img { width: 100%; height: 100%; object-fit: cover; }
.lp-blog-widget-post__info  { display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.lp-blog-widget-post__title {
  font-size: 13px; font-weight: 600; color: var(--text-main) !important;
  line-height: 1.4; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s;
}
.lp-blog-widget-post:hover .lp-blog-widget-post__title { color: var(--primary) !important; }
.lp-blog-widget-post__date { font-size: 11px; color: var(--text-muted) !important; }
/* Sidebar CTA */
.lp-blog-widget--cta {
  background: linear-gradient(135deg, var(--primary) 0%, #4338CA 100%);
  text-align: center; padding: 28px 22px;
}
.lp-blog-widget-cta-icon {
  width: 52px; height: 52px; margin: 0 auto 14px;
  background: rgba(255,255,255,.15); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.lp-blog-widget--cta h4 { font-size: 15px; font-weight: 700; color: #fff !important; margin-bottom: 8px; }
.lp-blog-widget--cta p  { font-size: 13px; color: rgba(255,255,255,.78) !important; margin-bottom: 18px; line-height: 1.6; }
.lp-blog-widget--cta .lp-btn-primary {
  background: #fff !important; color: var(--primary) !important;
  border-color: transparent !important; width: 100%; justify-content: center; display: flex;
}
.lp-blog-widget--cta .lp-btn-primary svg   { stroke: var(--primary) !important; }
.lp-blog-widget--cta .lp-btn-primary:hover { background: rgba(255,255,255,.92) !important; }

/* ── FAQ Page ──────────────────────────────────────────────────────────────
   Hero · Topic Cards · Accordion · Support Channels
   ─────────────────────────────────────────────────────────────────────── */

/* ── FAQ Hero ──────────────────────────────────────────────────────────── */
.lp-faq-hero {
  position: relative;
  background: linear-gradient(145deg, #12082E 0%, #1D1060 42%, #0D1B45 100%);
  padding: 120px 16px 0;
  overflow: hidden;
  text-align: center;
}
.lp-faq-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; opacity: .18;
}
.lp-faq-blob--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #8B5CF6, transparent 70%);
  top: -120px; left: -100px;
}
.lp-faq-blob--2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #0057FF, transparent 70%);
  top: -60px; right: -80px;
}
.lp-faq-blob--3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #00C6A7, transparent 70%);
  bottom: 60px; left: 50%; transform: translateX(-50%);
  opacity: .10;
}
.lp-faq-hero-inner {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
  padding-bottom: 56px;
}
.lp-faq-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.15;
  color: #fff; margin: 20px 0 18px;
  letter-spacing: -.5px;
}
.lp-faq-hero-sub {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 600px; margin: 0 auto 36px;
}
/* search bar */
.lp-faq-search { max-width: 540px; margin: 0 auto 36px; }
.lp-faq-search-wrap {
  position: relative;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 50px;
  display: flex; align-items: center;
  padding: 0 18px;
  backdrop-filter: blur(8px);
  transition: border-color .2s, background .2s;
}
.lp-faq-search-wrap:focus-within {
  background: rgba(255,255,255,.15);
  border-color: rgba(139,92,246,.7);
  box-shadow: 0 0 0 3px rgba(139,92,246,.18);
}
.lp-faq-search-icon  { color: rgba(255,255,255,.55); flex-shrink: 0; }
.lp-faq-search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #fff; font-size: 15px; padding: 14px 12px;
  font-family: inherit;
}
.lp-faq-search-input::placeholder { color: rgba(255,255,255,.45); }
.lp-faq-search-kbd {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px; padding: 2px 7px;
  flex-shrink: 0; pointer-events: none;
}
/* stats strip */
.lp-faq-stats-strip {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 60px; padding: 12px 28px;
  backdrop-filter: blur(6px);
}
.lp-faq-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 20px;
}
.lp-faq-stat-val  { font-size: 18px; font-weight: 800; color: #fff; line-height: 1.1; }
.lp-faq-stat-lbl  { font-size: 11px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.lp-faq-stat-sep  { width: 1px; height: 30px; background: rgba(255,255,255,.18); flex-shrink: 0; }
/* wave divider */
.lp-faq-hero-wave { position: relative; z-index: 2; line-height: 0; }
.lp-faq-hero-wave svg { display: block; width: 100%; height: 72px; }

/* ── FAQ Topic Cards ────────────────────────────────────────────────────── */
.lp-faq-topics { background: #F8FAFC; }
.lp-faq-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 52px;
}
.lp-faq-topic-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative; overflow: hidden;
}
.lp-faq-topic-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0; transition: opacity .2s;
}
.lp-faq-topic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
  text-decoration: none;
}
.lp-faq-topic-card:hover::before { opacity: 1; }
/* colour variants */
.lp-faq-topic-card--blue   .lp-faq-topic-icon { background: rgba(0,87,255,.08);    color: var(--primary); }
.lp-faq-topic-card--blue::before               { background: linear-gradient(90deg, var(--primary), #4F8AFF); }
.lp-faq-topic-card--green  .lp-faq-topic-icon { background: rgba(0,198,167,.10);   color: var(--accent); }
.lp-faq-topic-card--green::before              { background: linear-gradient(90deg, var(--accent), #00E5C3); }
.lp-faq-topic-card--purple .lp-faq-topic-icon { background: rgba(139,92,246,.10);  color: var(--accent2); }
.lp-faq-topic-card--purple::before             { background: linear-gradient(90deg, var(--accent2), #B97AFF); }
.lp-faq-topic-card--orange .lp-faq-topic-icon { background: rgba(255,107,44,.10);  color: var(--warn); }
.lp-faq-topic-card--orange::before             { background: linear-gradient(90deg, var(--warn), #FF9A6C); }
.lp-faq-topic-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
  transition: transform .2s;
}
.lp-faq-topic-card:hover .lp-faq-topic-icon { transform: scale(1.08); }
.lp-faq-topic-body { flex: 1; }
.lp-faq-topic-body h4 { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.lp-faq-topic-body p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.lp-faq-topic-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--glass-border);
}
.lp-faq-topic-count {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text-muted); font-weight: 500;
}
.lp-faq-topic-arrow {
  color: var(--text-muted); display: flex;
  transition: color .2s, transform .2s;
}
.lp-faq-topic-card:hover .lp-faq-topic-arrow { color: var(--primary); transform: translateX(4px); }

/* ── FAQ Accordion ──────────────────────────────────────────────────────── */
.lp-faq-main { background: #fff; }
.lp-faq-list {
  max-width: 820px; margin: 52px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.lp-faq-item {
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.lp-faq-item:hover { border-color: rgba(0,87,255,.2); }
.lp-faq-item.is-open {
  border-color: rgba(0,87,255,.3);
  box-shadow: 0 4px 24px rgba(0,87,255,.09);
}
.lp-faq-item-head {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; background: transparent;
  border: none; cursor: pointer; text-align: left;
  transition: background .15s;
}
.lp-faq-item-head:hover                { background: rgba(0,87,255,.03); }
.lp-faq-item.is-open .lp-faq-item-head { background: rgba(0,87,255,.04); }
.lp-faq-item-num {
  font-size: 12px; font-weight: 700; color: var(--primary);
  background: rgba(0,87,255,.08); border-radius: 8px;
  padding: 4px 8px; flex-shrink: 0;
  min-width: 34px; text-align: center; font-family: monospace;
  transition: background .2s, color .2s;
}
.lp-faq-item.is-open .lp-faq-item-num { background: var(--primary); color: #fff; }
.lp-faq-item-q {
  flex: 1; font-size: 16px; font-weight: 600;
  color: var(--text-main); line-height: 1.45;
}
.lp-faq-item-chevron {
  flex-shrink: 0; color: var(--text-muted); display: flex;
  transition: transform .28s cubic-bezier(.4,0,.2,1), color .2s;
}
.lp-faq-item.is-open .lp-faq-item-chevron { transform: rotate(180deg); color: var(--primary); }
.lp-faq-item-body {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
  padding: 0 22px;
}
.lp-faq-item.is-open .lp-faq-item-body { max-height: 900px; padding-bottom: 24px; }
.lp-faq-item-ans {
  font-size: 15px; color: var(--text-muted); line-height: 1.75;
  border-top: 1px solid var(--glass-border); padding-top: 16px;
}
.lp-faq-item-ans p   { margin: 0 0 12px; }
.lp-faq-item-ans ul,
.lp-faq-item-ans ol  { padding-left: 22px; margin: 8px 0 12px; }
.lp-faq-item-ans li  { margin-bottom: 6px; }
.lp-faq-item-ans a   { color: var(--primary); }
/* empty & no-results states */
.lp-faq-empty-state {
  text-align: center; padding: 72px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lp-faq-empty-icon {
  width: 80px; height: 80px; border-radius: 22px;
  background: rgba(0,87,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.lp-faq-empty-state h3 { font-size: 22px; font-weight: 700; color: var(--text-main); margin: 0; }
.lp-faq-empty-state p  { color: var(--text-muted); margin: 0; max-width: 380px; }
.lp-faq-no-results {
  display: none; flex-direction: column; align-items: center;
  gap: 10px; padding: 52px 24px; text-align: center;
  max-width: 820px; margin: 0 auto;
}
.lp-faq-no-results-icon { font-size: 38px; }
.lp-faq-no-results h3  { font-size: 20px; font-weight: 700; color: var(--text-main); margin: 0; }
.lp-faq-no-results p   { color: var(--text-muted); margin: 0; }

/* ── Support Channels ───────────────────────────────────────────────────── */
.lp-faq-support { background: #F8FAFC; }
.lp-faq-support-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 52px;
}
.lp-faq-support-card {
  background: #fff; border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 36px 28px 28px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.lp-faq-support-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.lp-faq-support-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.lp-faq-support-card--blue::before   { background: linear-gradient(90deg, var(--primary), #4F8AFF); }
.lp-faq-support-card--purple::before { background: linear-gradient(90deg, var(--accent2), #B97AFF); }
.lp-faq-support-card--green::before  { background: linear-gradient(90deg, var(--accent), #00E5C3); }
.lp-faq-support-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex-shrink: 0;
}
.lp-faq-support-card--blue   .lp-faq-support-icon { background: rgba(0,87,255,.08);    color: var(--primary); }
.lp-faq-support-card--purple .lp-faq-support-icon { background: rgba(139,92,246,.09);  color: var(--accent2); }
.lp-faq-support-card--green  .lp-faq-support-icon { background: rgba(0,198,167,.09);   color: var(--accent); }
.lp-faq-support-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.lp-faq-support-card--blue   .lp-faq-support-badge { background: rgba(0,87,255,.07);   color: var(--primary); }
.lp-faq-support-card--purple .lp-faq-support-badge { background: rgba(139,92,246,.08); color: var(--accent2); }
.lp-faq-support-card--green  .lp-faq-support-badge { background: rgba(0,198,167,.08);  color: #009e85; }
.lp-faq-support-card h3 { font-size: 18px; font-weight: 700; color: var(--text-main); margin: 0 0 8px; }
.lp-faq-support-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0 0 22px; flex: 1; }
.lp-faq-support-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  padding: 10px 20px; border-radius: 999px;
  border: 2px solid var(--glass-border);
  color: var(--text-main) !important; text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
  align-self: flex-start; margin-top: auto;
}
.lp-faq-support-card--blue   .lp-faq-support-btn:hover { border-color: var(--primary); background: rgba(0,87,255,.06);   color: var(--primary) !important; }
.lp-faq-support-card--purple .lp-faq-support-btn:hover { border-color: var(--accent2); background: rgba(139,92,246,.06); color: var(--accent2) !important; }
.lp-faq-support-card--green  .lp-faq-support-btn:hover { border-color: var(--accent);  background: rgba(0,198,167,.06);  color: var(--accent) !important; }

/* ════════════════════════════════════════════════════════════════════════
   TERMS OF SERVICE PAGE
   Hero · Highlights Grid · TOC + Article · CTA
   ════════════════════════════════════════════════════════════════════ */

/* ── TC Hero ────────────────────────────────────────────────────────────── */
.lp-tc-hero {
  position: relative;
  background: linear-gradient(145deg, #020D1A 0%, #053330 48%, #041A2E 100%);
  padding: 120px 16px 0;
  overflow: hidden;
  text-align: center;
}
.lp-tc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
}
.lp-tc-blob--1 { width: 520px; height: 520px; background: #00C6A7; top: -160px; left: -100px; }
.lp-tc-blob--2 { width: 380px; height: 380px; background: #0057FF; bottom: 30px; right: -80px; }
.lp-tc-blob--3 { width: 280px; height: 280px; background: #00856F; top: 80px; left: 55%; transform: translateX(-50%); }
.lp-tc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: 56px;
}
.lp-tc-hero-tag {
  border-color: rgba(0,198,167,.35) !important;
  background: rgba(0,198,167,.12) !important;
  color: #4dd9c0 !important;
  display: inline-flex;
  margin-bottom: 22px;
}
.lp-tc-hero-title {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
}
.lp-tc-gradient-text {
  background: linear-gradient(135deg, #00C6A7 0%, #0057FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-tc-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.lp-tc-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.lp-tc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

/* ── Stats strip inside TC hero ─────────────────────────────────────────── */
.lp-tc-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  padding: 18px 32px;
  max-width: 640px;
  margin: 0 auto;
}
.lp-tc-stat { text-align: center; flex: 1; }
.lp-tc-stat-val {
  display: block;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #00C6A7, #0057FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.5px;
}
.lp-tc-stat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-top: 2px;
}
.lp-tc-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.lp-tc-hero-wave { position: relative; z-index: 2; line-height: 0; margin-top: 24px; }
.lp-tc-hero-wave svg { display: block; width: 100%; height: 72px; }

/* ── TC Section tag (teal override) ───────────────────────────────────────── */
.lp-tc-section-tag {
  border-color: rgba(0,198,167,.3) !important;
  background: rgba(0,198,167,.08) !important;
  color: #00856F !important;
}

/* ── Highlights section ──────────────────────────────────────────────────── */
.lp-tc-highlights-section { background: #fff; }
.lp-tc-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.lp-tc-highlight-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px 20px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
  overflow: hidden;
}
.lp-tc-highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: opacity .22s;
}
.lp-tc-highlight-card--blue::before  { background: linear-gradient(135deg,rgba(0,87,255,.04),transparent); }
.lp-tc-highlight-card--green::before { background: linear-gradient(135deg,rgba(0,198,167,.04),transparent); }
.lp-tc-highlight-card--teal::before  { background: linear-gradient(135deg,rgba(0,150,160,.04),transparent); }
.lp-tc-highlight-card:hover { transform: translateY(-4px); border-color: transparent; }
.lp-tc-highlight-card--blue:hover  { box-shadow: 0 12px 36px rgba(0,87,255,.12);  border-color: rgba(0,87,255,.25); }
.lp-tc-highlight-card--green:hover { box-shadow: 0 12px 36px rgba(0,198,167,.12); border-color: rgba(0,198,167,.25); }
.lp-tc-highlight-card--teal:hover  { box-shadow: 0 12px 36px rgba(0,150,160,.12); border-color: rgba(0,150,160,.25); }
.lp-tc-highlight-card:hover::before { opacity: 1; }
.lp-tc-highlight-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-tc-highlight-icon--blue  { background: rgba(0,87,255,.1);  color: #0057FF; }
.lp-tc-highlight-icon--green { background: rgba(0,198,167,.1); color: #00A98F; }
.lp-tc-highlight-icon--teal  { background: rgba(0,150,160,.1); color: #007A7A; }
.lp-tc-highlight-title { font-size: 14.5px; font-weight: 700; color: var(--text-main); margin: 0; line-height: 1.3; }
.lp-tc-highlight-desc  { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; flex: 1; }
.lp-tc-highlight-arrow {
  display: flex; align-items: center;
  color: #CBD5E1;
  transition: color .18s, transform .18s;
}
.lp-tc-highlight-card:hover .lp-tc-highlight-arrow { color: var(--accent); transform: translateX(3px); }

/* ── Content section ─────────────────────────────────────────────────────── */
.lp-tc-content-section { padding-top: 20px !important; }
.lp-tc-content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 80px;
}

/* ── TOC Sidebar ─────────────────────────────────────────────────────────── */
.lp-tc-toc { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.lp-tc-toc-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.lp-tc-toc-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}
.lp-tc-toc-nav { padding: 8px 0; }
.lp-tc-toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .15s, color .15s;
  border-left: 3px solid transparent;
}
.lp-tc-toc-link:hover { background: rgba(0,198,167,.04); color: #00856F; border-left-color: var(--accent); }
.lp-tc-toc-num {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(0,198,167,.7);
  min-width: 20px;
}
.lp-tc-toc-meta {
  padding: 14px 20px;
  border-top: 1px solid #E2E8F0;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-tc-toc-meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
}
.lp-tc-toc-alert {
  background: linear-gradient(135deg,rgba(0,198,167,.08),rgba(0,87,255,.05));
  border: 1.5px solid rgba(0,198,167,.2);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.lp-tc-toc-alert-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(0,198,167,.12);
  color: #00856F;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-tc-toc-alert p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ── Terms Article ────────────────────────────────────────────────────────── */
.lp-tc-article {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 22px;
  padding: 44px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.lp-tc-section { padding: 8px 0 4px; }
.lp-tc-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 16px;
}
.lp-tc-section-badge--blue  { background: rgba(0,87,255,.08);  color: #0057FF; }
.lp-tc-section-badge--green { background: rgba(0,198,167,.09); color: #00A98F; }
.lp-tc-section-badge--teal  { background: rgba(0,150,160,.09); color: #007A7A; }
.lp-tc-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 16px;
  letter-spacing: -.4px;
}
.lp-tc-article p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 16px;
}
.lp-tc-list {
  margin: 0 0 16px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-tc-list li { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.lp-tc-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #E2E8F0 30%, #E2E8F0 70%, transparent);
  margin: 40px 0;
}

/* Callout boxes */
.lp-tc-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0 0;
}
.lp-tc-callout svg { flex-shrink: 0; margin-top: 2px; }
.lp-tc-callout--blue { background: rgba(0,87,255,.06);  color: #0057FF; border-left: 3px solid #0057FF; }
.lp-tc-callout--teal { background: rgba(0,150,160,.06); color: #007A7A; border-left: 3px solid #00A98F; }

/* User accounts — 2×2 responsibility cards */
.lp-tc-responsibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.lp-tc-responsibility-card {
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #F8FAFC;
}
.lp-tc-responsibility-card strong { font-size: 14px; color: var(--text-main); }
.lp-tc-responsibility-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.lp-tc-responsibility-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}

/* Billing — numbered step list */
.lp-tc-billing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}
.lp-tc-billing-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  background: #F8FAFC;
  transition: border-color .18s, box-shadow .18s;
}
.lp-tc-billing-item:hover { border-color: rgba(0,198,167,.3); box-shadow: 0 4px 16px rgba(0,198,167,.07); }
.lp-tc-billing-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00C6A7, #0057FF);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.lp-tc-billing-item strong { display: block; font-size: 14.5px; color: var(--text-main); margin-bottom: 5px; }
.lp-tc-billing-item p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* IP — 3 horizontal chips */
.lp-tc-ip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.lp-tc-ip-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  background: linear-gradient(135deg,rgba(0,198,167,.05),rgba(0,87,255,.03));
  border: 1.5px solid rgba(0,198,167,.15);
  border-radius: 14px;
  padding: 16px 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.lp-tc-ip-card svg { color: var(--accent); flex-shrink: 0; }

/* Contact row */
.lp-tc-contact-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 0; }
.lp-tc-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, transform .18s;
}
.lp-tc-contact-btn:hover { background: #00A98F; transform: translateY(-2px); }
.lp-tc-contact-btn--outline {
  background: transparent;
  border: 1.5px solid #CBD5E1;
  color: var(--text-main) !important;
}
.lp-tc-contact-btn--outline:hover { border-color: var(--accent); color: var(--accent) !important; background: rgba(0,198,167,.05); }

/* ── CMS body (dynamic content) ──────────────────────────────────────────── */
.lp-tc-article-intro {
  display: flex;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg,rgba(0,198,167,.07),rgba(0,87,255,.04));
  border: 1.5px solid rgba(0,198,167,.2);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.lp-tc-article-intro-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(0,198,167,.12);
  color: #00856F;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-tc-article-intro-title { font-size: 17px; font-weight: 800; color: var(--text-main); margin: 0 0 4px; }
.lp-tc-article-intro-sub { font-size: 13px; color: var(--text-muted); margin: 0; }
.lp-tc-cms-body { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.lp-tc-cms-body h1,.lp-tc-cms-body h2 { font-size: 20px; font-weight: 800; color: var(--text-main); margin: 32px 0 14px; letter-spacing: -.3px; }
.lp-tc-cms-body h3 { font-size: 17px; font-weight: 700; color: var(--text-main); margin: 24px 0 10px; }
.lp-tc-cms-body p { margin: 0 0 16px; }
.lp-tc-cms-body ul,.lp-tc-cms-body ol { padding-left: 22px; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.lp-tc-cms-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.lp-tc-cms-body strong { color: var(--text-main); }

/* ── Responsive — 1024px ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-tc-highlights-grid { grid-template-columns: repeat(4, 1fr); }
  .lp-tc-content-grid { grid-template-columns: 240px 1fr; gap: 28px; }
  .lp-tc-responsibility-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-tc-ip-row { grid-template-columns: repeat(3, 1fr); }
  .lp-tc-article { padding: 32px 28px; }
}

/* ════════════════════════════════════════════════════════════════════════
   PRIVACY POLICY PAGE
   Hero · Topics Grid · TOC + Article · CTA
   ════════════════════════════════════════════════════════════════════ */

/* ── PP Hero ────────────────────────────────────────────────────────────── */
.lp-pp-hero {
  position: relative;
  background: linear-gradient(145deg, #0D0F2D 0%, #1E1060 46%, #0A2A4A 100%);
  padding: 120px 16px 0;
  overflow: hidden;
  text-align: center;
}
.lp-pp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
}
.lp-pp-blob--1 { width: 500px; height: 500px; background: #8B5CF6; top: -180px; left: -120px; }
.lp-pp-blob--2 { width: 380px; height: 380px; background: #00C6A7; bottom: 20px; right: -100px; }
.lp-pp-blob--3 { width: 260px; height: 260px; background: #0057FF; top: 60px; left: 50%; transform: translateX(-50%); }
.lp-pp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: 56px;
}
.lp-pp-hero-title {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
}
.lp-pp-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.lp-pp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.lp-pp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
/* ── Stats strip inside hero ────────────────────────────────────────────── */
.lp-pp-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  padding: 18px 32px;
  max-width: 640px;
  margin: 0 auto;
}
.lp-pp-stat { text-align: center; flex: 1; }
.lp-pp-stat-val {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  background: linear-gradient(135deg,#a78bfa,#00C6A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-pp-stat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-top: 2px;
}
.lp-pp-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.lp-pp-hero-wave { position: relative; z-index: 2; line-height: 0; margin-top: 24px; }
.lp-pp-hero-wave svg { display: block; width: 100%; height: 72px; }

/* ── Topics section ─────────────────────────────────────────────────────── */
.lp-pp-topics-section { background: #fff; }
.lp-pp-topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.lp-pp-topic-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px 20px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
  overflow: hidden;
}
.lp-pp-topic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: opacity .22s;
}
.lp-pp-topic-card--blue::before { background: linear-gradient(135deg,rgba(0,87,255,.04),rgba(0,87,255,.01)); }
.lp-pp-topic-card--green::before { background: linear-gradient(135deg,rgba(0,198,167,.04),rgba(0,198,167,.01)); }
.lp-pp-topic-card--purple::before { background: linear-gradient(135deg,rgba(139,92,246,.04),rgba(139,92,246,.01)); }
.lp-pp-topic-card--orange::before { background: linear-gradient(135deg,rgba(255,107,44,.04),rgba(255,107,44,.01)); }
.lp-pp-topic-card:hover { transform: translateY(-4px); border-color: transparent; }
.lp-pp-topic-card--blue:hover { box-shadow: 0 12px 36px rgba(0,87,255,.12); border-color: rgba(0,87,255,.25); }
.lp-pp-topic-card--green:hover { box-shadow: 0 12px 36px rgba(0,198,167,.12); border-color: rgba(0,198,167,.25); }
.lp-pp-topic-card--purple:hover { box-shadow: 0 12px 36px rgba(139,92,246,.12); border-color: rgba(139,92,246,.25); }
.lp-pp-topic-card--orange:hover { box-shadow: 0 12px 36px rgba(255,107,44,.12); border-color: rgba(255,107,44,.25); }
.lp-pp-topic-card:hover::before { opacity: 1; }
.lp-pp-topic-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-pp-topic-icon--blue { background: rgba(0,87,255,.1); color: #0057FF; }
.lp-pp-topic-icon--green { background: rgba(0,198,167,.1); color: #00A98F; }
.lp-pp-topic-icon--purple { background: rgba(139,92,246,.1); color: #7C3AED; }
.lp-pp-topic-icon--orange { background: rgba(255,107,44,.1); color: #D94F10; }
.lp-pp-topic-title { font-size: 14.5px; font-weight: 700; color: var(--text-main); margin: 0; line-height: 1.3; }
.lp-pp-topic-desc { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; flex: 1; }
.lp-pp-topic-arrow {
  display: flex;
  align-items: center;
  color: #CBD5E1;
  transition: color .18s, transform .18s;
}
.lp-pp-topic-card:hover .lp-pp-topic-arrow { color: var(--primary); transform: translateX(3px); }

/* ── Content section (TOC + Article) ───────────────────────────────────── */
.lp-pp-content-section { padding-top: 20px !important; }
.lp-pp-content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 80px;
}

/* ── TOC Sidebar ─────────────────────────────────────────────────────────── */
.lp-pp-toc { position: sticky; top: 100px; }
.lp-pp-toc-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.lp-pp-toc-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}
.lp-pp-toc-nav { padding: 8px 0; }
.lp-pp-toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .15s, color .15s;
  border-left: 3px solid transparent;
}
.lp-pp-toc-link:hover { background: rgba(0,87,255,.04); color: var(--primary); border-left-color: var(--primary); }
.lp-pp-toc-num {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(139,92,246,.6);
  font-variant-numeric: tabular-nums;
  min-width: 20px;
}
.lp-pp-toc-meta {
  padding: 14px 20px;
  border-top: 1px solid #E2E8F0;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-pp-toc-meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Policy Article ───────────────────────────────────────────────────────── */
.lp-pp-article {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 22px;
  padding: 44px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.lp-pp-section { padding: 8px 0 4px; }
.lp-pp-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 16px;
}
.lp-pp-section-badge--blue { background: rgba(0,87,255,.08); color: #0057FF; }
.lp-pp-section-badge--green { background: rgba(0,198,167,.09); color: #00A98F; }
.lp-pp-section-badge--purple { background: rgba(139,92,246,.09); color: #7C3AED; }
.lp-pp-section-badge--orange { background: rgba(255,107,44,.08); color: #D94F10; }
.lp-pp-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 16px;
  letter-spacing: -.4px;
}
.lp-pp-article p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 16px;
}
.lp-pp-list {
  margin: 0 0 16px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-pp-list li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.lp-pp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #E2E8F0 30%, #E2E8F0 70%, transparent);
  margin: 40px 0;
}
/* Callout boxes */
.lp-pp-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0 0;
}
.lp-pp-callout--blue { background: rgba(0,87,255,.06); color: #0057FF; border-left: 3px solid #0057FF; }
.lp-pp-callout--green { background: rgba(0,198,167,.06); color: #00856F; border-left: 3px solid #00C6A7; }
.lp-pp-callout svg { flex-shrink: 0; margin-top: 2px; }

/* How We Use — 4 cards grid */
.lp-pp-use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.lp-pp-use-card {
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-pp-use-card strong { font-size: 14px; color: var(--text-main); }
.lp-pp-use-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.lp-pp-use-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Security — 2-col grid */
.lp-pp-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 20px 0;
}
.lp-pp-security-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px;
}
.lp-pp-security-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(139,92,246,.1);
  color: #7C3AED;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-pp-security-item strong { display: block; font-size: 14px; color: var(--text-main); margin-bottom: 5px; }
.lp-pp-security-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* Cookie table */
.lp-pp-cookie-table {
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  margin: 20px 0;
}
.lp-pp-cookie-row {
  display: grid;
  grid-template-columns: 1.2fr 3fr 1fr;
  gap: 0 16px;
  padding: 13px 20px;
  border-bottom: 1px solid #E2E8F0;
  font-size: 14px;
  align-items: center;
}
.lp-pp-cookie-row:last-child { border-bottom: none; }
.lp-pp-cookie-row--head {
  background: #F8FAFC;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
}
.lp-pp-cookie-row span { color: var(--text-muted); }
.lp-pp-cookie-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.lp-pp-cookie-tag--required { background: rgba(0,87,255,.1); color: #0057FF; }
.lp-pp-cookie-tag--optional { background: rgba(0,198,167,.1); color: #00856F; }

/* Rights — 3-col grid */
.lp-pp-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.lp-pp-right-card {
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-pp-right-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139,92,246,.1);
  border-color: rgba(139,92,246,.3);
}
.lp-pp-right-card svg { color: var(--accent2); flex-shrink: 0; }
.lp-pp-right-card strong { font-size: 14px; color: var(--text-main); }
.lp-pp-right-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* Contact row */
.lp-pp-contact-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 0; }
.lp-pp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent2);
  color: #fff !important;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, transform .18s;
}
.lp-pp-contact-btn:hover { background: #6d28d9; transform: translateY(-2px); }
.lp-pp-contact-btn--outline {
  background: transparent;
  border: 1.5px solid #CBD5E1;
  color: var(--text-main) !important;
}
.lp-pp-contact-btn--outline:hover { border-color: var(--accent2); color: var(--accent2) !important; background: rgba(139,92,246,.05); }

/* CMS content styles */
.lp-pp-article-cms { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.lp-pp-article-cms h2 { font-size: 20px; font-weight: 800; color: var(--text-main); margin: 32px 0 14px; letter-spacing: -.3px; }
.lp-pp-article-cms h3 { font-size: 17px; font-weight: 700; color: var(--text-main); margin: 24px 0 10px; }
.lp-pp-article-cms p { margin: 0 0 16px; }
.lp-pp-article-cms ul, .lp-pp-article-cms ol { padding-left: 22px; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.lp-pp-article-cms a { color: var(--accent2); text-decoration: underline; text-underline-offset: 3px; }

/* ── Responsive — 1024px ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-pp-topics-grid { grid-template-columns: repeat(4, 1fr); }
  .lp-pp-content-grid { grid-template-columns: 240px 1fr; gap: 28px; }
  .lp-pp-rights-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-pp-article { padding: 32px 28px; }
}

/* ── Contact Page ──────────────────────────────────────────────────────────
   Hero · Channels · Form + Sidebar · Direct info
   ─────────────────────────────────────────────────────────────────────── */

/* ── Contact Hero ──────────────────────────────────────────────────────── */
.lp-contact-hero {
  position: relative;
  background: linear-gradient(145deg, #060F1E 0%, #0A2A4A 46%, #072A2E 100%);
  padding: 120px 16px 0;
  overflow: hidden;
  text-align: center;
}
.lp-contact-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.lp-contact-blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,198,167,.80), transparent 70%);
  top: -100px; left: -80px; opacity: .17;
}
.lp-contact-blob--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0,87,255,.75), transparent 70%);
  top: -80px; right: -60px; opacity: .18;
}
.lp-contact-blob--3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,107,44,.65), transparent 70%);
  bottom: 20px; left: 50%; transform: translateX(-50%);
  opacity: .09;
}
.lp-contact-hero-inner {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
  padding-bottom: 60px;
}
.lp-contact-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 800; line-height: 1.15;
  color: #fff; margin: 20px 0 18px;
  letter-spacing: -.4px;
}
.lp-contact-hero-sub {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 580px; margin: 0 auto 34px;
}
.lp-contact-hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.lp-contact-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: 7px 16px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
}
.lp-contact-hero-wave { position: relative; z-index: 2; line-height: 0; }
.lp-contact-hero-wave svg { display: block; width: 100%; height: 72px; }

/* ── Contact Channels ───────────────────────────────────────────────────── */
.lp-contact-channels { background: #F8FAFC; padding-top: 64px; padding-bottom: 64px; }
.lp-contact-channels-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lp-contact-channel-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  position: relative; overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.lp-contact-channel-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3.5px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0; transition: opacity .2s;
}
.lp-contact-channel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: transparent; }
.lp-contact-channel-card:hover::before { opacity: 1; }
.lp-contact-channel-card--blue::before   { background: linear-gradient(90deg, var(--primary), #4F8AFF); }
.lp-contact-channel-card--green::before  { background: linear-gradient(90deg, var(--accent), #00E5C3); }
.lp-contact-channel-card--purple::before { background: linear-gradient(90deg, var(--accent2), #B97AFF); }
.lp-contact-channel-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
  transition: transform .2s;
}
.lp-contact-channel-card:hover .lp-contact-channel-icon { transform: scale(1.08); }
.lp-contact-channel-card--blue   .lp-contact-channel-icon { background: rgba(0,87,255,.08);   color: var(--primary); }
.lp-contact-channel-card--green  .lp-contact-channel-icon { background: rgba(0,198,167,.09);  color: var(--accent); }
.lp-contact-channel-card--purple .lp-contact-channel-icon { background: rgba(139,92,246,.09); color: var(--accent2); }
.lp-contact-channel-body { flex: 1; }
.lp-contact-channel-body h3 { font-size: 17px; font-weight: 700; color: var(--text-main); margin: 0 0 6px; }
.lp-contact-channel-val {
  display: inline-block; font-size: 12.5px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.lp-contact-channel-card--blue   .lp-contact-channel-val { background: rgba(0,87,255,.07);   color: var(--primary); }
.lp-contact-channel-card--green  .lp-contact-channel-val { background: rgba(0,198,167,.08);  color: #009e85; }
.lp-contact-channel-card--purple .lp-contact-channel-val { background: rgba(139,92,246,.08); color: var(--accent2); }
.lp-contact-channel-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0 0 20px; }
.lp-contact-channel-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700;
  padding: 10px 20px; border-radius: 999px;
  border: 2px solid var(--glass-border);
  color: var(--text-main) !important; text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
  margin-top: auto; align-self: flex-start;
}
.lp-contact-channel-card--blue   .lp-contact-channel-btn:hover { border-color: var(--primary); background: rgba(0,87,255,.06);   color: var(--primary) !important; }
.lp-contact-channel-card--green  .lp-contact-channel-btn:hover { border-color: var(--accent);  background: rgba(0,198,167,.06);  color: var(--accent) !important; }
.lp-contact-channel-card--purple .lp-contact-channel-btn:hover { border-color: var(--accent2); background: rgba(139,92,246,.06); color: var(--accent2) !important; }

/* ── Contact Main (Form + Sidebar) ─────────────────────────────────────── */
.lp-contact-main { background: #fff; }
.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* Form card */
.lp-contact-form-card {
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 2px 30px rgba(0,0,0,.06);
}
.lp-contact-form-head { margin-bottom: 28px; }
.lp-contact-form-head h2 { font-size: 1.7rem; font-weight: 800; color: var(--text-main); margin: 0 0 8px; }
.lp-contact-form-head p  { font-size: 14.5px; color: var(--text-muted); margin: 0; }
/* form layout */
.lp-contact-form { display: flex; flex-direction: column; gap: 18px; }
.lp-contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-contact-field { display: flex; flex-direction: column; gap: 7px; }
.lp-contact-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-main);
}
.lp-contact-required { color: #EF4444; font-weight: 700; }
.lp-contact-opt      { font-size: 11px; font-weight: 400; color: var(--text-muted); }
/* select */
.lp-contact-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
/* captcha row */
.lp-contact-captcha-row { display: flex; flex-direction: column; gap: 8px; }
.lp-contact-captcha-hint {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
}
/* submit button */
.lp-contact-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  color: #fff !important; font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 999px; border: none;
  cursor: pointer; width: 100%;
  box-shadow: 0 4px 18px rgba(0,87,255,.38);
  transition: transform .2s, box-shadow .2s;
  font-family: inherit; letter-spacing: .1px;
}
.lp-contact-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,87,255,.5); }
/* alerts */
.lp-contact-alert {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 500; margin-bottom: 18px;
}
.lp-contact-alert--success { background: rgba(0,198,167,.1); color: #00897A; border: 1px solid rgba(0,198,167,.25); }
.lp-contact-alert--error   { background: rgba(239,68,68,.08); color: #DC2626; border: 1px solid rgba(239,68,68,.2); }

/* ── Contact Sidebar ────────────────────────────────────────────────────── */
.lp-contact-sidebar {
  display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: 90px;
}
.lp-contact-sidebar-card {
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.lp-contact-sidebar-card--dark {
  background: linear-gradient(135deg, #0A1A3A 0%, #101E50 100%);
  border-color: rgba(255,255,255,.06);
}
.lp-contact-sidebar-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--text-main);
  margin: 0 0 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--glass-border);
}
.lp-contact-sidebar-card--dark .lp-contact-sidebar-title {
  color: #fff; border-bottom-color: rgba(255,255,255,.1);
}
/* feature items in sidebar */
.lp-contact-features { display: flex; flex-direction: column; gap: 14px; }
.lp-contact-feature-item {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--glass-border);
  transition: background .2s;
}
.lp-contact-feature-item:hover { background: #F8FAFC; }
.lp-contact-feature-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.lp-contact-feature-item--blue   .lp-contact-feature-icon { background: rgba(0,87,255,.08);   color: var(--primary); }
.lp-contact-feature-item--green  .lp-contact-feature-icon { background: rgba(0,198,167,.09);  color: var(--accent); }
.lp-contact-feature-item--purple .lp-contact-feature-icon { background: rgba(139,92,246,.09); color: var(--accent2); }
.lp-contact-feature-item--orange .lp-contact-feature-icon { background: rgba(255,107,44,.08); color: var(--warn); }
.lp-contact-feature-item strong { font-size: 13.5px; font-weight: 700; color: var(--text-main); display: block; margin-bottom: 3px; }
.lp-contact-feature-item p { font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.55; }
/* steps */
.lp-contact-steps { display: flex; flex-direction: column; gap: 16px; }
.lp-contact-step { display: flex; align-items: flex-start; gap: 14px; }
.lp-contact-step-num {
  min-width: 32px; height: 32px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: rgba(255,255,255,.9);
  font-family: monospace; flex-shrink: 0;
}
.lp-contact-step-body strong { font-size: 13.5px; font-weight: 700; color: #fff; display: block; margin-bottom: 3px; }
.lp-contact-step-body p { font-size: 12.5px; color: rgba(255,255,255,.62); margin: 0; line-height: 1.55; }
/* direct contact */
.lp-contact-direct { }
.lp-contact-direct-item {
  display: flex; align-items: center; gap: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
}
.lp-contact-direct-item:last-child { border-bottom: none; padding-bottom: 0; }
.lp-contact-direct-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.lp-contact-direct-icon--blue   { background: rgba(0,87,255,.08);   color: var(--primary); }
.lp-contact-direct-icon--green  { background: rgba(0,198,167,.09);  color: var(--accent); }
.lp-contact-direct-icon--purple { background: rgba(139,92,246,.09); color: var(--accent2); }
.lp-contact-direct-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); display: block; margin-bottom: 2px; }
.lp-contact-direct-val { font-size: 13.5px; font-weight: 600; color: var(--text-main); text-decoration: none; display: block; }
a.lp-contact-direct-val:hover { color: var(--primary); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-security-section .lp-security-grid { grid-template-columns: 1fr; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-agentic-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-kyc-steps::before { display: none; }
  /* Features page */
  .lp-feat-modules-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-feat-spot-grid { gap: 44px; }
  /* Pricing page */
  .lp-price-cards-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .lp-price-card--featured { transform: none; }
  .lp-price-card--featured:hover { transform: translateY(-6px); }
  .lp-price-trust-grid { grid-template-columns: 1fr 1fr; }
  .lp-price-faq-grid { grid-template-columns: 1fr; }
  /* Blog page */
  .lp-blog-featured { grid-template-columns: 1fr 1fr; }
  .lp-blog-grid { grid-template-columns: 1fr 1fr; }
  .lp-post-layout { grid-template-columns: 1fr 280px; }
  /* FAQ page */
  .lp-faq-topics-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-faq-support-grid { grid-template-columns: 1fr 1fr; }
  /* Contact page */
  .lp-contact-grid { grid-template-columns: 1fr 340px; gap: 32px; }
  .lp-contact-sidebar { position: static; top: auto; }
}

/* ════════════════════════════════════════════════════════════════════════
   REFUND & RETURN POLICY PAGE
   Hero · Highlights Grid · TOC + Article · CTA
   ════════════════════════════════════════════════════════════════════ */

/* ── RP Container ───────────────────────────────────────────────────────── */
.lp-rp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── RP Hero ────────────────────────────────────────────────────────────── */
.lp-rp-hero {
  position: relative;
  background: linear-gradient(145deg, #0D0F2D 0%, #1E1060 46%, #0A2A4A 100%);
  padding: 120px 16px 0;
  overflow: hidden;
  text-align: center;
}
.lp-rp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .38;
  pointer-events: none;
}
.lp-rp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.lp-rp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139,92,246,.14);
  color: #a78bfa;
  border: 1px solid rgba(139,92,246,.28);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.lp-rp-hero-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}
.lp-rp-grad-text {
  background: linear-gradient(135deg, #a78bfa 0%, #00C6A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-rp-hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 32px;
}
.lp-rp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.lp-rp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 14px;
  backdrop-filter: blur(8px);
}
.lp-rp-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 24px 32px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.lp-rp-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 100px;
}
.lp-rp-stat-value {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #00C6A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.5px;
}
.lp-rp-stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .02em;
  text-align: center;
}
.lp-rp-stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
  margin: 0 4px;
}
.lp-rp-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 12.5px;
}
.lp-rp-wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: 0;
}
.lp-rp-wave svg { display: block; width: 100%; height: 90px; }

/* ── RP Highlights Section ──────────────────────────────────────────────── */
.lp-rp-highlights-section {
  background: #F8FAFF;
  padding: 72px 0 64px;
}
.lp-rp-section-header {
  text-align: center;
  margin-bottom: 44px;
}
.lp-rp-section-badge {
  display: inline-block;
  background: rgba(139,92,246,.1);
  color: #7C3AED;
  border: 1px solid rgba(139,92,246,.22);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.lp-rp-section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -.8px;
  margin: 0 0 12px;
}
.lp-rp-section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.lp-rp-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lp-rp-hi-card {
  background: var(--rp-card-bg, rgba(139,92,246,.07));
  border: 1.5px solid var(--rp-card-border, rgba(139,92,246,.2));
  border-radius: 20px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.lp-rp-hi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.09);
}
.lp-rp-hi-num {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-rp-hi-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-rp-hi-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  padding-right: 28px;
}
.lp-rp-hi-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.lp-rp-hi-arrow {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

/* ── RP Content Section ─────────────────────────────────────────────────── */
.lp-rp-content-section {
  background: #fff;
  padding: 72px 0 80px;
}
.lp-rp-content-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── RP TOC Sidebar ─────────────────────────────────────────────────────── */
.lp-rp-toc {
  position: sticky;
  top: 100px;
}
.lp-rp-toc-inner {
  background: #F8FAFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 22px 20px;
}
.lp-rp-toc-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #E2E8F0;
}
.lp-rp-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-rp-toc-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 10px;
  transition: background .15s, color .15s;
  font-weight: 500;
}
.lp-rp-toc-link:hover { background: rgba(139,92,246,.08); color: #7C3AED; }
.lp-rp-toc-num {
  min-width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(139,92,246,.12);
  color: #7C3AED;
  font-size: 10.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-rp-toc-meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1.5px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lp-rp-toc-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #94A3B8;
}
.lp-rp-toc-alert {
  margin-top: 14px;
  background: rgba(139,92,246,.08);
  border: 1px solid rgba(139,92,246,.2);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #7C3AED;
}
.lp-rp-toc-alert svg { flex-shrink: 0; margin-top: 1px; }
.lp-rp-toc-alert p { font-size: 12.5px; margin: 0; line-height: 1.55; }
.lp-rp-toc-alert a { color: #8B5CF6; font-weight: 700; text-decoration: none; }
.lp-rp-toc-alert a:hover { text-decoration: underline; }

/* ── RP Article ─────────────────────────────────────────────────────────── */
.lp-rp-article {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 24px;
  padding: 40px 36px;
}
.lp-rp-article-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid #F1F5F9;
}
.lp-rp-article-header h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 10px;
  letter-spacing: -.4px;
}
.lp-rp-article-header p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.lp-rp-section {
  padding: 32px 0 0;
}
.lp-rp-section:first-child { padding-top: 0; }
.lp-rp-section h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-main);
  margin: 8px 0 14px;
  letter-spacing: -.4px;
}
.lp-rp-section p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 14px;
}
.lp-rp-section ul,.lp-rp-section ol {
  padding-left: 22px;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lp-rp-section li {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.lp-rp-section a { color: #7C3AED; text-decoration: underline; text-underline-offset: 3px; }
.lp-rp-section strong { color: var(--text-main); }
.lp-rp-section-label {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 2px;
}
.lp-rp-section-label--orange { background: rgba(139,92,246,.1); color: #7C3AED; }
.lp-rp-section-label--blue   { background: rgba(0,87,255,.07);   color: #0044CC; }
.lp-rp-section-label--green  { background: rgba(0,198,167,.08);  color: #00856F; }
.lp-rp-divider {
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #E2E8F0 30%, #E2E8F0 70%, transparent);
  margin: 36px 0 0;
}

/* Callout boxes */
.lp-rp-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0 0;
}
.lp-rp-callout--orange { background: rgba(139,92,246,.07); color: #7C3AED; border-left: 3px solid #8B5CF6; }
.lp-rp-callout--blue   { background: rgba(0,87,255,.06);   color: #0057FF; border-left: 3px solid #0057FF; }
.lp-rp-callout--green  { background: rgba(0,198,167,.06);  color: #00856F; border-left: 3px solid #00C6A7; }
.lp-rp-callout svg { flex-shrink: 0; margin-top: 2px; }

/* Refund window cards */
.lp-rp-window-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0 18px;
}
.lp-rp-window-card {
  border-radius: 16px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1.5px solid transparent;
}
.lp-rp-window-card--orange { background: rgba(139,92,246,.08); border-color: rgba(139,92,246,.22); }
.lp-rp-window-card--blue   { background: rgba(0,87,255,.07);   border-color: rgba(0,87,255,.18); }
.lp-rp-window-card--green  { background: rgba(0,198,167,.07);  border-color: rgba(0,198,167,.2); }
.lp-rp-window-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-main);
}
.lp-rp-window-card strong { font-size: 14px; font-weight: 800; color: var(--text-main); }
.lp-rp-window-days {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
  letter-spacing: -0.5px;
}
.lp-rp-window-card p { font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Steps */
.lp-rp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0;
  border-left: 2px solid #E2E8F0;
  padding-left: 0;
}
.lp-rp-step {
  display: flex;
  gap: 18px;
  padding: 0 0 28px 22px;
  position: relative;
}
.lp-rp-step:last-child { padding-bottom: 0; }
.lp-rp-step-num {
  position: absolute;
  left: -14px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #00C6A7);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(139,92,246,.35);
}
.lp-rp-step-body {
  padding-top: 2px;
  flex: 1;
}
.lp-rp-step-body strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}
.lp-rp-step-body p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.7; }
.lp-rp-step-body a { color: #FF6B2C; }

/* Non-refundable grid */
.lp-rp-nr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 16px 0;
}
.lp-rp-nr-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-main);
  font-weight: 500;
}

/* Contact row */
.lp-rp-contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.lp-rp-contact-card {
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  align-items: center;
}
.lp-rp-contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(139,92,246,.1);
  color: #8B5CF6;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.lp-rp-contact-card strong { font-size: 14px; font-weight: 800; color: var(--text-main); }
.lp-rp-contact-card a { font-size: 13px; color: #7C3AED; font-weight: 600; text-decoration: none; }
.lp-rp-contact-card a:hover { text-decoration: underline; }
.lp-rp-contact-card span { font-size: 12px; color: var(--text-muted); }

/* CMS body */
.lp-rp-cms-body { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.lp-rp-cms-body h1,.lp-rp-cms-body h2 { font-size: 20px; font-weight: 800; color: var(--text-main); margin: 32px 0 14px; letter-spacing: -.3px; }
.lp-rp-cms-body h3 { font-size: 17px; font-weight: 700; color: var(--text-main); margin: 24px 0 10px; }
.lp-rp-cms-body p { margin: 0 0 16px; }
.lp-rp-cms-body ul,.lp-rp-cms-body ol { padding-left: 22px; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.lp-rp-cms-body a { color: #7C3AED; text-decoration: underline; text-underline-offset: 3px; }
.lp-rp-cms-body strong { color: var(--text-main); }

/* ── Responsive — 1024px ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-rp-highlights-grid { grid-template-columns: repeat(4, 1fr); }
  .lp-rp-content-grid { grid-template-columns: 240px 1fr; gap: 28px; }
  .lp-rp-window-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-rp-contact-row { grid-template-columns: repeat(3, 1fr); }
  .lp-rp-article { padding: 32px 28px; }
}

@media (max-width: 768px) {
  .lp-hero { padding: 100px 0 60px; }
  .lp-section { padding: 60px 16px; }
  main > .lp-section:not(.lp-hero) { padding-top: 48px; padding-bottom: 48px; }
  /* Features page */
  .lp-feat-hero { padding: 80px 16px 52px; }
  .lp-feat-hero-title { font-size: 2rem; }
  .lp-feat-hero-sub { font-size: 15px; }
  .lp-feat-hero-badges { gap: 8px; }
  .lp-feat-badge { font-size: 12px; padding: 6px 12px; }
  .lp-feat-spot { padding: 52px 16px; }
  .lp-feat-spot-grid,
  .lp-feat-spot--flip .lp-feat-spot-grid { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .lp-feat-spot--flip .lp-feat-spot-grid > * { direction: ltr; }
  .lp-feat-spot-title { font-size: 1.6rem; }
  .lp-feat-spot-badge { display: none; }
  .lp-feat-modules-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lp-feat-module-card { padding: 20px 16px; }
  .lp-feat-cta-section { padding: 56px 16px; }
  .lp-feat-cta-section .lp-feat-cta-title { font-size: 1.8rem !important; }
  .lp-nav-links { display: none; }
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-form-grid-2 { grid-template-columns: 1fr; }
  .lp-proof-inner { justify-content: center; }
  .lp-divider-v { display: none; }
  .lp-float-tag { display: none; }
  .lp-kyc-steps { grid-template-columns: 1fr 1fr; }
  .lp-section .content-container,
  .lp-section .faq,
  .lp-section .accordion-container,
  .lp-section .posts .__item,
  .lp-section .sidebar .widget,
  .lp-pricing-page .content-container { padding: 16px; }
  .lp-pricing-page .lp-pricing-table .__price,
  .lp-pricing-page .lp-pricing-table .price_month,
  .lp-pricing-page .lp-pricing-table .price_year { font-size: 20px; }
  .lp-pricing-page .lp-pricing-table th,
  .lp-pricing-page .lp-pricing-table td { font-size: 13px; }
  /* Pricing revamp */
  .lp-price-hero { padding: 90px 16px 64px; }
  .lp-price-hero-title { font-size: 2rem; }
  .lp-price-hero-badges { flex-direction: column; align-items: center; }
  .lp-price-trust-grid { grid-template-columns: 1fr 1fr; }
  .lp-price-main { font-size: 2.2rem; }
  /* Blog revamp */
  .lp-blog-hero { padding: 90px 16px 0; }
  .lp-blog-hero-title { font-size: 2rem; }
  .lp-blog-cat-pills { gap: 6px; }
  .lp-blog-cat-pill { font-size: 12px; padding: 6px 14px; }
  .lp-blog-featured { grid-template-columns: 1fr; }
  .lp-blog-featured__img { min-height: 220px; }
  .lp-blog-featured__content { padding: 24px 20px; }
  .lp-blog-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lp-post-header { padding: 90px 16px 44px; }
  .lp-post-header__title { font-size: 1.8rem; }
  .lp-post-layout { grid-template-columns: 1fr; }
  .lp-post-sidebar { position: static; top: auto; }
  .lp-post-content-card { padding: 24px 20px; }
  /* FAQ page */
  .lp-faq-hero { padding: 90px 16px 0; }
  .lp-faq-hero-title { font-size: 2rem; }
  .lp-faq-hero-sub { font-size: 15px; }
  .lp-faq-stats-strip { flex-wrap: wrap; justify-content: center; padding: 14px 20px; }
  .lp-faq-stat { padding: 4px 14px; }
  .lp-faq-stat-sep { display: none; }
  .lp-faq-topics-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .lp-faq-support-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .lp-faq-list { margin-top: 36px; }
  .lp-faq-item-q { font-size: 15px; }
  /* Contact page */
  .lp-contact-hero { padding: 90px 16px 0; }
  .lp-contact-hero-title { font-size: 2rem; }
  .lp-contact-hero-sub { font-size: 15px; }
  .lp-contact-hero-badges { gap: 7px; }
  .lp-contact-hero-badge { font-size: 12px; padding: 6px 12px; }
  .lp-contact-channels-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .lp-contact-grid { grid-template-columns: 1fr; }
  .lp-contact-form-card { padding: 28px 22px; }
  .lp-contact-form-row { grid-template-columns: 1fr; }
  .lp-contact-sidebar { position: static; top: auto; }
  /* Terms of Service — 768px */
  .lp-tc-hero-title { font-size: 2.2rem; }
  .lp-tc-stats-strip { gap: 0; }
  .lp-tc-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-tc-content-grid { grid-template-columns: 1fr; }
  .lp-tc-toc { position: static; order: -1; }
  .lp-tc-responsibility-grid { grid-template-columns: 1fr 1fr; }
  .lp-tc-ip-row { grid-template-columns: 1fr; }
  .lp-tc-hero-badges { gap: 7px; }
  .lp-tc-hero-badge { font-size: 12px; padding: 6px 12px; }
  /* Privacy Policy — 768px */
  .lp-pp-topics-grid { grid-template-columns: 1fr 1fr; }
  .lp-pp-rights-grid { grid-template-columns: 1fr 1fr; }
  /* Refund & Return Policy — 768px */
  .lp-rp-hero-title { font-size: 2.2rem; }
  .lp-rp-stats-strip { gap: 0; }
  .lp-rp-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-rp-content-grid { grid-template-columns: 1fr; }
  .lp-rp-toc { position: static; order: -1; }
  .lp-rp-window-grid { grid-template-columns: 1fr 1fr; }
  .lp-rp-contact-row { grid-template-columns: 1fr 1fr; }
  .lp-rp-hero-badges { gap: 7px; }
  .lp-rp-hero-badge { font-size: 12px; padding: 6px 12px; }
}
@media (max-width: 480px) {
  .lp-feat-modules-grid { grid-template-columns: 1fr; }
  .lp-feat-hero-badges { flex-direction: column; align-items: center; }
  /* Pricing revamp */
  .lp-price-trust-grid { grid-template-columns: 1fr; }
  .lp-price-faq-grid { grid-template-columns: 1fr; }
  /* Blog revamp */
  .lp-blog-grid { grid-template-columns: 1fr; }
  .lp-blog-cat-pills { flex-direction: row; }
  .lp-post-header__meta { gap: 12px; }
  .lp-post-comment-form,.lp-post-comments { padding: 20px 16px; }
  /* FAQ page */
  .lp-faq-topics-grid { grid-template-columns: 1fr; }
  .lp-faq-search-kbd { display: none; }
  .lp-faq-item-num { display: none; }
  .lp-faq-item-head { padding: 16px 18px; }
  .lp-faq-item-body { padding: 0 18px; }
  .lp-faq-item.is-open .lp-faq-item-body { padding-bottom: 18px; }
  .lp-faq-support-card { padding: 28px 20px 22px; }
  /* Contact page */
  .lp-contact-hero-badges { gap: 6px; }
  .lp-contact-hero-badge { font-size: 11px; padding: 5px 10px; }
  .lp-contact-form-card { padding: 22px 16px; }
  .lp-contact-sidebar-card { padding: 20px 16px; }
  /* Terms of Service page */
  .lp-tc-hero-title { font-size: clamp(26px,8vw,40px); }
  .lp-tc-stats-strip { flex-wrap: wrap; gap: 14px; justify-content: center; }
  .lp-tc-stat-sep { display: none; }
  .lp-tc-highlights-grid { grid-template-columns: 1fr; }
  .lp-tc-responsibility-grid { grid-template-columns: 1fr; }
  .lp-tc-article { padding: 24px 18px; }
  .lp-tc-contact-row { flex-direction: column; }
  /* Privacy Policy page */
  .lp-pp-hero-title { font-size: clamp(28px,7vw,46px); }
  .lp-pp-stats-strip { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .lp-pp-stat-sep { display: none; }
  .lp-pp-topics-grid { grid-template-columns: 1fr 1fr; }
  .lp-pp-content-grid { grid-template-columns: 1fr; }
  .lp-pp-toc { position: static; order: -1; }
  .lp-pp-security-grid { grid-template-columns: 1fr; }
  .lp-pp-rights-grid { grid-template-columns: 1fr 1fr; }
  .lp-pp-use-grid { grid-template-columns: 1fr; }
  .lp-pp-cookie-row { grid-template-columns: 1fr 2fr; gap: 4px 12px; }
  .lp-pp-cookie-row span:last-child { grid-column: 1; margin-bottom: 8px; }
  .lp-pp-hero-badges { gap: 6px; }
  .lp-pp-hero-badge { font-size: 11px; padding: 5px 10px; }
  /* Refund & Return Policy page */
  .lp-rp-hero-title { font-size: clamp(26px,8vw,38px); }
  .lp-rp-stats-strip { flex-wrap: wrap; gap: 14px; justify-content: center; }
  .lp-rp-stat-sep { display: none; }
  .lp-rp-highlights-grid { grid-template-columns: 1fr; }
  .lp-rp-content-grid { grid-template-columns: 1fr; }
  .lp-rp-toc { position: static; order: -1; }
  .lp-rp-window-grid { grid-template-columns: 1fr; }
  .lp-rp-contact-row { grid-template-columns: 1fr; }
  .lp-rp-nr-grid { grid-template-columns: 1fr; }
  .lp-rp-article { padding: 24px 18px; }
  .lp-rp-hero-badges { gap: 6px; flex-direction: column; align-items: center; }
  .lp-rp-hero-badge { font-size: 11px; padding: 5px 10px; }
  /* Our Story page */
  .lp-os-hero-title { letter-spacing: -1px; }
  .lp-os-numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lp-os-mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-os-pillar-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-os-pillar-grid--flip { direction: ltr; }
  .lp-os-values-grid { grid-template-columns: 1fr; }
  .lp-os-team-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-os-timeline { padding-left: 52px; }
  .lp-os-tl-dot { left: -52px; }
  .lp-os-mc-stats { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════
   OUR STORY PAGE  (lp-os-*)
   Purple / indigo — matching Privacy Policy colour scheme
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.lp-os-hero {
  position: relative;
  background: linear-gradient(145deg, #0D0F2D 0%, #1E1060 46%, #0A2A4A 100%);
  padding: 120px 16px 0;
  overflow: hidden;
  text-align: center;
}
.lp-os-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
}
.lp-os-blob--1 { width: 520px; height: 520px; background: #8B5CF6; top: -180px; left: -130px; }
.lp-os-blob--2 { width: 380px; height: 380px; background: #00C6A7; bottom: 20px; right: -100px; }
.lp-os-blob--3 { width: 280px; height: 280px; background: #0057FF; top: 80px; left: 55%; transform: translateX(-50%); }
.lp-os-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 56px;
}
.lp-os-hero-title {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
}
.lp-os-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  max-width: 660px;
  margin: 0 auto 32px;
  line-height: 1.72;
}
.lp-os-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.lp-os-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.lp-os-hero-wave { position: relative; z-index: 2; line-height: 0; margin-top: 24px; }
.lp-os-hero-wave svg { display: block; width: 100%; height: 72px; }

/* ── Numbers Strip ───────────────────────────────────────────────────────── */
.lp-os-numbers-section {
  background: linear-gradient(135deg, #0057FF 0%, #8B5CF6 55%, #00C6A7 100%);
  padding: 68px 16px;
}
.lp-os-numbers-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lp-os-number-item { text-align: center; position: relative; }
.lp-os-number-item + .lp-os-number-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,.25);
}
.lp-os-number-val {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  display: block;
  margin-bottom: 7px;
}
.lp-os-number-lbl { font-size: 13px; color: rgba(255,255,255,.78); font-weight: 500; }

/* ── Mission Section ─────────────────────────────────────────────────────── */
.lp-os-mission-section { background: #fff; padding: 100px 16px; }
.lp-os-mission-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lp-os-mission-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(139,92,246,.09);
  border: 1px solid rgba(139,92,246,.25);
  color: #7C3AED;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.lp-os-mission-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -.8px;
}
.lp-os-mission-body {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 28px;
}
.lp-os-mission-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.lp-os-mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.lp-os-mission-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(139,92,246,.12);
  color: #7C3AED;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
/* Mission visual card */
.lp-os-mission-visual { position: relative; }
.lp-os-mission-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.lp-os-mission-glow--1 { width: 300px; height: 300px; background: #8B5CF6; top: -60px; right: -40px; opacity: .18; }
.lp-os-mission-glow--2 { width: 220px; height: 220px; background: #00C6A7; bottom: -50px; left: -20px; opacity: .14; }
.lp-os-mission-card {
  background: linear-gradient(145deg, #0D0F2D 0%, #1E1060 60%, #0A2A4A 100%);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(14,12,60,.3), 0 8px 24px rgba(0,0,0,.18);
  z-index: 1;
}
.lp-os-mc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.lp-os-mc-blob--1 { width: 200px; height: 200px; background: #8B5CF6; top: -60px; right: -40px; opacity: .5; }
.lp-os-mc-blob--2 { width: 160px; height: 160px; background: #00C6A7; bottom: -40px; left: -30px; opacity: .4; }
.lp-os-mc-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.lp-os-mc-dots { display: flex; gap: 6px; }
.lp-os-mc-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-os-mc-dot:nth-child(1) { background: #ef4444; }
.lp-os-mc-dot:nth-child(2) { background: #f59e0b; }
.lp-os-mc-dot:nth-child(3) { background: #22c55e; }
.lp-os-mc-bar-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.4);
}
.lp-os-mc-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.lp-os-mc-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  padding: 14px;
  text-align: center;
}
.lp-os-mc-stat-val {
  display: block;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #00C6A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.4px;
}
.lp-os-mc-stat-lbl {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 3px;
}
.lp-os-mc-bars { position: relative; z-index: 2; }
.lp-os-mc-bar-row { margin-bottom: 10px; }
.lp-os-mc-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}
.lp-os-mc-bar-track {
  height: 5px;
  background: rgba(255,255,255,.09);
  border-radius: 3px;
  overflow: hidden;
}
.lp-os-mc-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #8B5CF6, #00C6A7); }
.lp-os-mc-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}
.lp-os-mc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 100px;
  padding: 5px 11px;
  font-size: 11px;
  color: rgba(255,255,255,.72);
}

/* ── Values Section ──────────────────────────────────────────────────────── */
.lp-os-values-section {
  background: linear-gradient(160deg, #F8FAFF 0%, #F0F4FF 100%);
  padding: 100px 16px;
}
.lp-os-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.lp-os-value-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
  overflow: hidden;
}
.lp-os-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8B5CF6, #00C6A7);
  opacity: 0;
  transition: opacity .22s;
}
.lp-os-value-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(139,92,246,.12); border-color: rgba(139,92,246,.25); }
.lp-os-value-card:hover::before { opacity: 1; }
.lp-os-value-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(139,92,246,.1);
  color: #7C3AED;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-os-value-title { font-size: 16px; font-weight: 800; color: var(--text-main); margin: 0; letter-spacing: -.2px; }
.lp-os-value-desc { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.7; flex: 1; }

/* ── Timeline Section ────────────────────────────────────────────────────── */
.lp-os-timeline-section { background: #fff; padding: 100px 16px; }
.lp-os-timeline {
  max-width: 740px;
  margin: 48px auto 0;
  position: relative;
  padding-left: 68px;
}
.lp-os-timeline::before {
  content: '';
  position: absolute;
  left: 21px; top: 22px; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #8B5CF6, #00C6A7);
  opacity: .3;
}
.lp-os-tl-item { position: relative; margin-bottom: 40px; }
.lp-os-tl-item:last-child { margin-bottom: 0; }
.lp-os-tl-dot {
  position: absolute;
  left: -68px; top: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #00C6A7);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 4px 18px rgba(139,92,246,.35);
  z-index: 2;
}
.lp-os-tl-body {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-os-tl-body:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(139,92,246,.1); border-color: rgba(139,92,246,.25); }
.lp-os-tl-year { font-size: 11px; font-weight: 700; color: #7C3AED; letter-spacing: .7px; text-transform: uppercase; display: block; margin-bottom: 6px; }
.lp-os-tl-title { font-size: 16px; font-weight: 800; color: var(--text-main); margin: 0 0 8px; letter-spacing: -.2px; }
.lp-os-tl-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Pillar / Feature Spotlight Sections ─────────────────────────────────── */
.lp-os-pillar { padding: 88px 28px; position: relative; overflow: hidden; background: #fff; }
.lp-os-pillar--alt { background: linear-gradient(160deg, #F8FAFF 0%, #F0FDF9 100%); }
.lp-os-pillar-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lp-os-pillar-grid--flip { direction: rtl; }
.lp-os-pillar-grid--flip > * { direction: ltr; }
.lp-os-pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 16px;
}
.lp-os-pillar-tag--purple { background: rgba(139,92,246,.09); border-color: rgba(139,92,246,.25); color: #7C3AED; }
.lp-os-pillar-tag--teal   { background: rgba(0,198,167,.09);  border-color: rgba(0,198,167,.28);  color: #00856F; }
.lp-os-pillar-tag--blue   { background: rgba(0,87,255,.08);   border-color: rgba(0,87,255,.25);   color: #0057FF; }
.lp-os-pillar-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -.7px;
}
.lp-os-pillar-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.78;
  margin: 0 0 24px;
}
.lp-os-pillar-feats { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.lp-os-pillar-feat { display: flex; align-items: flex-start; gap: 14px; }
.lp-os-pillar-feat-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-os-pillar-feat-icon--purple { background: rgba(139,92,246,.1); color: #7C3AED; }
.lp-os-pillar-feat-icon--teal   { background: rgba(0,198,167,.1);  color: #00856F; }
.lp-os-pillar-feat-icon--blue   { background: rgba(0,87,255,.1);   color: #0057FF; }
.lp-os-pillar-feat strong { font-size: 14px; color: var(--text-main); display: block; margin-bottom: 3px; }
.lp-os-pillar-feat p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.6; }
/* Pillar visual card */
.lp-os-pillar-visual { position: relative; }
.lp-os-pillar-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  pointer-events: none;
  z-index: 0;
}
.lp-os-pillar-glow--1 { width: 280px; height: 280px; background: #8B5CF6; top: -70px; right: -60px; opacity: .18; }
.lp-os-pillar-glow--2 { width: 200px; height: 200px; background: #00C6A7; bottom: -60px; left: -40px; opacity: .14; }
.lp-os-pillar-card {
  background: linear-gradient(145deg, #0D0F2D 0%, #1E1060 55%, #0A2A4A 100%);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 28px 72px rgba(14,12,60,.28), 0 6px 20px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.lp-os-pc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  pointer-events: none;
}
.lp-os-pc-blob--1 { width: 180px; height: 180px; background: #8B5CF6; top: -50px; right: -40px; opacity: .5; }
.lp-os-pc-blob--2 { width: 140px; height: 140px; background: #00C6A7; bottom: -40px; left: -20px; opacity: .4; }
.lp-os-pc-chrome { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; position: relative; z-index: 2; }
.lp-os-pc-dots { display: flex; gap: 5px; }
.lp-os-pc-dot { width: 9px; height: 9px; border-radius: 50%; }
.lp-os-pc-dot:nth-child(1) { background: #ef4444; }
.lp-os-pc-dot:nth-child(2) { background: #f59e0b; }
.lp-os-pc-dot:nth-child(3) { background: #22c55e; }
.lp-os-pc-address {
  flex: 1; height: 22px;
  background: rgba(255,255,255,.07);
  border-radius: 5px;
  display: flex; align-items: center; padding: 0 10px;
  font-size: 10px; color: rgba(255,255,255,.3);
}
.lp-os-pc-body { position: relative; z-index: 2; }
.lp-os-pc-row { display: flex; gap: 10px; margin-bottom: 10px; }
.lp-os-pc-metric {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  padding: 12px 14px;
}
.lp-os-pc-metric-lbl { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.lp-os-pc-metric-val {
  font-size: 18px; font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #00C6A7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-os-pc-chart {
  height: 56px; display: flex; align-items: flex-end; gap: 5px;
  background: rgba(255,255,255,.04);
  border-radius: 10px; padding: 8px 10px; margin-bottom: 10px;
}
.lp-os-pc-bar { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #8B5CF6, #5B21B6); opacity: .7; }
.lp-os-pc-list { position: relative; z-index: 2; }
.lp-os-pc-list-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  margin-bottom: 7px;
  font-size: 12px; color: rgba(255,255,255,.75);
}
.lp-os-pc-list-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lp-os-pc-list-dot--green  { background: #22c55e; }
.lp-os-pc-list-dot--purple { background: #8B5CF6; }
.lp-os-pc-list-dot--teal   { background: #00C6A7; }
.lp-os-pc-list-dot--blue   { background: #3B82F6; }
.lp-os-pc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,198,167,.18);
  border: 1px solid rgba(0,198,167,.3);
  color: #00C6A7;
  border-radius: 100px; padding: 5px 12px;
  font-size: 11px; font-weight: 600;
  margin-top: 12px;
}
.lp-os-pc-user-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.lp-os-pc-user-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 5px 12px 5px 5px;
  font-size: 11px; color: rgba(255,255,255,.75);
}
.lp-os-pc-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff;
}

/* ── Team Section ────────────────────────────────────────────────────────── */
.lp-os-team-section {
  background: linear-gradient(160deg, #F8FAFF 0%, #F0F4FF 100%);
  padding: 100px 16px;
}
.lp-os-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.lp-os-team-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
  overflow: hidden;
}
.lp-os-team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #8B5CF6, #00C6A7);
  opacity: 0;
  transition: opacity .22s;
}
.lp-os-team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(139,92,246,.12); border-color: rgba(139,92,246,.25); }
.lp-os-team-card:hover::before { opacity: 1; }
.lp-os-team-avatar {
  width: 74px; height: 74px;
  position: relative;
  margin: 0 auto 16px;
}
.lp-os-team-avatar-inner {
  width: 74px; height: 74px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #8B5CF6, #0057FF);
  position: relative; z-index: 1;
}
.lp-os-team-avatar-ring {
  position: absolute;
  inset: -3px; border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #00C6A7);
  opacity: .3;
}
.lp-os-team-name { font-size: 16px; font-weight: 800; color: var(--text-main); margin: 0 0 4px; }
.lp-os-team-role { font-size: 12.5px; color: #7C3AED; font-weight: 600; margin: 0 0 12px; }
.lp-os-team-bio { font-size: 13px; color: var(--text-muted); margin: 0 0 18px; line-height: 1.62; }
.lp-os-team-socials { display: flex; gap: 8px; justify-content: center; }
.lp-os-team-social {
  width: 32px; height: 32px; border-radius: 9px;
  background: #F1F5F9;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.lp-os-team-social:hover { background: rgba(139,92,246,.12); color: #7C3AED; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-os-mission-grid  { grid-template-columns: 1fr; gap: 48px; }
  .lp-os-pillar-grid   { grid-template-columns: 1fr; gap: 48px; }
  .lp-os-pillar-grid--flip { direction: ltr; }
  .lp-os-values-grid   { grid-template-columns: repeat(2, 1fr); }
  .lp-os-team-grid     { grid-template-columns: repeat(2, 1fr); }
  .lp-os-numbers-grid  { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 640px) {
  .lp-os-values-grid  { grid-template-columns: 1fr; }
  .lp-os-team-grid    { grid-template-columns: repeat(2, 1fr); }
  .lp-os-timeline     { padding-left: 52px; }
  .lp-os-tl-dot       { left: -52px; }
}