/* bgpost: @import rules hoisted to top per CSS spec (must appear before any other rules) */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');



/* BOT: Create a complete modern design system with Assistant font, Navy & Gold palette, and high-end landing page components. — 2026-04-20 12:19 */
:root {
  --bgpost-font-family: 'Assistant', sans-serif;
  --bgpost-color-primary: #0a192f;
  --bgpost-color-accent: #d4af37;
  --bgpost-color-gold: #c5a059;
  --bgpost-color-bg-light: #f8fafc;
  --bgpost-color-text: #1e293b;
  --bgpost-color-text-muted: #64748b;
  --bgpost-radius: 16px;
  --bgpost-radius-lg: 32px;
  --bgpost-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.2);
  --bgpost-gradient-navy: linear-gradient(135deg, #0a192f 0%, #112240 100%);
}

.bgpost-container {
  font-family: var(--bgpost-font-family);
  color: var(--bgpost-color-text);
  line-height: 1.6;
  overflow-x: hidden;
  direction: rtl;
}

/* Typography Overrides */
.bgpost-container h1,
.bgpost-container h2,
.bgpost-container h3,
.bgpost-container button,
.bgpost-container .bgpost-cta-button {
  font-family: var(--bgpost-font-family) !important;
  font-weight: 700;
}

/* Header / Nav */
.bgpost-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  box-shadow: var(--bgpost-shadow);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bgpost-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--bgpost-color-primary);
}

/* Hero Section */
.bgpost-hero-premium {
  padding: 160px 20px 100px;
  background: var(--bgpost-gradient-navy);
  color: white;
  text-align: center;
  position: relative;
  clip-path: ellipse(150% 100% at 50% 0%);
}

.bgpost-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.bgpost-badge-modern {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--bgpost-color-accent);
  border: 1px solid var(--bgpost-color-accent);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.bgpost-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.bgpost-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Stats Row */
.bgpost-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
}

.bgpost-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--bgpost-radius);
  transition: transform 0.3s ease;
}

.bgpost-stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.bgpost-stat-val {
  display: block;
  font-size: 2rem;
  color: var(--bgpost-color-accent);
  margin-bottom: 4px;
}

.bgpost-stat-lbl {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Modern Form Card */
.bgpost-form-overlay {
  max-width: 500px;
  margin: -80px auto 60px;
  background: white;
  padding: 40px;
  border-radius: var(--bgpost-radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 10;
}

.bgpost-form-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--bgpost-color-primary);
}

.bgpost-input-field {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.bgpost-input-field:focus {
  outline: none;
  border-color: var(--bgpost-color-accent);
}

.bgpost-btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--bgpost-color-gold);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bgpost-btn-submit:hover {
  background: #b08d4a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Section Styling */
.bgpost-main-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bgpost-sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.bgpost-sec-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--bgpost-color-primary);
}

/* Bento Grid */
.bgpost-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bgpost-bento-item {
  background: white;
  padding: 40px;
  border-radius: var(--bgpost-radius);
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.bgpost-bento-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--bgpost-shadow);
}

.bgpost-bento-icon {
  width: 50px;
  height: 50px;
  background: var(--bgpost-color-bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--bgpost-color-gold);
}

/* Security Cards */
.bgpost-security-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bgpost-check-list {
  list-style: none;
  padding: 0;
}

.bgpost-check-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* FAQ Styling */
.bgpost-faq {
  max-width: 800px;
  margin: 0 auto;
}

.bgpost-faq-item {
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.bgpost-faq-question {
  width: 100%;
  padding: 20px 30px;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: right;
  font-size: 1.1rem;
}

.bgpost-faq-answer {
  padding: 0 30px 25px;
  background: white;
  color: var(--bgpost-color-text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .bgpost-stats-grid,
  .bgpost-bento-grid,
  .bgpost-security-row {
    grid-template-columns: 1fr;
  }
  .bgpost-nav {
    display: none;
  }
  .bgpost-hero-title {
    font-size: 2.2rem;
  }
  .bgpost-form-overlay {
    padding: 25px;
    margin-top: -40px;
  }
  .bgpost-sec-title {
    font-size: 1.8rem;
  }
}
/* /BOT */

/* BOT: Add Blue Giraffe brand tokens and interactive animation classes for the new landing page. — 2026-04-21 03:59 */

/* BOT: Add Blue Giraffe brand tokens and interactive animation classes — 2026-04-20 */
:root {
  --bg-giraffe-yellow: #facc15;
  --bg-giraffe-yellow-soft: rgba(250, 204, 21, 0.1);
  --bg-giraffe-blue: #1e40af;
}

.bgpost-text-highlight {
  color: var(--bg-giraffe-yellow);
  background: linear-gradient(
    transparent 70%,
    var(--bg-giraffe-yellow-soft) 70%
  );
}

/* Scroll Reveal Base */
.bgpost-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bgpost-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Animation */
@keyframes bg-float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.bgpost-floating {
  animation: bg-float 4s ease-in-out infinite;
}

/* Pulse for CTA */
@keyframes bg-pulse-accent {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(250, 204, 21, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
  }
}

.bgpost-pulse {
  animation: bg-pulse-accent 2s infinite;
}

.bgpost-stat-val[data-target] {
  font-variant-numeric: tabular-nums;
}

/* /BOT */

/* BOT: Add 'Cyber Glass' design system tokens and components for a radically different 'Blue Giraffe' look. — 2026-04-21 04:01 */

/* Cyber / Glass Design System for Blue Giraffe */
:root {
  --bg-cyber-blue: #0ea5e9;
  --bg-cyber-glow: rgba(14, 165, 233, 0.3);
  --bg-dark-void: #020617;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-border: rgba(255, 255, 255, 0.1);
}

.bgpost-cyber-container {
  background-color: var(--bg-dark-void);
  color: #f8fafc;
  min-height: 100vh;
}

/* Split Hero */
.bgpost-hero-split {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 180px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.bgpost-hero-text {
  flex: 1;
}

.bgpost-hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hologram Card */
.bgpost-hologram-card {
  width: 100%;
  max-width: 450px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--bg-glass-border);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 40px var(--bg-cyber-glow);
  animation: bg-float 6s ease-in-out infinite;
}

.bgpost-hologram-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    45deg,
    transparent,
    var(--bg-cyber-blue),
    transparent
  );
  border-radius: 24px;
  z-index: -1;
  opacity: 0.5;
}

/* Glowing Typography */
.bgpost-glow-text {
  text-shadow: 0 0 20px var(--bg-cyber-glow);
}

/* Step Flow */
.bgpost-flow-section {
  padding: 100px 40px;
}

.bgpost-flow-item {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: center;
}

.bgpost-flow-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(250, 204, 21, 0.3);
  color: transparent;
  transition: all 0.3s ease;
}

.bgpost-flow-item:hover .bgpost-flow-num {
  color: var(--bg-giraffe-yellow);
  -webkit-text-stroke: 1px var(--bg-giraffe-yellow);
  text-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
}

/* Lead UI Mockup */
.bgpost-ui-mockup {
  background: #0f172a;
  border-radius: 16px;
  border: 1px solid var(--bg-glass-border);
  padding: 15px;
  font-family: monospace;
  font-size: 0.85rem;
}

.bgpost-ui-row {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bgpost-ui-tag {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Responsive Overrides for Cyber */
@media (max-width: 992px) {
  .bgpost-hero-split {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }
  .bgpost-flow-item {
    flex-direction: column;
    text-align: center;
  }
}

/* /BOT */

/* BOT: Change nav to static instead of floating, add logo image styles — 2026-04-21 05:05 */
/* BGPOST_VARIANT:cyber — Nav modifications */
.bgpost-nav-static {
  position: static !important;
  margin: 20px auto 0 !important;
  max-width: 1400px;
  width: calc(100% - 40px);
}
.bgpost-logo-img {
  height: 45px;
  width: auto;
  display: block;
}
/* /BOT */

/* BOT: Nexus-V Brand System CSS with Grid, Glow engine, and interaction effects — 2026-04-21 06:11 */
/* BGPOST_VARIANT:nexus — START */
.bgpost-nexus {
  --nexus-bg: #000000;
  --nexus-surface: #050505;
  --nexus-border: rgba(255, 255, 255, 0.08);
  --nexus-glow-1: rgba(79, 70, 229, 0.15); /* Indigo */
  --nexus-glow-2: rgba(16, 185, 129, 0.15); /* Emerald */
  --nexus-font:
    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nexus-mono: 'JetBrains Mono', 'Courier New', Courier, monospace;

  background-color: var(--nexus-bg);
  color: #ffffff;
  font-family: var(--nexus-font);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Typography */
.bgpost-nexus h1,
.bgpost-nexus h2,
.bgpost-nexus h3 {
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
}
.bgpost-nexus-h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(to right, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.bgpost-nexus-sub {
  font-size: 1.25rem;
  color: #a1a1aa;
  max-width: 600px;
  margin-bottom: 40px;
}
.bgpost-nexus-mono {
  font-family: var(--nexus-mono);
}

/* Glow Engine */
.bgpost-nexus-glow-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}
.bgpost-nexus-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(120px);
  transition: transform 0.5s ease-out;
}
.bgpost-nexus-glow-indigo {
  background: radial-gradient(circle, var(--nexus-glow-1) 0%, transparent 70%);
  top: -10%;
  left: -10%;
}
.bgpost-nexus-glow-emerald {
  background: radial-gradient(circle, var(--nexus-glow-2) 0%, transparent 70%);
  bottom: -10%;
  right: -10%;
}

/* Layout */
.bgpost-nexus-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.bgpost-nexus-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 90vh;
  gap: 40px;
}
.bgpost-nexus-hero-text {
  max-width: 600px;
}
.bgpost-nexus-canvas-container {
  width: 100%;
  height: 500px;
  position: relative;
}

/* Bento Grid */
.bgpost-nexus-section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.bgpost-nexus-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.bgpost-nexus-card {
  background: var(--nexus-surface);
  border: 1px solid var(--nexus-border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.bgpost-nexus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
    rgba(255, 255, 255, 0.06),
    transparent 40%
  );
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.bgpost-nexus-card:hover::before {
  opacity: 1;
}
.bgpost-nexus-card > * {
  position: relative;
  z-index: 1;
}
.bgpost-nexus-bento-1 {
  grid-column: span 2;
  grid-row: span 2;
}
.bgpost-nexus-bento-2 {
  grid-column: span 2;
}
.bgpost-nexus-bento-3 {
  grid-column: span 2;
}

/* Terminal */
.bgpost-nexus-terminal {
  font-family: var(--nexus-mono);
  font-size: 0.85rem;
  color: #34d399;
  height: 200px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bgpost-nexus-log-line {
  opacity: 0;
  animation: bgpostFadeIn 0.3s forwards;
  margin-bottom: 4px;
}
@keyframes bgpostFadeIn {
  to {
    opacity: 1;
  }
}

/* Radar */
.bgpost-nexus-radar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--nexus-border);
  position: relative;
  margin: 0 auto;
}
.bgpost-nexus-radar::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #34d399);
  transform-origin: 0% 50%;
  animation: bgpostRadar 2s linear infinite;
}
@keyframes bgpostRadar {
  to {
    transform: rotate(360deg);
  }
}

/* Table */
.bgpost-nexus-table-wrapper {
  background: var(--nexus-surface);
  border: 1px solid var(--nexus-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 80px;
}
.bgpost-nexus-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.bgpost-nexus-table th {
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 24px;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #a1a1aa;
  border-bottom: 1px solid var(--nexus-border);
  backdrop-filter: blur(10px);
}
.bgpost-nexus-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--nexus-border);
  font-family: var(--nexus-mono);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.bgpost-nexus-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
  transform: scale(1.01);
}
.bgpost-nexus-badge {
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: bold;
}
.bgpost-nexus-badge-critical {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.bgpost-nexus-badge-high {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.bgpost-nexus-status-glow {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: bgpostPulse 2s infinite;
}
@keyframes bgpostPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* CTA */
.bgpost-nexus-cta {
  text-align: center;
  padding: 100px 20px;
  border-top: 1px solid var(--nexus-border);
  position: relative;
  background: radial-gradient(
    ellipse at top,
    rgba(79, 70, 229, 0.1),
    transparent 50%
  );
}
.bgpost-nexus-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  border-radius: 100px;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.bgpost-nexus-btn:hover {
  transform: translateY(-2px);
}
.bgpost-nexus-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: bgpostShimmer 3s infinite;
}
@keyframes bgpostShimmer {
  to {
    left: 200%;
  }
}

/* Marquee */
.bgpost-nexus-marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.bgpost-nexus-marquee-inner {
  display: flex;
  gap: 40px;
  animation: bgpostMarquee 15s linear infinite;
}
.bgpost-nexus-marquee svg {
  height: 30px;
  opacity: 0.5;
  fill: #fff;
}
@keyframes bgpostMarquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .bgpost-nexus-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bgpost-nexus-bento {
    grid-template-columns: 1fr;
  }
  .bgpost-nexus-bento-1,
  .bgpost-nexus-bento-2,
  .bgpost-nexus-bento-3 {
    grid-column: span 1;
  }
}
/* BGPOST_VARIANT:nexus — END */
/* /BOT */

/* BOT: Fix mobile RTL alignment, responsive sizes, and update globe container class — 2026-04-21 06:24 */
/* BGPOST_VARIANT:nexus — Mobile & LTR fixes */
.bgpost-container.bgpost-nexus {
  direction: ltr !important;
  text-align: left;
}
.bgpost-nexus-terminal {
  text-align: left;
  direction: ltr;
}
.bgpost-nexus-globe-container {
  width: 100%;
  height: 500px;
  position: relative;
}
/* Mobile Responsive improvements */
@media (max-width: 992px) {
  .bgpost-nexus-hero {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .bgpost-nexus-globe-container {
    height: 350px;
  }
  .bgpost-nexus-table-wrapper {
    overflow-x: auto;
  }
  .bgpost-nexus-h1 {
    font-size: 2.2rem;
  }
}
/* /BOT */

/* BOT: Add styles for analytics cards (equalizer, progress ring) and responsive improvements for the slider and V3 globe — 2026-04-21 06:31 */
/* BGPOST_VARIANT:nexus — Analytics and Responsive Fixes */
.bgpost-nexus-globe-container-v3 {
  width: 100%;
  height: 500px;
  position: relative;
}
@media (max-width: 992px) {
  .bgpost-nexus-globe-container-v3 {
    height: 350px;
  }
  .bgpost-nexus-marquee svg {
    height: 40px; /* Bigger on mobile */
  }
}

/* Equalizer Animation */
.bgpost-nexus-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  width: 100%;
}
.bgpost-nexus-equalizer .bar {
  flex: 1;
  background: #3b82f6;
  border-radius: 2px 2px 0 0;
  animation: bgpostEqualizer 1.5s infinite ease-in-out alternate;
}
.bgpost-nexus-equalizer .bar:nth-child(1) {
  animation-delay: 0.1s;
  height: 30%;
}
.bgpost-nexus-equalizer .bar:nth-child(2) {
  animation-delay: 0.4s;
  height: 60%;
}
.bgpost-nexus-equalizer .bar:nth-child(3) {
  animation-delay: 0.2s;
  height: 80%;
}
.bgpost-nexus-equalizer .bar:nth-child(4) {
  animation-delay: 0.6s;
  height: 40%;
}
.bgpost-nexus-equalizer .bar:nth-child(5) {
  animation-delay: 0.3s;
  height: 90%;
}
.bgpost-nexus-equalizer .bar:nth-child(6) {
  animation-delay: 0.7s;
  height: 50%;
}
.bgpost-nexus-equalizer .bar:nth-child(7) {
  animation-delay: 0.5s;
  height: 70%;
}
.bgpost-nexus-equalizer .bar:nth-child(8) {
  animation-delay: 0.8s;
  height: 40%;
}
.bgpost-nexus-equalizer .bar:nth-child(9) {
  animation-delay: 0.2s;
  height: 60%;
}
.bgpost-nexus-equalizer .bar:nth-child(10) {
  animation-delay: 0.6s;
  height: 80%;
}

@keyframes bgpostEqualizer {
  0% {
    transform: scaleY(0.2);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

/* Circular Progress Ring */
.bgpost-nexus-ring-container {
  position: relative;
  width: 80px;
  height: 80px;
}
.bgpost-nexus-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.bgpost-nexus-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
}
.bgpost-nexus-ring-fill {
  fill: none;
  stroke: #10b981;
  stroke-width: 8;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  stroke-linecap: round;
  animation: bgpostRingFill 2.5s ease-out forwards;
  animation-delay: 0.5s;
}
.bgpost-nexus-ring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--nexus-mono);
  font-size: 0.95rem;
  color: #10b981;
  font-weight: bold;
}
@keyframes bgpostRingFill {
  to {
    stroke-dashoffset: 0.25;
  }
}

/* /BOT */

/* BOT: Increase size of Neural Integrations marquee text — 2026-04-21 06:48 */
/* BGPOST_VARIANT:nexus — Fix marquee SVG size */
.bgpost-nexus-marquee svg {
  height: 60px !important;
  opacity: 0.7;
}

@media (max-width: 992px) {
  .bgpost-nexus-marquee svg {
    height: 50px !important;
  }
}
/* /BOT */

/* BOT: Prevent flexbox from shrinking marquee SVGs and making the text too small — 2026-04-21 06:49 */
/* BGPOST_VARIANT:nexus — Fix marquee text shrinking */
.bgpost-nexus-marquee-inner svg {
  flex-shrink: 0;
  height: 60px !important;
  width: auto;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .bgpost-nexus-marquee-inner svg {
    height: 50px !important;
  }
}

/* /BOT */

/* BOT: Adjust marquee text size to be perfectly balanced (not too big, not too small) — 2026-04-21 06:49 */
/* BGPOST_VARIANT:nexus — Adjust marquee SVG size to a middle ground */
.bgpost-nexus-marquee-inner svg {
  flex-shrink: 0;
  height: 40px !important;
  width: auto;
  opacity: 0.7;
}

@media (max-width: 992px) {
  .bgpost-nexus-marquee-inner svg {
    height: 32px !important;
  }
}

/* /BOT */

/* BOT: Fix globe container on mobile to be edge-to-edge and scale down properly — 2026-04-21 06:55 */
/* BGPOST_VARIANT:nexus — Fix mobile globe edge-to-edge and sizing */
@media (max-width: 992px) {
  .bgpost-nexus-globe-container-v4 {
    height: 380px !important;
    width: calc(100% + 40px) !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    overflow: hidden;
  }

  .bgpost-nexus {
    overflow-x: hidden !important;
  }
}
/* /BOT */

/* BOT: Add classes for new content sections in Nexus variant — 2026-04-21 07:13 */
/* BGPOST_VARIANT:nexus — Content Expansion */
.bgpost-nexus-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.bgpost-nexus-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #3b82f6;
}

.bgpost-nexus-icon-wrap.emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.bgpost-nexus-icon-wrap.indigo {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
}

.bgpost-nexus-text-block {
  margin-bottom: 60px;
  max-width: 800px;
}

.bgpost-nexus-text-block p {
  color: #a1a1aa;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bgpost-nexus-quote {
  border-left: 4px solid #3b82f6;
  padding-left: 20px;
  margin: 40px 0;
  font-style: italic;
  color: #e4e4e7;
  font-size: 1.2rem;
}
/* /BOT */

/* BOT: Add styles for FAQ and Architecture sections on the Nexus-V landing page — 2026-04-21 07:28 */
/* BGPOST_VARIANT:nexus — FAQ & Architecture Additions */
.bgpost-nexus-faq {
  margin-top: 40px;
}
.bgpost-nexus-faq .bgpost-faq-question {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}
.bgpost-nexus-faq .bgpost-faq-question-text {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 500;
}
.bgpost-nexus-faq .bgpost-faq-answer {
  padding: 20px 0;
  color: #a1a1aa;
  line-height: 1.6;
  font-size: 0.95rem;
}
.bgpost-nexus-faq .bgpost-faq-icon {
  font-size: 1.5rem;
  color: var(--nexus-accent, #3b82f6);
  transition: transform 0.3s ease;
}
.bgpost-nexus-faq .bgpost-faq-question[aria-expanded='true'] .bgpost-faq-icon {
  transform: rotate(45deg);
}

.bgpost-nexus-architecture-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.bgpost-nexus-architecture-card {
  flex: 1;
  min-width: 250px;
}
.bgpost-nexus-architecture-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.bgpost-nexus-architecture-card.phase-1 h4 {
  color: #3b82f6;
}
.bgpost-nexus-architecture-card.phase-2 h4 {
  color: #10b981;
}
.bgpost-nexus-architecture-card.phase-3 h4 {
  color: #facc15;
}
.bgpost-nexus-architecture-card p {
  color: #a1a1aa;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}
/* /BOT */

/* BOT: Fix zero height bug for V4 globe container on desktop — 2026-04-21 07:52 */
.bgpost-nexus-globe-container-v4 {
  width: 100%;
  height: 500px;
  position: relative;
}
/* /BOT */

/* BOT: Add styling for the new isolated V7 globe container — 2026-04-21 07:59 */
/* BGPOST_VARIANT:nexus — V7 container CSS to solve double globe */
.bgpost-nexus-globe-container-v7 {
  width: 100%;
  height: 500px;
  position: relative;
}
@media (max-width: 992px) {
  .bgpost-nexus-globe-container-v7 {
    height: 380px !important;
    width: calc(100% + 40px) !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    overflow: hidden;
  }
}
/* /BOT */

/* BOT: Add width and height properties to the V10 globe container so it renders on screen. — 2026-04-21 08:45 */
/* BGPOST_VARIANT:nexus — V10 container CSS for the globe */
.bgpost-nexus-globe-container-v10 {
  width: 100%;
  height: 500px;
  position: relative;
}
@media (max-width: 992px) {
  .bgpost-nexus-globe-container-v10 {
    height: 380px !important;
    width: calc(100% + 40px) !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    overflow: hidden;
  }
}

/* /BOT */

/* BOT: Center hero text and add V11 container — 2026-04-21 08:59 */
/* BGPOST_VARIANT:nexus — Center Hero Desktop and V11 container */
.bgpost-nexus-hero {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.bgpost-nexus-hero-text {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bgpost-nexus-globe-container-v11 {
  width: 100%;
  height: 550px;
  position: relative;
}
@media (max-width: 992px) {
  .bgpost-nexus-globe-container-v11 {
    height: 380px !important;
    width: calc(100% + 40px) !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    overflow: hidden;
  }
}

/* /BOT */

/* BOT: Add styling for the uploaded logo image — 2026-04-21 09:01 */
/* BGPOST_VARIANT:nexus — Logo image styling */
.bgpost-nexus-logo-img {
  width: 80px;
  height: auto;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* /BOT */

/* BOT: Revert hero desktop layout to side-by-side and center other sections on mobile — 2026-04-21 09:06 */
/* BGPOST_VARIANT:nexus — Layout Adjustments: Revert hero desktop to side-by-side, center text in mobile */

/* Revert Hero Desktop to side-by-side */
@media (min-width: 993px) {
  .bgpost-nexus-hero {
    grid-template-columns: 1fr 1fr !important;
    text-align: left !important;
    justify-items: start !important;
  }
  .bgpost-nexus-hero-text {
    margin: 0 !important;
    align-items: flex-start !important;
  }
}

/* Center text blocks and section titles in general (both desktop and mobile) */
.bgpost-nexus-text-block {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.bgpost-nexus-section-title {
  text-align: center;
}

/* Center content inside cards and icons on mobile */
@media (max-width: 992px) {
  .bgpost-nexus-card,
  .bgpost-nexus-architecture-card,
  .bgpost-nexus-text-block p {
    text-align: center;
  }
  .bgpost-nexus-icon-wrap {
    margin-left: auto;
    margin-right: auto;
  }
}

/* /BOT */

/* BOT: Fix zero height on V12 globe container — 2026-04-21 11:04 */
/* BGPOST_VARIANT:nexus — V12 container CSS to fix zero height globe */
.bgpost-nexus-globe-container-v12 {
  width: 100%;
  height: 550px;
  position: relative;
}
@media (max-width: 992px) {
  .bgpost-nexus-globe-container-v12 {
    height: 380px !important;
    width: calc(100% + 40px) !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    overflow: hidden;
  }
}

/* /BOT */

/* BOT: Fix Hero layout to be side-by-side on desktop, center section content below hero, and improve mobile stacking. — 2026-04-21 11:18 */
/* BGPOST_VARIANT:nexus — Final Layout Polish */

/* Side-by-side Hero on Desktop */
@media (min-width: 993px) {
  .bgpost-nexus-hero {
    grid-template-columns: 1fr 1.2fr !important;
    text-align: left !important;
    align-items: center !important;
    justify-items: start !important;
    gap: 60px !important;
  }
  .bgpost-nexus-hero-text {
    margin: 0 !important;
    align-items: flex-start !important;
  }
  .bgpost-nexus-globe-container-v12 {
    height: 600px !important;
    width: 100% !important;
  }
}

/* Centered content for all sections below hero */
.bgpost-nexus-content > section {
  max-width: 1100px;
  margin: 0 auto 100px;
}

.bgpost-nexus-section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 50px;
}

.bgpost-nexus-text-block {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Fixes */
@media (max-width: 992px) {
  .bgpost-nexus-hero {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding-top: 40px !important;
  }
  .bgpost-nexus-hero-text {
    margin: 0 auto !important;
    align-items: center !important;
    order: 1;
  }
  .bgpost-nexus-globe-container-v12 {
    height: 400px !important;
    order: 2;
    width: 100% !important;
    margin-top: 20px;
  }
  .bgpost-nexus-logo-img {
    margin-left: auto;
    margin-right: auto;
  }
}

/* /BOT */

/* BOT: Add Black Sachbak (bs) dark band variant styles — 2026-04-21 13:18 */
/* BGPOST_VARIANT:bs — START */
.bgpost-container.bgpost-bs {
  background-color: #050505;
  color: #f3f4f6;
  font-family: var(--bgpost-font-family);
  min-height: 100vh;
  direction: ltr;
  text-align: left;
}
.bgpost-bs-hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
  border-bottom: 1px solid #333;
}
.bgpost-bs-logo-container {
  max-width: 300px;
  margin: 0 auto 30px;
}
.bgpost-bs-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
  border-radius: 12px;
}
.bgpost-bs-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}
.bgpost-bs-subtitle {
  font-size: 1.25rem;
  color: #a3a3a3;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.bgpost-bs-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.bgpost-bs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e53e3e;
  color: #fff !important;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid #e53e3e;
  cursor: pointer;
}
.bgpost-bs-btn:hover {
  background: #c53030;
  border-color: #c53030;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(229, 62, 62, 0.3);
}
.bgpost-bs-btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff !important;
}
.bgpost-bs-btn-outline:hover {
  background: #fff;
  color: #000 !important;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}
.bgpost-bs-section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.bgpost-bs-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
  position: relative;
}
.bgpost-bs-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #e53e3e;
  margin: 15px auto 0;
}
/* Tour Table */
.bgpost-bs-tour-wrapper {
  overflow-x: auto;
}
.bgpost-bs-tour-table {
  width: 100%;
  border-collapse: collapse;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}
.bgpost-bs-tour-table th,
.bgpost-bs-tour-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #222;
}
.bgpost-bs-tour-table th {
  background: #1a1a1a;
  color: #a3a3a3;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.bgpost-bs-tour-table tr:last-child td {
  border-bottom: none;
}
.bgpost-bs-tour-table tr:hover td {
  background: #151515;
}
.bgpost-bs-date {
  font-weight: 700;
  color: #e53e3e;
  font-size: 1.1rem;
  white-space: nowrap;
}
.bgpost-bs-venue {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}
.bgpost-bs-location {
  color: #a3a3a3;
}
.bgpost-bs-tix-btn {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  border: 1px solid #555;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
}
.bgpost-bs-tix-btn:hover {
  background: #fff;
  color: #000 !important;
  border-color: #fff;
}
/* Cards */
.bgpost-bs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.bgpost-bs-card {
  background: #111;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #222;
  transition: transform 0.3s ease;
}
.bgpost-bs-card:hover {
  transform: translateY(-5px);
  border-color: #333;
}
.bgpost-bs-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(229, 62, 62, 0.1);
  color: #e53e3e;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.bgpost-bs-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.bgpost-bs-card-desc {
  color: #a3a3a3;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .bgpost-bs-actions {
    flex-direction: column;
  }
  .bgpost-bs-tour-table,
  .bgpost-bs-tour-table tbody,
  .bgpost-bs-tour-table tr,
  .bgpost-bs-tour-table td {
    display: block;
    width: 100%;
  }
  .bgpost-bs-tour-table thead {
    display: none;
  }
  .bgpost-bs-tour-table tr {
    margin-bottom: 15px;
    border: 1px solid #222;
    border-radius: 8px;
  }
  .bgpost-bs-tour-table td {
    text-align: center;
    padding: 15px;
    border: none;
  }
  .bgpost-bs-tour-table td:last-child {
    padding-bottom: 20px;
  }
}
/* BGPOST_VARIANT:bs — END */
/* /BOT */

/* BOT: Add premium 'Alex Gorbachev' variant styling for sales course landing page — 2026-04-21 13:29 */
/* BGPOST_VARIANT:alex — START */
.bgpost-container.bgpost-alex {
  background-color: #0a0a0a;
  color: #f3f4f6;
  font-family: var(--bgpost-font-family);
  min-height: 100vh;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
}
.bgpost-alex-hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #1f1a10 0%, #0a0a0a 100%);
  border-bottom: 1px solid #333;
  overflow: hidden;
}
.bgpost-alex-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.bgpost-alex-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.bgpost-alex-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.bgpost-alex-highlight {
  color: #d4af37;
}
.bgpost-alex-subtitle {
  font-size: 1.2rem;
  color: #a3a3a3;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.bgpost-alex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37 0%, #aa8a29 100%);
  color: #000 !important;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}
.bgpost-alex-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #e5c358 0%, #d4af37 100%);
}
.bgpost-alex-section {
  padding: 100px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.bgpost-alex-section-light {
  background: #111;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.bgpost-alex-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}
.bgpost-alex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.bgpost-alex-card {
  background: #1a1a1a;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #333;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.bgpost-alex-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}
.bgpost-alex-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.bgpost-alex-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 15px;
}
.bgpost-alex-card p {
  color: #a3a3a3;
  font-size: 1rem;
  line-height: 1.6;
}
.bgpost-alex-story {
  display: flex;
  gap: 50px;
  align-items: center;
}
.bgpost-alex-story-content {
  flex: 1;
}
.bgpost-alex-story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}
.bgpost-alex-story-content p {
  color: #a3a3a3;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.bgpost-alex-story-visual {
  flex: 1;
  position: relative;
}
.bgpost-alex-story-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
}
.bgpost-alex-story-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #d4af37;
  color: #000;
  padding: 20px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.bgpost-alex-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #1a1a1a;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #333;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.bgpost-alex-input {
  width: 100%;
  padding: 16px 20px;
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.bgpost-alex-input:focus {
  outline: none;
  border-color: #d4af37;
}
.bgpost-alex-form-container .bgpost-alex-btn {
  width: 100%;
}
@media (max-width: 768px) {
  .bgpost-alex-story {
    flex-direction: column;
  }
  .bgpost-alex-story-box {
    bottom: -10px;
    right: 10px;
  }
  .bgpost-alex-form-container {
    padding: 30px 20px;
  }
  .bgpost-alex-title {
    font-size: 2rem;
  }
}
/* BGPOST_VARIANT:alex — END */
/* /BOT */

/* BOT: Upgrade Alex variant to premium app-like UI with glassmorphism, floating elements, and staggered animations — 2026-04-21 13:33 */
/* BGPOST_VARIANT:alex — Premium App-Like UI & Animations (Glassmorphism & Float) */

/* Glass Cards */
.bgpost-alex-glass-card {
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bgpost-alex-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.05),
    transparent
  );
  transition: left 0.7s ease;
  pointer-events: none;
}
.bgpost-alex-glass-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.bgpost-alex-glass-card p {
  color: #a3a3a3;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.bgpost-alex-glass-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 175, 55, 0.2);
}
.bgpost-alex-glass-card:hover::before {
  left: 200%;
}

/* Staggered Hero Animation */
.bgpost-alex-animate-up {
  opacity: 0;
  transform: translateY(40px);
  animation: alexFadeInUp 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.3s;
}
.delay-3 {
  animation-delay: 0.5s;
}
.delay-4 {
  animation-delay: 0.7s;
}

@keyframes alexFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shimmer on Button */
.bgpost-alex-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.bgpost-alex-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: alexShimmer 3s infinite;
  z-index: -1;
}
@keyframes alexShimmer {
  to {
    left: 200%;
  }
}

/* Floating Elements */
.bgpost-alex-float {
  animation: alexFloat 6s ease-in-out infinite;
}
@keyframes alexFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Glowing Form Glass Container */
.bgpost-alex-form-container {
  background: rgba(26, 26, 26, 0.5) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  position: relative;
  z-index: 1;
}
.bgpost-alex-form-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
    45deg,
    rgba(212, 175, 55, 0.4),
    transparent,
    transparent,
    rgba(212, 175, 55, 0.4)
  );
  z-index: -1;
  border-radius: inherit;
  opacity: 0.5;
  animation: alexBorderGlow 4s linear infinite;
  pointer-events: none;
}
@keyframes alexBorderGlow {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.2;
  }
}

/* Smooth reveal active state overrides */
.bgpost-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* /BOT */

/* BOT: Add Terms of Use modal, form checkbox, and footer for the Alex variant — 2026-04-21 13:36 */
/* BGPOST_VARIANT:alex — Form Checkbox, Footer, and Modal CSS */
.bgpost-alex-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  text-align: right;
}
.bgpost-alex-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #d4af37;
  cursor: pointer;
  flex-shrink: 0;
}
.bgpost-alex-checkbox-label {
  color: #a3a3a3;
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1.4;
}
.bgpost-alex-terms-link {
  color: #d4af37;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
.bgpost-alex-terms-link:hover {
  color: #fff;
}
.bgpost-alex-footer {
  background: #050505;
  border-top: 1px solid #222;
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
}
.bgpost-alex-footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  color: #666;
  font-size: 0.9rem;
}
.bgpost-alex-footer-content p {
  margin: 0;
}
@media (max-width: 600px) {
  .bgpost-alex-footer-content {
    flex-direction: column;
    justify-content: center;
  }
}

/* Modal Styles */
.bgpost-alex-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.bgpost-alex-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.bgpost-alex-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.bgpost-alex-modal-content {
  position: relative;
  background: #111;
  border: 1px solid #333;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.bgpost-alex-modal.is-open .bgpost-alex-modal-content {
  transform: translateY(0);
}
.bgpost-alex-modal-close {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.bgpost-alex-modal-close:hover {
  background: #d4af37;
  color: #000;
}
.bgpost-alex-modal-content h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-align: center;
}
.bgpost-alex-modal-body {
  overflow-y: auto;
  padding-left: 10px; /* Space for scrollbar */
  text-align: right;
}
.bgpost-alex-modal-body p {
  color: #a3a3a3;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.bgpost-alex-modal-body p strong {
  color: #d4af37;
}
/* Custom Scrollbar for Modal */
.bgpost-alex-modal-body::-webkit-scrollbar {
  width: 6px;
}
.bgpost-alex-modal-body::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}
.bgpost-alex-modal-body::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
.bgpost-alex-modal-body::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}
/* /BOT */

/* BOT: Create a premium modern variant for the redesigned landing page with scroll-reveal, glass cards, modal support, and privacy/terms UI — 2026-04-21 13:52 */
/* BGPOST_VARIANT:mg — START */
.bgpost-container.bgpost-mg {
  --bgpost-mg-bg: #07111f;
  --bgpost-mg-surface: rgba(10, 18, 32, 0.72);
  --bgpost-mg-surface-2: rgba(255, 255, 255, 0.04);
  --bgpost-mg-line: rgba(255, 255, 255, 0.1);
  --bgpost-mg-text: #e5eefb;
  --bgpost-mg-muted: #9fb0c8;
  --bgpost-mg-accent: #f5c451;
  --bgpost-mg-accent-2: #66d6ff;
  --bgpost-mg-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --bgpost-mg-radius: 22px;
  --bgpost-mg-radius-lg: 34px;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(102, 214, 255, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(245, 196, 81, 0.16),
      transparent 22%
    ),
    linear-gradient(180deg, #08101d 0%, #04070d 100%);
  color: var(--bgpost-mg-text);
  font-family: var(--bgpost-font-family);
  direction: rtl;
  text-align: right;
  overflow: clip;
}

.bgpost-container.bgpost-mg .bgpost-mg-shell {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.bgpost-container.bgpost-mg .bgpost-mg-nav {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px auto 0;
  padding: 14px 18px;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: var(--bgpost-mg-shadow);
}

.bgpost-container.bgpost-mg .bgpost-mg-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bgpost-container.bgpost-mg .bgpost-mg-brand-mark {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.bgpost-container.bgpost-mg .bgpost-mg-brand-sub {
  font-size: 0.82rem;
  color: var(--bgpost-mg-muted);
}

.bgpost-container.bgpost-mg .bgpost-mg-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--bgpost-mg-text);
  font-size: 0.92rem;
}

.bgpost-container.bgpost-mg .bgpost-mg-hero {
  position: relative;
  padding: 54px 0 22px;
}

.bgpost-container.bgpost-mg .bgpost-mg-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.bgpost-container.bgpost-mg .bgpost-mg-hero-copy,
.bgpost-container.bgpost-mg .bgpost-mg-form-card,
.bgpost-container.bgpost-mg .bgpost-mg-card,
.bgpost-container.bgpost-mg .bgpost-mg-panel,
.bgpost-container.bgpost-mg .bgpost-mg-faq-item {
  background: var(--bgpost-mg-surface);
  border: 1px solid var(--bgpost-mg-line);
  border-radius: var(--bgpost-mg-radius-lg);
  box-shadow: var(--bgpost-mg-shadow);
  backdrop-filter: blur(18px);
}

.bgpost-container.bgpost-mg .bgpost-mg-hero-copy {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.bgpost-container.bgpost-mg .bgpost-mg-hero-copy::after,
.bgpost-container.bgpost-mg .bgpost-mg-form-card::after {
  content: '';
  position: absolute;
  inset: auto -30% -50% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(102, 214, 255, 0.18),
    transparent 68%
  );
  pointer-events: none;
}

.bgpost-container.bgpost-mg .bgpost-mg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 196, 81, 0.12);
  border: 1px solid rgba(245, 196, 81, 0.28);
  color: var(--bgpost-mg-accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.bgpost-container.bgpost-mg .bgpost-mg-title {
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
  max-width: 13ch;
}

.bgpost-container.bgpost-mg .bgpost-mg-title .accent {
  color: var(--bgpost-mg-accent);
}

.bgpost-container.bgpost-mg .bgpost-mg-subtitle {
  font-size: 1.08rem;
  color: var(--bgpost-mg-muted);
  max-width: 62ch;
}

.bgpost-container.bgpost-mg .bgpost-mg-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.bgpost-container.bgpost-mg .bgpost-mg-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bgpost-container.bgpost-mg .bgpost-mg-stat-value {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.bgpost-container.bgpost-mg .bgpost-mg-stat-label {
  display: block;
  color: var(--bgpost-mg-muted);
  font-size: 0.92rem;
}

.bgpost-container.bgpost-mg .bgpost-mg-form-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.bgpost-container.bgpost-mg .bgpost-mg-form-title {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.bgpost-container.bgpost-mg .bgpost-mg-form-note {
  color: var(--bgpost-mg-muted);
  margin-bottom: 20px;
}

.bgpost-container.bgpost-mg .bgpost-mg-field {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  margin-bottom: 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.bgpost-container.bgpost-mg .bgpost-mg-field:focus {
  border-color: rgba(102, 214, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.bgpost-container.bgpost-mg .bgpost-mg-radio-row,
.bgpost-container.bgpost-mg .bgpost-mg-inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bgpost-container.bgpost-mg .bgpost-mg-choice {
  flex: 1;
  min-width: 120px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.bgpost-container.bgpost-mg .bgpost-mg-choice input {
  accent-color: var(--bgpost-mg-accent);
}

.bgpost-container.bgpost-mg .bgpost-btn-submit,
.bgpost-container.bgpost-mg .bgpost-mg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bgpost-mg-accent) 0%, #ffd978 100%);
  color: #09101b;
  font-weight: 900;
  border: none;
  box-shadow: 0 16px 34px rgba(245, 196, 81, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.bgpost-container.bgpost-mg .bgpost-btn-submit:hover,
.bgpost-container.bgpost-mg .bgpost-mg-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 22px 40px rgba(245, 196, 81, 0.32);
}

.bgpost-container.bgpost-mg .bgpost-main-section {
  padding: 24px 0 0;
  margin-top: 26px;
}

.bgpost-container.bgpost-mg .bgpost-mg-section {
  padding: 90px 0 0;
}

.bgpost-container.bgpost-mg .bgpost-mg-section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.bgpost-container.bgpost-mg .bgpost-mg-h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.bgpost-container.bgpost-mg .bgpost-mg-lead {
  color: var(--bgpost-mg-muted);
  max-width: 70ch;
}

.bgpost-container.bgpost-mg .bgpost-mg-bento,
.bgpost-container.bgpost-mg .bgpost-mg-grid-2,
.bgpost-container.bgpost-mg .bgpost-mg-grid-3 {
  display: grid;
  gap: 16px;
}

.bgpost-container.bgpost-mg .bgpost-mg-bento {
  grid-template-columns: repeat(12, 1fr);
}
.bgpost-container.bgpost-mg .bgpost-mg-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bgpost-container.bgpost-mg .bgpost-mg-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bgpost-container.bgpost-mg .bgpost-mg-card {
  padding: 22px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.bgpost-container.bgpost-mg .bgpost-mg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 214, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.bgpost-container.bgpost-mg .bgpost-mg-card-hero {
  grid-column: span 7;
}
.bgpost-container.bgpost-mg .bgpost-mg-card-side {
  grid-column: span 5;
}
.bgpost-container.bgpost-mg .bgpost-mg-card-wide {
  grid-column: span 12;
}
.bgpost-container.bgpost-mg .bgpost-mg-card-third {
  grid-column: span 4;
}

.bgpost-container.bgpost-mg .bgpost-mg-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--bgpost-mg-accent);
  margin-bottom: 16px;
}

.bgpost-container.bgpost-mg .bgpost-mg-card h3,
.bgpost-container.bgpost-mg .bgpost-mg-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.bgpost-container.bgpost-mg .bgpost-mg-card p,
.bgpost-container.bgpost-mg .bgpost-mg-muted {
  color: var(--bgpost-mg-muted);
}

.bgpost-container.bgpost-mg .bgpost-mg-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bgpost-container.bgpost-mg .bgpost-mg-step {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.bgpost-container.bgpost-mg .bgpost-mg-step-no {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(102, 214, 255, 0.12);
  color: var(--bgpost-mg-accent-2);
  font-weight: 900;
}

.bgpost-container.bgpost-mg .bgpost-mg-checklist {
  display: grid;
  gap: 12px;
}
.bgpost-container.bgpost-mg .bgpost-mg-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.bgpost-container.bgpost-mg .bgpost-mg-check .bgpost-icon {
  margin: 0;
  flex: 0 0 auto;
}

.bgpost-container.bgpost-mg .bgpost-faq {
  display: grid;
  gap: 12px;
}
.bgpost-container.bgpost-mg .bgpost-faq-item,
.bgpost-container.bgpost-mg .bgpost-mg-faq-item {
  padding: 0;
  overflow: hidden;
}
.bgpost-container.bgpost-mg .bgpost-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  color: #fff;
  text-align: right;
}
.bgpost-container.bgpost-mg .bgpost-faq-question-text {
  font-size: 1.05rem;
  line-height: 1.4;
}
.bgpost-container.bgpost-mg .bgpost-faq-answer {
  padding: 0 20px 18px;
  color: var(--bgpost-mg-muted);
}
.bgpost-container.bgpost-mg .bgpost-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(102, 214, 255, 0.12);
  flex: 0 0 auto;
}

.bgpost-container.bgpost-mg .bgpost-mg-footer {
  padding: 60px 0 90px;
  color: var(--bgpost-mg-muted);
  font-size: 0.92rem;
}

.bgpost-container.bgpost-mg .bgpost-mg-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

.bgpost-container.bgpost-mg .bgpost-mg-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bgpost-container.bgpost-mg .bgpost-mg-scroll-indicator {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  z-index: 45;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--bgpost-mg-shadow);
}

.bgpost-container.bgpost-mg .bgpost-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.bgpost-container.bgpost-mg .bgpost-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.bgpost-container.bgpost-mg .bgpost-mg-marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.bgpost-container.bgpost-mg .bgpost-mg-marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: bgpostMgMarquee 18s linear infinite;
}
@keyframes bgpostMgMarquee {
  to {
    transform: translateX(-50%);
  }
}

.bgpost-container.bgpost-mg .bgpost-mg-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.bgpost-container.bgpost-mg .bgpost-mg-modal.is-open {
  display: flex;
}
.bgpost-container.bgpost-mg .bgpost-mg-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 16, 0.82);
  backdrop-filter: blur(8px);
}
.bgpost-container.bgpost-mg .bgpost-mg-modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: 84vh;
  overflow: auto;
  padding: 26px;
  background: rgba(10, 18, 32, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: var(--bgpost-mg-shadow);
}
.bgpost-container.bgpost-mg .bgpost-mg-modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.bgpost-container.bgpost-mg .bgpost-mg-modal-body {
  color: var(--bgpost-mg-muted);
  line-height: 1.8;
}

@media (max-width: 960px) {
  .bgpost-container.bgpost-mg .bgpost-mg-hero-grid,
  .bgpost-container.bgpost-mg .bgpost-mg-grid-2,
  .bgpost-container.bgpost-mg .bgpost-mg-grid-3,
  .bgpost-container.bgpost-mg .bgpost-mg-steps,
  .bgpost-container.bgpost-mg .bgpost-mg-stats {
    grid-template-columns: 1fr;
  }
  .bgpost-container.bgpost-mg .bgpost-mg-card-hero,
  .bgpost-container.bgpost-mg .bgpost-mg-card-side,
  .bgpost-container.bgpost-mg .bgpost-mg-card-third,
  .bgpost-container.bgpost-mg .bgpost-mg-card-wide {
    grid-column: span 1;
  }
  .bgpost-container.bgpost-mg .bgpost-mg-nav {
    border-radius: 28px;
    padding: 12px 14px;
  }
  .bgpost-container.bgpost-mg .bgpost-mg-title {
    max-width: none;
    font-size: clamp(2.1rem, 9vw, 3.5rem);
  }
  .bgpost-container.bgpost-mg .bgpost-mg-scroll-indicator {
    display: none;
  }
}
/* BGPOST_VARIANT:mg — END */
/* /BOT */

/* BOT: Add floating ToC sidebar, scroll progress bar, and sticky CTA button for the Alex premium variant. — 2026-04-21 13:58 */
/* BGPOST_VARIANT:alex — Floating Elements (ToC, Progress, CTA) */

/* Top Progress Bar */
.bgpost-alex-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 10001;
}
.bgpost-alex-progress-bar {
  height: 100%;
  background: linear-gradient(to right, #d4af37, #f5c451);
  width: 0%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transition: width 0.1s ease-out;
}

/* Floating Sidebar ToC */
.bgpost-alex-sidebar-nav {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.bgpost-alex-toc-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bgpost-alex-toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}
.bgpost-alex-toc-link::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.bgpost-alex-toc-link span {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.bgpost-alex-toc-link:hover span,
.bgpost-alex-toc-link.active span {
  opacity: 1;
  transform: translateX(0);
}
.bgpost-alex-toc-link.active {
  color: #d4af37;
}
.bgpost-alex-toc-link.active::before {
  background: #d4af37;
  box-shadow: 0 0 10px #d4af37;
  transform: scale(1.3);
}

/* Floating CTA Button */
.bgpost-alex-floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #d4af37;
  color: #000 !important;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  z-index: 1000;
  text-decoration: none;
  transform: translateY(150%);
  transition:
    transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background 0.3s;
}
.bgpost-alex-floating-cta.is-visible {
  transform: translateY(0);
}
.bgpost-alex-floating-cta:hover {
  background: #fff;
  transform: scale(1.05) translateY(0);
}
.bgpost-alex-floating-cta .bgpost-icon {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .bgpost-alex-sidebar-nav {
    display: none; /* Hide sidebar on mobile, keep progress bar */
  }
  .bgpost-alex-floating-cta {
    bottom: 20px;
    right: 20px;
    left: 20px;
    justify-content: center;
  }
  .bgpost-alex-floating-cta-text {
    font-size: 1rem;
  }
}

/* /BOT */

/* BOT: Fix giant floating CTA button and icon sizing on Alex variant landing page — 2026-04-21 14:00 */
/* BGPOST_VARIANT:alex — Fix giant floating CTA button and icon sizing */
.bgpost-alex-floating-cta {
  width: auto !important;
  height: auto !important;
  max-width: fit-content !important;
  padding: 14px 28px !important;
  line-height: 1 !important;
}

.bgpost-alex-floating-cta .bgpost-icon {
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.bgpost-alex-floating-cta-text {
  font-size: 1rem !important;
  white-space: nowrap !important;
}

@media (max-width: 992px) {
  .bgpost-alex-floating-cta {
    bottom: 20px !important;
    right: 20px !important;
    left: 20px !important;
    width: auto !important;
    max-width: none !important;
  }
}

/* /BOT */

/* BOT: Add isolated RZL landing-page redesign variant to fix broken layout, icon sizing, typography, and mobile spacing for the land investment post — 2026-04-21 14:05 */
/* BGPOST_VARIANT:rzl — START */
.bgpost-container.bgpost-rzl {
  --rzl-bg: #07101d;
  --rzl-bg-soft: #0b1628;
  --rzl-surface: rgba(11, 22, 40, 0.78);
  --rzl-surface-strong: rgba(12, 24, 44, 0.92);
  --rzl-surface-light: rgba(255, 255, 255, 0.05);
  --rzl-line: rgba(255, 255, 255, 0.1);
  --rzl-line-strong: rgba(255, 255, 255, 0.16);
  --rzl-text: #eef4ff;
  --rzl-muted: #a8b7cf;
  --rzl-accent: #f5c451;
  --rzl-accent-strong: #ffd978;
  --rzl-accent-soft: rgba(245, 196, 81, 0.14);
  --rzl-cyan: #78d8ff;
  --rzl-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --rzl-radius: 22px;
  --rzl-radius-lg: 30px;
  position: relative;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
  color: var(--rzl-text);
  font-family: var(--bgpost-font-family), Arial, sans-serif;
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(120, 216, 255, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at 88% 4%,
      rgba(245, 196, 81, 0.16),
      transparent 22%
    ),
    linear-gradient(180deg, #07101d 0%, #04070d 100%);
}

.bgpost-container.bgpost-rzl,
.bgpost-container.bgpost-rzl
  :where(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a,
    button,
    input,
    label,
    legend,
    span,
    strong,
    small
  ) {
  font-family: var(--bgpost-font-family), Arial, sans-serif;
}

.bgpost-container.bgpost-rzl::before,
.bgpost-container.bgpost-rzl::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
}

.bgpost-container.bgpost-rzl::before {
  top: 110px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(245, 196, 81, 0.18);
}

.bgpost-container.bgpost-rzl::after {
  top: 260px;
  left: -90px;
  width: 260px;
  height: 260px;
  background: rgba(120, 216, 255, 0.12);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 0;
}

.bgpost-container.bgpost-rzl .bgpost-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  vertical-align: middle;
}

.bgpost-container.bgpost-rzl .bgpost-icon svg {
  width: 100%;
  height: 100%;
}

.bgpost-container.bgpost-rzl :where(a, button, input, textarea, select) {
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

.bgpost-container.bgpost-rzl
  :where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--rzl-accent-strong);
  outline-offset: 3px;
}

.bgpost-container.bgpost-rzl [data-rzl-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.bgpost-container.bgpost-rzl [data-rzl-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 26px;
  background: rgba(7, 16, 29, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-topbar[data-scrolled='1'] {
  background: rgba(7, 16, 29, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-brand-mark {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-brand-sub {
  font-size: 0.84rem;
  color: var(--rzl-muted);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-btn-primary {
  color: #08111f;
  background: linear-gradient(
    135deg,
    var(--rzl-accent) 0%,
    var(--rzl-accent-strong) 100%
  );
  box-shadow: 0 14px 34px rgba(245, 196, 81, 0.22);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(245, 196, 81, 0.28);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-btn-secondary {
  color: var(--rzl-text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-hero {
  padding: 12px 0 0;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 22px;
  align-items: start;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-panel {
  background: var(--rzl-surface);
  border: 1px solid var(--rzl-line);
  border-radius: var(--rzl-radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--rzl-shadow);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-hero-copy {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-hero-copy::after,
.bgpost-container.bgpost-rzl .bgpost-rzl-form-card::after {
  content: '';
  position: absolute;
  inset: auto auto -90px -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(120, 216, 255, 0.18),
    transparent 68%
  );
  pointer-events: none;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(245, 196, 81, 0.1);
  border: 1px solid rgba(245, 196, 81, 0.24);
  color: var(--rzl-accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-display {
  max-width: 11.8ch;
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  color: #fff;
  font-weight: 900;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-display-accent {
  color: var(--rzl-accent);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-lead {
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--rzl-muted);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--rzl-text);
  font-size: 0.92rem;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-stat {
  padding: 18px;
  border-radius: var(--rzl-radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-stat-value {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.72rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-stat-label {
  display: block;
  color: var(--rzl-muted);
  font-size: 0.9rem;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-form-wrap {
  position: sticky;
  top: 88px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-form-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: var(--rzl-surface-strong);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(120, 216, 255, 0.12);
  border: 1px solid rgba(120, 216, 255, 0.22);
  color: var(--rzl-cyan);
  font-size: 0.85rem;
  font-weight: 700;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-form-title {
  margin: 0 0 10px;
  font-size: 1.58rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-form-note {
  margin-bottom: 16px;
  color: var(--rzl-muted);
  font-size: 0.98rem;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-mini-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--rzl-text);
  font-size: 0.95rem;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-mini-list .bgpost-icon {
  margin-top: 2px;
  color: var(--rzl-accent);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-form {
  display: grid;
  gap: 14px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-field-group {
  display: grid;
  gap: 7px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-label,
.bgpost-container.bgpost-rzl .bgpost-rzl-legend {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-input::placeholder {
  color: rgba(168, 183, 207, 0.78);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-input:focus {
  border-color: rgba(120, 216, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-fieldset {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-choice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--rzl-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  cursor: pointer;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-choice input {
  accent-color: var(--rzl-accent);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--rzl-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--rzl-accent);
  flex: 0 0 auto;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-link,
.bgpost-container.bgpost-rzl .bgpost-rzl-link-button {
  color: var(--rzl-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-link:hover,
.bgpost-container.bgpost-rzl .bgpost-rzl-link-button:hover {
  color: var(--rzl-accent-strong);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-link-button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-submit {
  width: 100%;
  min-height: 56px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-submit:disabled {
  opacity: 0.58;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--rzl-muted);
  font-size: 0.86rem;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-trust-note .bgpost-icon {
  color: var(--rzl-cyan);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-section {
  padding: 86px 0 0;
  scroll-margin-top: 110px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-section-head h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-section-head p {
  max-width: 68ch;
  color: var(--rzl-muted);
  font-size: 1rem;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-grid,
.bgpost-container.bgpost-rzl .bgpost-rzl-grid-2,
.bgpost-container.bgpost-rzl .bgpost-rzl-grid-3,
.bgpost-container.bgpost-rzl .bgpost-rzl-step-grid,
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverables {
  display: grid;
  gap: 16px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.bgpost-container.bgpost-rzl .bgpost-rzl-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bgpost-container.bgpost-rzl .bgpost-rzl-grid-3,
.bgpost-container.bgpost-rzl .bgpost-rzl-step-grid,
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverables {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card,
.bgpost-container.bgpost-rzl .bgpost-rzl-info-card,
.bgpost-container.bgpost-rzl .bgpost-rzl-step,
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable,
.bgpost-container.bgpost-rzl .bgpost-rzl-legal-card,
.bgpost-container.bgpost-rzl .bgpost-rzl-privacy-card,
.bgpost-container.bgpost-rzl .bgpost-faq-item {
  background: var(--rzl-surface);
  border: 1px solid var(--rzl-line);
  border-radius: var(--rzl-radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card,
.bgpost-container.bgpost-rzl .bgpost-rzl-info-card,
.bgpost-container.bgpost-rzl .bgpost-rzl-step,
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable,
.bgpost-container.bgpost-rzl .bgpost-rzl-legal-card,
.bgpost-container.bgpost-rzl .bgpost-rzl-privacy-card {
  padding: 22px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card,
.bgpost-container.bgpost-rzl .bgpost-rzl-info-card,
.bgpost-container.bgpost-rzl .bgpost-rzl-step,
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable {
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card:hover,
.bgpost-container.bgpost-rzl .bgpost-rzl-info-card:hover,
.bgpost-container.bgpost-rzl .bgpost-rzl-step:hover,
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card-lg {
  grid-column: span 6;
}
.bgpost-container.bgpost-rzl .bgpost-rzl-card-sm {
  grid-column: span 3;
}
.bgpost-container.bgpost-rzl .bgpost-rzl-card-wide {
  grid-column: span 12;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card-icon,
.bgpost-container.bgpost-rzl .bgpost-rzl-step-icon,
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--rzl-accent);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card-icon .bgpost-icon,
.bgpost-container.bgpost-rzl .bgpost-rzl-step-icon .bgpost-icon,
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable-icon .bgpost-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card h3,
.bgpost-container.bgpost-rzl .bgpost-rzl-info-card h3,
.bgpost-container.bgpost-rzl .bgpost-rzl-step h3,
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable h3,
.bgpost-container.bgpost-rzl .bgpost-rzl-legal-card h3,
.bgpost-container.bgpost-rzl .bgpost-rzl-privacy-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.18;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card p,
.bgpost-container.bgpost-rzl .bgpost-rzl-info-card p,
.bgpost-container.bgpost-rzl .bgpost-rzl-step p,
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable p,
.bgpost-container.bgpost-rzl .bgpost-rzl-legal-card p,
.bgpost-container.bgpost-rzl .bgpost-rzl-privacy-card p {
  color: var(--rzl-muted);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card-emphasis {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(17, 32, 58, 0.92) 0%,
    rgba(10, 19, 34, 0.92) 100%
  );
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card-emphasis::after {
  content: '';
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(245, 196, 81, 0.16),
    transparent 65%
  );
  pointer-events: none;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-note-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-note .bgpost-icon {
  color: var(--rzl-cyan);
  margin-top: 2px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-info-card {
  background: rgba(255, 255, 255, 0.04);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-checklist {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--rzl-text);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-check .bgpost-icon {
  margin-top: 2px;
  color: var(--rzl-accent);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-step {
  position: relative;
  overflow: hidden;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--rzl-accent-soft);
  color: var(--rzl-accent);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable {
  background: rgba(255, 255, 255, 0.04);
}

.bgpost-container.bgpost-rzl .bgpost-faq {
  display: grid;
  gap: 12px;
}

.bgpost-container.bgpost-rzl .bgpost-faq-item {
  overflow: hidden;
}

.bgpost-container.bgpost-rzl .bgpost-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  color: #fff;
  text-align: right;
  background: transparent;
}

.bgpost-container.bgpost-rzl .bgpost-faq-question-text {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.4;
}

.bgpost-container.bgpost-rzl .bgpost-faq-icon {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
}

.bgpost-container.bgpost-rzl .bgpost-faq-icon::before,
.bgpost-container.bgpost-rzl .bgpost-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--rzl-accent);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.bgpost-container.bgpost-rzl .bgpost-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.bgpost-container.bgpost-rzl
  .bgpost-faq-question[aria-expanded='true']
  .bgpost-faq-icon::after {
  opacity: 0;
}

.bgpost-container.bgpost-rzl .bgpost-faq-answer {
  padding: 0 20px 18px;
  color: var(--rzl-muted);
}

.bgpost-container.bgpost-rzl .bgpost-faq-answer[hidden] {
  display: none;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-footer {
  padding: 64px 0 90px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-footer-copy {
  color: var(--rzl-muted);
  font-size: 0.92rem;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-modal.is-open {
  display: flex;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 14, 0.84);
  backdrop-filter: blur(8px);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: 84vh;
  overflow: auto;
  padding: 26px;
  background: rgba(10, 19, 34, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  box-shadow: var(--rzl-shadow);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-modal-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.42rem;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-modal-body {
  display: grid;
  gap: 14px;
  color: var(--rzl-muted);
  line-height: 1.8;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-modal-body strong {
  color: #fff;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .bgpost-container.bgpost-rzl .bgpost-rzl-hero-grid,
  .bgpost-container.bgpost-rzl .bgpost-rzl-grid-2,
  .bgpost-container.bgpost-rzl .bgpost-rzl-grid-3,
  .bgpost-container.bgpost-rzl .bgpost-rzl-step-grid,
  .bgpost-container.bgpost-rzl .bgpost-rzl-deliverables,
  .bgpost-container.bgpost-rzl .bgpost-rzl-privacy-grid,
  .bgpost-container.bgpost-rzl .bgpost-rzl-stats {
    grid-template-columns: 1fr;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-grid {
    grid-template-columns: 1fr;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-card-lg,
  .bgpost-container.bgpost-rzl .bgpost-rzl-card-sm,
  .bgpost-container.bgpost-rzl .bgpost-rzl-card-wide {
    grid-column: span 1;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-form-wrap {
    position: static;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-display {
    max-width: none;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-topbar {
    border-radius: 24px;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .bgpost-container.bgpost-rzl .bgpost-rzl-shell {
    padding-inline: 14px;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
    margin-bottom: 18px;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-topbar .bgpost-rzl-btn {
    width: 100%;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-hero-copy,
  .bgpost-container.bgpost-rzl .bgpost-rzl-form-card,
  .bgpost-container.bgpost-rzl .bgpost-rzl-card,
  .bgpost-container.bgpost-rzl .bgpost-rzl-info-card,
  .bgpost-container.bgpost-rzl .bgpost-rzl-step,
  .bgpost-container.bgpost-rzl .bgpost-rzl-deliverable,
  .bgpost-container.bgpost-rzl .bgpost-rzl-legal-card,
  .bgpost-container.bgpost-rzl .bgpost-rzl-privacy-card {
    padding: 18px;
    border-radius: 18px;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-kicker {
    font-size: 0.84rem;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-display {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
    line-height: 0.98;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-lead {
    font-size: 0.98rem;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-chip-row,
  .bgpost-container.bgpost-rzl .bgpost-rzl-hero-actions {
    flex-direction: column;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-chip,
  .bgpost-container.bgpost-rzl .bgpost-rzl-hero-actions .bgpost-rzl-btn {
    width: 100%;
    justify-content: center;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-choice-row {
    grid-template-columns: 1fr;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-section {
    padding-top: 68px;
  }

  .bgpost-container.bgpost-rzl .bgpost-rzl-footer {
    padding-bottom: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bgpost-container.bgpost-rzl *,
  .bgpost-container.bgpost-rzl *::before,
  .bgpost-container.bgpost-rzl *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .bgpost-container.bgpost-rzl [data-rzl-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* BGPOST_VARIANT:rzl — END */
/* /BOT */

/* BOT: Add Five Kitchens luxury variant classes for the new premium kitchen landing page — 2026-04-21 14:10 */
/* BGPOST_VARIANT:five — START */
.bgpost-container.bgpost-five {
  --five-bg: #0d0d0d;
  --five-surface: #1a1a1a;
  --five-border: rgba(255, 255, 255, 0.1);
  --five-text: #f5f5f5;
  --five-muted: #a3a3a3;
  --five-accent: #d4af37; /* Champagne Gold */
  --five-accent-hover: #b5952f;

  background-color: var(--five-bg);
  color: var(--five-text);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
}
.bgpost-container.bgpost-five * {
  box-sizing: border-box;
}

/* Typography */
.bgpost-five h1,
.bgpost-five h2,
.bgpost-five h3 {
  font-weight: 300;
  margin: 0 0 15px 0;
  line-height: 1.2;
}
.bgpost-five strong {
  font-weight: 600;
  color: var(--five-accent);
}
.bgpost-five p {
  margin-bottom: 15px;
}

/* Layout */
.bgpost-five-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Nav */
.bgpost-five-nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--five-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bgpost-five-logo {
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.bgpost-five-logo strong {
  font-weight: 700;
}
.bgpost-five-phone {
  font-size: 1.2rem;
  color: var(--five-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}

/* Hero */
.bgpost-five-hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #1a1a1a 0%, transparent 70%);
}
.bgpost-five-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--five-accent);
  color: var(--five-accent);
  border-radius: 30px;
  font-size: 1rem;
  margin-bottom: 30px;
  background: rgba(212, 175, 55, 0.05);
}
.bgpost-five-hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 20px;
  color: #fff;
}
.bgpost-five-hero-subtitle {
  font-size: 1.3rem;
  color: var(--five-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* Button */
.bgpost-five-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--five-accent);
  color: #000 !important;
  padding: 16px 40px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 200px;
}
.bgpost-five-btn:hover {
  background: var(--five-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Sections */
.bgpost-five-section {
  padding: 90px 0;
  border-top: 1px solid var(--five-border);
}
.bgpost-five-section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}

/* Grids */
.bgpost-five-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bgpost-five-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Image blocks */
.bgpost-five-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.bgpost-five-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  pointer-events: none;
}
.bgpost-five-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.bgpost-five-image-wrap:hover img {
  transform: scale(1.03);
}

/* Cards */
.bgpost-five-card {
  background: var(--five-surface);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--five-border);
  transition: all 0.3s ease;
}
.bgpost-five-card:hover {
  border-color: var(--five-accent);
  transform: translateY(-5px);
}
.bgpost-five-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--five-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.bgpost-five-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}
.bgpost-five-card p {
  color: var(--five-muted);
  font-size: 1rem;
  margin: 0;
}

/* Offer Box */
.bgpost-five-offer-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
  border: 1px solid var(--five-accent);
  padding: 60px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.bgpost-five-offer-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.bgpost-five-offer-title {
  font-size: 2.5rem;
  color: var(--five-accent);
  margin-bottom: 20px;
}
.bgpost-five-offer-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Form */
.bgpost-five-form-wrap {
  background: var(--five-surface);
  padding: 50px;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid var(--five-border);
}
.bgpost-five-form-title {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
}
.bgpost-five-form-subtitle {
  text-align: center;
  color: var(--five-muted);
  margin-bottom: 30px;
}
.bgpost-five-input {
  width: 100%;
  padding: 16px;
  background: var(--five-bg);
  border: 1px solid var(--five-border);
  color: #fff;
  margin-bottom: 20px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.bgpost-five-input:focus {
  outline: none;
  border-color: var(--five-accent);
}
.bgpost-five-form-wrap .bgpost-five-btn {
  width: 100%;
}

@media (max-width: 992px) {
  .bgpost-five-grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .bgpost-five-grid-3 {
    grid-template-columns: 1fr;
  }
  .bgpost-five-hero {
    padding: 60px 0;
  }
  .bgpost-five-hero-title {
    font-size: 2.2rem;
  }
  .bgpost-five-section {
    padding: 60px 0;
  }
  .bgpost-five-section-title {
    font-size: 2.2rem;
  }
  .bgpost-five-offer-box {
    padding: 40px 20px;
  }
  .bgpost-five-offer-title {
    font-size: 2rem;
  }
  .bgpost-five-form-wrap {
    padding: 30px 20px;
  }
}
/* BGPOST_VARIANT:five — END */
/* /BOT */

/* BOT: Fix double scrollbar issue, huge icons, and typography inconsistencies in RZL variant. — 2026-04-21 14:11 */
/* BOT: Fix double scrollbars, icon sizes, and typography for RZL variant — 2026-04-21 14:08 */
.bgpost-container.bgpost-rzl {
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-shell {
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
}

/* Force Assistant font everywhere in RZL */
.bgpost-container.bgpost-rzl,
.bgpost-container.bgpost-rzl * {
  font-family: 'Assistant', sans-serif !important;
}

/* Fix icon sizes - ensure they aren't 'huge' */
.bgpost-container.bgpost-rzl .bgpost-icon {
  width: 1.2rem !important;
  height: 1.2rem !important;
  display: inline-flex !important;
}

.bgpost-container.bgpost-rzl .bgpost-icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* Fix Hero display typography */
.bgpost-container.bgpost-rzl .bgpost-rzl-display {
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.1 !important;
}

/* Adjust Section Heads */
.bgpost-container.bgpost-rzl .bgpost-rzl-section-head h2 {
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

/* /BOT */

/* BOT: Refine RZL variant typography: switch to Heebo font and reduce headline size for a more modern, balanced look. — 2026-04-21 14:12 */
/* BOT: Refine RZL variant typography - smaller, more rounded headlines using Heebo — 2026-04-21 14:15 */
.bgpost-container.bgpost-rzl
  :where(
    .bgpost-rzl-display,
    .bgpost-rzl-section-head h2,
    .bgpost-rzl-form-title,
    .bgpost-rzl-brand-mark
  ) {
  font-family: 'Heebo', sans-serif !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-display {
  font-size: clamp(2rem, 5.5vw, 3.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-display-accent {
  display: block; /* Break the line for better visual balance at smaller sizes */
}

.bgpost-container.bgpost-rzl .bgpost-rzl-section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  font-weight: 800 !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-form-title {
  font-size: 1.45rem !important;
  font-weight: 800 !important;
}

@media (max-width: 640px) {
  .bgpost-container.bgpost-rzl .bgpost-rzl-display {
    font-size: clamp(1.8rem, 10vw, 2.8rem) !important;
  }
}
/* /BOT */
/* /BOT */

/* BOT: Refine RZL variant typography: switch to Assistant 700 and further reduce headline sizes to eliminate 'biblical' feel and improve balance. — 2026-04-21 14:14 */
/* BGPOST_VARIANT:rzl — Typography Refinement: Reduce sizes and enforce ultra-modern sans-serif — 2026-04-21 14:35 */
.bgpost-container.bgpost-rzl,
.bgpost-container.bgpost-rzl * {
  font-family:
    'Assistant',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-display {
  font-size: clamp(1.75rem, 4vw, 2.8rem) !important; /* Significantly smaller */
  font-weight: 700 !important; /* Slightly lighter than 900 for a cleaner look */
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
  color: #ffffff !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-display-accent {
  display: inline !important; /* Keep it inline unless it naturally breaks */
  color: var(--rzl-accent) !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-form-title {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-kicker {
  font-size: 0.85rem !important;
  padding: 6px 12px !important;
  margin-bottom: 14px !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-lead {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  opacity: 0.85;
}

/* Fix for possible layout shift on small screens */
@media (max-width: 640px) {
  .bgpost-container.bgpost-rzl .bgpost-rzl-display {
    font-size: 1.85rem !important;
    line-height: 1.15 !important;
  }
  .bgpost-container.bgpost-rzl .bgpost-rzl-section-head h2 {
    font-size: 1.5rem !important;
  }
}

/* /BOT */

/* BOT: Reduce headline size, expand to full width, and fix horizontal overflow in RZL variant. — 2026-04-21 14:16 */
/* BGPOST_VARIANT:rzl — Fix overflow and expand headline width — 2026-04-21 14:40 */
.bgpost-container.bgpost-rzl {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-shell {
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
  padding-inline: 20px !important;
  overflow: visible !important; /* Allow reveal animations if contained */
}

.bgpost-container.bgpost-rzl .bgpost-rzl-display {
  max-width: 100% !important; /* Allow to span full width of container */
  font-size: clamp(
    1.6rem,
    3.5vw,
    2.4rem
  ) !important; /* Slightly smaller to fit better */
  line-height: 1.15 !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-hero-grid {
  width: 100% !important;
  margin: 0 auto !important;
}

@media (max-width: 980px) {
  .bgpost-container.bgpost-rzl .bgpost-rzl-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

/* /BOT */

/* BOT: Fix double scrollbar and ensure full-width headline in RZL variant. — 2026-04-21 14:19 */
/* BGPOST_VARIANT:rzl — Final Scroll & Overflow Fix — 2026-04-21 14:45 */
.bgpost-container.bgpost-rzl {
  overflow: hidden !important; /* Force-kill any inner scrollbars (both X and Y) */
  height: auto !important;
  max-height: none !important;
  display: block !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-shell {
  overflow: visible !important;
  height: auto !important;
  display: block !important;
}

/* Ensure the headline isn't restricted by a narrow parent */
.bgpost-container.bgpost-rzl .bgpost-rzl-hero-copy {
  width: 100% !important;
  max-width: 100% !important;
}

/* Smooth out the reveal slightly more */
.bgpost-container.bgpost-rzl [data-rzl-reveal] {
  will-change: transform, opacity;
}

/* /BOT */

/* BOT: Modernize choice radio buttons into tiles and fix white-on-white FAQ answer text in RZL variant. — 2026-04-21 14:23 */
/* BGPOST_VARIANT:rzl — Form UI & FAQ Fixes — 2026-04-21 14:50 */
.bgpost-container.bgpost-rzl .bgpost-rzl-choice {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide original radio but keep it for accessibility */
.bgpost-container.bgpost-rzl .bgpost-rzl-choice input[type='radio'] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

/* Styled state when checked */
.bgpost-container.bgpost-rzl .bgpost-rzl-choice:has(input:checked) {
  background: var(--rzl-accent);
  color: #08111f;
  border-color: var(--rzl-accent);
  box-shadow: 0 8px 24px rgba(245, 196, 81, 0.3);
  transform: translateY(-2px);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-choice:hover:not(:has(input:checked)) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

/* FAQ White-on-White Fix */
.bgpost-container.bgpost-rzl .bgpost-faq-item {
  background: var(--rzl-surface-strong) !important;
  border-color: var(--rzl-line) !important;
}

.bgpost-container.bgpost-rzl .bgpost-faq-question {
  background: transparent !important;
}

.bgpost-container.bgpost-rzl .bgpost-faq-answer {
  background: transparent !important; /* Ensure no global white background leaks in */
  color: var(--rzl-muted) !important;
  padding: 0 24px 24px !important;
}

.bgpost-container.bgpost-rzl .bgpost-faq-question-text {
  font-weight: 700 !important;
}

/* /BOT */

/* BOT: Reduce large bottom gap after the footer in RZL variant. — 2026-04-21 14:27 */
/* BGPOST_VARIANT:rzl — Reduce bottom spacing on footer — 2026-04-21 14:55 */
.bgpost-container.bgpost-rzl .bgpost-rzl-footer {
  padding: 64px 0 32px !important;
}

/* /BOT */

/* BOT: Add ultra-premium "bgpro" variant for Blue Giraffe landing page, featuring dark mode, glassmorphism, glowing borders, and bento grids. — 2026-04-21 14:38 */
/* BGPOST_VARIANT:bgpro — START */
.bgpost-container.bgpost-bgpro {
  --bgpro-bg: #020617; /* Very dark slate */
  --bgpro-surface: rgba(15, 23, 42, 0.6);
  --bgpro-border: rgba(56, 189, 248, 0.15);
  --bgpro-text: #f8fafc;
  --bgpro-muted: #94a3b8;
  --bgpro-accent: #facc15; /* Giraffe Yellow */
  --bgpro-cyan: #38bdf8;

  background-color: var(--bgpro-bg);
  color: var(--bgpro-text);
  font-family: 'Assistant', sans-serif;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient Glows */
.bgpost-container.bgpost-bgpro::before,
.bgpost-container.bgpost-bgpro::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}
.bgpost-container.bgpost-bgpro::before {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(56, 189, 248, 0.15);
}
.bgpost-container.bgpost-bgpro::after {
  top: 40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(250, 204, 21, 0.08);
}

.bgpost-bgpro-inner {
  position: relative;
  z-index: 1;
}

/* Nav */
.bgpost-bgpro-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bgpro-border);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.bgpost-bgpro-logo-img {
  height: 40px;
  width: auto;
}

/* Typography */
.bgpost-bgpro h1,
.bgpost-bgpro h2,
.bgpost-bgpro h3 {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.bgpost-bgpro-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.bgpost-bgpro-title-accent {
  background: linear-gradient(135deg, var(--bgpro-accent) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bgpost-bgpro-subtitle {
  font-size: 1.25rem;
  color: var(--bgpro-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

/* Hero */
.bgpost-bgpro-hero {
  padding: 180px 20px 100px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Visual Engine */
.bgpost-bgpro-engine {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.1) 0%,
    transparent 70%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}
.bgpost-bgpro-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.3);
  animation: bgproRotate 20s linear infinite;
}
.bgpost-bgpro-ring-1 {
  width: 300px;
  height: 300px;
  border-style: dashed;
  animation-duration: 30s;
}
.bgpost-bgpro-ring-2 {
  width: 400px;
  height: 400px;
  border: 2px solid rgba(250, 204, 21, 0.15);
  animation-direction: reverse;
}
.bgpost-bgpro-core {
  width: 180px;
  height: 180px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid var(--bgpro-cyan);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.bgpost-bgpro-core-val {
  font-size: 3rem;
  font-weight: 900;
  color: var(--bgpro-text);
  line-height: 1;
}
.bgpost-bgpro-core-lbl {
  font-size: 0.9rem;
  color: var(--bgpro-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

@keyframes bgproRotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Buttons */
.bgpost-bgpro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--bgpro-accent);
  color: #020617 !important;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
  border: none;
  cursor: pointer;
  gap: 10px;
}
.bgpost-bgpro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(250, 204, 21, 0.4);
  background: #fbbf24;
}
.bgpost-bgpro-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
  box-shadow: none;
}
.bgpost-bgpro-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  box-shadow: none;
}
.bgpost-bgpro-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

/* Sections */
.bgpost-bgpro-section {
  padding: 120px 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.bgpost-bgpro-section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 20px;
}
.bgpost-bgpro-section-desc {
  text-align: center;
  color: var(--bgpro-muted);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Bento Grid */
.bgpost-bgpro-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bgpost-bgpro-card {
  background: var(--bgpro-surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--bgpro-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.bgpost-bgpro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
    rgba(250, 204, 21, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
.bgpost-bgpro-card:hover::before {
  opacity: 1;
}
.bgpost-bgpro-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
}
.bgpost-bgpro-card > * {
  position: relative;
  z-index: 1;
}
.bgpost-bgpro-icon {
  width: 60px;
  height: 60px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--bgpro-cyan);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

/* Dashboard Mockup */
.bgpost-bgpro-dash-wrapper {
  background: var(--bgpro-surface);
  border: 1px solid var(--bgpro-border);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(10px);
}
.bgpost-bgpro-dash {
  background: #0f172a;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  font-family: monospace;
}
.bgpost-bgpro-dash-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--bgpro-muted);
  font-size: 0.85rem;
}
.bgpost-bgpro-dash-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  align-items: center;
  transition: background 0.3s;
}
.bgpost-bgpro-dash-row:hover {
  background: rgba(56, 189, 248, 0.05);
}
.bgpost-bgpro-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}
.bgpost-bgpro-tag.hot {
  background: rgba(250, 204, 21, 0.15);
  color: var(--bgpro-accent);
  border: 1px solid rgba(250, 204, 21, 0.3);
}
.bgpost-bgpro-tag.verified {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Form */
.bgpost-bgpro-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bgpro-surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--bgpro-border);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.bgpost-bgpro-form::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bgpro-cyan), var(--bgpro-accent));
}
.bgpost-bgpro-input {
  width: 100%;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: all 0.3s;
}
.bgpost-bgpro-input:focus {
  outline: none;
  border-color: var(--bgpro-accent);
  background: rgba(0, 0, 0, 0.4);
}
.bgpost-bgpro-form .bgpost-bgpro-btn {
  width: 100%;
  padding: 20px;
  font-size: 1.2rem;
}

/* Animations */
.bgpost-bgpro-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bgpost-bgpro-reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.bgpost-bgpro-delay-1 {
  transition-delay: 0.1s;
}
.bgpost-bgpro-delay-2 {
  transition-delay: 0.2s;
}

/* FAQ */
.bgpost-bgpro-faq {
  max-width: 800px;
  margin: 0 auto;
}
.bgpost-bgpro-faq-item {
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.bgpost-bgpro-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.bgpost-bgpro-faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #fff;
  text-align: right;
  font-size: 1.1rem;
  font-weight: 700;
}
.bgpost-bgpro-faq-answer {
  padding: 0 24px 24px;
  color: var(--bgpro-muted);
  display: none;
}
.bgpost-bgpro-faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  color: var(--bgpro-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.bgpost-bgpro-faq-question[aria-expanded='true'] .bgpost-bgpro-faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 992px) {
  .bgpost-bgpro-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .bgpost-bgpro-hero-actions {
    justify-content: center;
  }
  .bgpost-bgpro-bento {
    grid-template-columns: 1fr;
  }
  .bgpost-bgpro-dash-header {
    display: none;
  }
  .bgpost-bgpro-dash-row {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: right;
    padding: 20px;
  }
  .bgpost-bgpro-form {
    padding: 30px 20px;
  }
  .bgpost-bgpro-title {
    font-size: 2.8rem;
  }
}
/* BGPOST_VARIANT:bgpro — END */
/* /BOT */

/* BOT: Add 'elite' variant with Heebo font, corrected RTL header layout, fixed icon sizes, and premium dark mode styling — 2026-04-21 15:13 */
/* BGPOST_VARIANT:elite — START */
.bgpost-container.bgpost-elite {
  --elite-bg: #030712;
  --elite-surface: rgba(17, 24, 39, 0.7);
  --elite-border: rgba(250, 204, 21, 0.15);
  --elite-text: #f9fafb;
  --elite-muted: #9ca3af;
  --elite-accent: #facc15;
  --elite-accent-hover: #eab308;
  --elite-cyan: #38bdf8;

  background-color: var(--elite-bg);
  color: var(--elite-text);
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
.bgpost-container.bgpost-elite * {
  font-family: 'Heebo', sans-serif;
}
/* Glowing background blobs */
.bgpost-container.bgpost-elite::before,
.bgpost-container.bgpost-elite::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}
.bgpost-container.bgpost-elite::before {
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: rgba(56, 189, 248, 0.12);
}
.bgpost-container.bgpost-elite::after {
  top: 40%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: rgba(250, 204, 21, 0.08);
}

.bgpost-elite-inner {
  position: relative;
  z-index: 1;
}

/* Nav */
.bgpost-elite-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background: rgba(3, 7, 18, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}
.bgpost-elite-logo-img {
  height: 40px;
  width: auto;
}

/* Typography */
.bgpost-elite h1,
.bgpost-elite h2,
.bgpost-elite h3 {
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.bgpost-elite-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  background: linear-gradient(135deg, #ffffff 0%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bgpost-elite-title-accent {
  background: linear-gradient(135deg, var(--elite-accent) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bgpost-elite-subtitle {
  font-size: 1.25rem;
  color: var(--elite-muted);
  max-width: 650px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Buttons */
.bgpost-elite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--elite-accent);
  color: #030712 !important;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.25);
  border: none;
  cursor: pointer;
  gap: 12px;
}
.bgpost-elite-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(250, 204, 21, 0.4);
  background: var(--elite-accent-hover);
}
.bgpost-elite-btn .bgpost-icon {
  font-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bgpost-elite-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
  box-shadow: none;
}
.bgpost-elite-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.bgpost-elite-hero {
  padding: 180px 20px 100px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.bgpost-elite-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visuals */
.bgpost-elite-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bgpost-elite-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.2);
  animation: eliteRotate 25s linear infinite;
}
.bgpost-elite-ring-1 {
  width: 80%;
  height: 80%;
  border-style: dashed;
  animation-duration: 35s;
}
.bgpost-elite-ring-2 {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(250, 204, 21, 0.1);
  animation-direction: reverse;
}
.bgpost-elite-core {
  width: 50%;
  height: 50%;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 50px rgba(56, 189, 248, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.bgpost-elite-core-val {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.bgpost-elite-core-lbl {
  font-size: 0.9rem;
  color: var(--elite-cyan);
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 8px;
}

@keyframes eliteRotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Sections */
.bgpost-elite-section {
  padding: 100px 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.bgpost-elite-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 20px;
}
.bgpost-elite-section-desc {
  text-align: center;
  color: var(--elite-muted);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Bento Grid */
.bgpost-elite-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bgpost-elite-card {
  background: var(--elite-surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.bgpost-elite-card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 204, 21, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.bgpost-elite-icon {
  width: 64px;
  height: 64px;
  background: rgba(250, 204, 21, 0.1);
  color: var(--elite-accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.bgpost-elite-icon .bgpost-icon {
  width: 32px;
  height: 32px;
}

/* Dashboard Mockup */
.bgpost-elite-dash-wrapper {
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(16px);
}
.bgpost-elite-dash {
  background: #030712;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  font-family: monospace;
}
.bgpost-elite-dash-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--elite-muted);
  font-size: 0.85rem;
}
.bgpost-elite-dash-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  align-items: center;
  transition: background 0.3s;
}
.bgpost-elite-dash-row:hover {
  background: rgba(56, 189, 248, 0.05);
}
.bgpost-elite-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}
.bgpost-elite-tag.hot {
  background: rgba(250, 204, 21, 0.15);
  color: var(--elite-accent);
  border: 1px solid rgba(250, 204, 21, 0.3);
}
.bgpost-elite-tag.verified {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

/* Form */
.bgpost-elite-form {
  max-width: 500px;
  margin: 0 auto;
  background: var(--elite-surface);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 50px 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
.bgpost-elite-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--elite-cyan), var(--elite-accent));
}
.bgpost-elite-input {
  width: 100%;
  padding: 18px 24px;
  background: rgba(3, 7, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.05rem;
  transition: all 0.3s;
  font-family: inherit;
  box-sizing: border-box;
}
.bgpost-elite-input:focus {
  outline: none;
  border-color: var(--elite-accent);
  background: rgba(3, 7, 18, 0.8);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
}
.bgpost-elite-form .bgpost-elite-btn {
  width: 100%;
  padding: 20px;
  font-size: 1.2rem;
}

/* Animations */
.bgpost-elite-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bgpost-elite-reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.bgpost-elite-delay-1 {
  transition-delay: 0.15s;
}
.bgpost-elite-delay-2 {
  transition-delay: 0.3s;
}

/* FAQ Accordion */
.bgpost-elite-faq {
  max-width: 800px;
  margin: 0 auto;
}
.bgpost-elite-faq-item {
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.bgpost-elite-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}
.bgpost-elite-faq-question {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #fff;
  text-align: right;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.bgpost-elite-faq-answer {
  padding: 0 30px 24px;
  color: var(--elite-muted);
  display: none;
  line-height: 1.6;
}
.bgpost-elite-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.1);
  color: var(--elite-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 1.2rem;
}
.bgpost-elite-faq-question[aria-expanded='true'] .bgpost-elite-faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 992px) {
  .bgpost-elite-nav {
    width: calc(100% - 30px);
  }
  .bgpost-elite-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .bgpost-elite-hero-actions {
    justify-content: center;
  }
  .bgpost-elite-bento {
    grid-template-columns: 1fr;
  }
  .bgpost-elite-dash-header {
    display: none;
  }
  .bgpost-elite-dash-row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: right;
    padding: 20px;
  }
  .bgpost-elite-form {
    padding: 40px 24px;
    border-radius: 24px;
  }
  .bgpost-elite-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
}
/* BGPOST_VARIANT:elite — END */
/* /BOT */

/* BOT: Fix nav RTL positioning, add futuristic app animations like scanning cards, floating elements, spinning core border, and progress bars. — 2026-04-21 15:24 */
/* BGPOST_VARIANT:elite — Fix Nav RTL positioning, Add App-like Animations */

.bgpost-elite-nav {
  left: 20px !important;
  right: 20px !important;
  transform: none !important;
  margin: 0 auto !important;
  width: auto !important;
}

/* Glowing Spinning Border for 98% Core */
.bgpost-elite-core::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    transparent,
    transparent 30%,
    var(--elite-cyan),
    var(--elite-accent)
  );
  z-index: -1;
  animation: eliteSpin 3s linear infinite;
}

@keyframes eliteSpin {
  100% {
    transform: rotate(360deg);
  }
}

/* Pulsing rings inside core */
.bgpost-elite-core-pulse {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.4);
  animation: eliteInnerPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes eliteInnerPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Floating elements */
.bgpost-elite-floating {
  animation: eliteFloat 6s ease-in-out infinite;
}

@keyframes eliteFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* App-like Status Badge */
.bgpost-elite-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  color: #34d399;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.bgpost-elite-status-dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 10px #34d399;
  animation: elitePulseFast 1.5s infinite;
}

@keyframes elitePulseFast {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Scanning effect on cards */
.bgpost-elite-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(56, 189, 248, 0.05),
    transparent
  );
  transform: rotate(45deg);
  animation: eliteScan 6s infinite linear;
  pointer-events: none;
  z-index: 10;
}

@keyframes eliteScan {
  0% {
    top: -100%;
    left: -100%;
  }
  100% {
    top: 100%;
    left: 100%;
  }
}

/* Progress bar animation */
@keyframes eliteProgress {
  0% {
    width: 0;
  }
}
/* /BOT */

/* BOT: Fix floating CTA peeking at the top of the page by increasing its hidden offset to 200px. — 2026-04-21 15:44 */
/* BGPOST_VARIANT:alex — Fix floating CTA peeking when hidden at top of page */
.bgpost-alex-floating-cta {
  transform: translateY(
    200px
  ) !important; /* Move it much further down to ensure it's completely hidden */
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s !important;
}

.bgpost-alex-floating-cta.is-visible {
  transform: translateY(0) !important;
}

@media (max-width: 992px) {
  .bgpost-alex-floating-cta {
    transform: translateY(150px) !important; /* Mobile safe distance */
  }
  .bgpost-alex-floating-cta.is-visible {
    transform: translateY(0) !important;
  }
}

/* /BOT */

/* BOT: Component extensions for Leasing LP — 2026-04-21 16:10 */
/* BGPOST_VARIANT:leasing — Component extensions for Leasing LP */
.bgpost-leasing-list {
  display: grid;
  gap: 20px;
}
.bgpost-leasing-list-item {
  background: white;
  padding: 24px;
  border-radius: var(--bgpost-radius);
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.bgpost-leasing-list-item.is-negative .bgpost-icon {
  color: #ef4444;
  background: #fef2f2;
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bgpost-leasing-list-item.is-positive .bgpost-icon {
  color: #22c55e;
  background: #f0fdf4;
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bgpost-leasing-list-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--bgpost-color-primary);
}
.bgpost-leasing-list-text {
  color: var(--bgpost-color-text-muted);
  line-height: 1.5;
}
.bgpost-leasing-cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.bgpost-leasing-car-card {
  background: var(--bgpost-color-bg-light);
  border-radius: var(--bgpost-radius);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s;
}
.bgpost-leasing-car-card:hover {
  transform: translateY(-5px);
  border-color: var(--bgpost-color-accent);
}
.bgpost-leasing-car-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bgpost-color-primary);
  box-shadow: var(--bgpost-shadow);
  font-size: 1.5rem;
}
.bgpost-leasing-expert-box {
  background: white;
  padding: 30px;
  border-radius: var(--bgpost-radius);
  border-top: 4px solid var(--bgpost-color-gold);
  box-shadow: var(--bgpost-shadow);
}
.bgpost-leasing-expert-box h3 {
  color: var(--bgpost-color-primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.bgpost-leasing-expert-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bgpost-leasing-expert-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--bgpost-color-text-muted);
}
.bgpost-leasing-expert-box li .bgpost-icon {
  color: var(--bgpost-color-gold);
}
.bgpost-leasing-footer {
  background: var(--bgpost-color-primary);
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.bgpost-leasing-footer a {
  color: #94a3b8;
  margin: 0 10px;
  font-size: 0.9rem;
  text-decoration: underline;
}
.bgpost-leasing-footer a:hover {
  color: white;
}
.bgpost-leasing-disclaimer {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.bgpost-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  text-align: right;
  font-size: 0.85rem;
  color: var(--bgpost-color-text-muted);
}
.bgpost-checkbox-wrap input {
  margin-top: 4px;
}
/* /BOT */

/* BOT: Add completely new 'modern-lease' brand variant for car leasing LP redesign with dark mode and glowing accents. — 2026-04-21 16:15 */
/* BGPOST_VARIANT:modern-lease — START */
.bgpost-container.bgpost-modern-lease {
  --ml-bg: #0f172a;
  --ml-surface: #1e293b;
  --ml-surface-light: rgba(255, 255, 255, 0.05);
  --ml-border: rgba(255, 255, 255, 0.1);
  --ml-text: #f8fafc;
  --ml-muted: #94a3b8;
  --ml-accent-blue: #3b82f6;
  --ml-accent-gold: #fbbf24;
  --ml-gradient: linear-gradient(
    135deg,
    var(--ml-accent-blue) 0%,
    var(--ml-accent-gold) 100%
  );
  --ml-radius: 20px;
  --ml-font: 'Assistant', sans-serif;

  background-color: var(--ml-bg);
  color: var(--ml-text);
  font-family: var(--ml-font);
  min-height: 100vh;
  direction: rtl;
}

/* Nav */
.bgpost-ml-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--ml-border);
  border-radius: 100px;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bgpost-ml-logo {
  height: 40px;
  width: auto;
}

.bgpost-ml-btn {
  background: var(--ml-accent-gold);
  color: #0f172a !important;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.bgpost-ml-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
  background: #f59e0b;
}

/* Hero Section */
.bgpost-ml-hero {
  position: relative;
  padding: 160px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.bgpost-ml-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
.bgpost-ml-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--ml-bg));
  z-index: 1;
}

.bgpost-ml-hero-content {
  position: relative;
  z-index: 2;
}

.bgpost-ml-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--ml-accent-blue);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.bgpost-ml-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.bgpost-ml-title span {
  color: var(--ml-accent-gold);
}

.bgpost-ml-subtitle {
  font-size: 1.2rem;
  color: var(--ml-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

/* Form Card */
.bgpost-ml-form-card {
  position: relative;
  z-index: 2;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--ml-border);
  border-radius: var(--ml-radius);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.bgpost-ml-input {
  width: 100%;
  padding: 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--ml-border);
  border-radius: 12px;
  color: #fff;
  margin-bottom: 20px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}
.bgpost-ml-input:focus {
  outline: none;
  border-color: var(--ml-accent-blue);
  background: rgba(15, 23, 42, 0.9);
}
.bgpost-ml-form-card .bgpost-ml-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.2rem;
}
.bgpost-ml-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ml-muted);
  margin-bottom: 20px;
}

/* Section */
.bgpost-ml-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bgpost-ml-sec-head {
  text-align: center;
  margin-bottom: 60px;
}
.bgpost-ml-sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

/* Bento Grid */
.bgpost-ml-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bgpost-ml-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bgpost-ml-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bgpost-ml-card {
  background: var(--ml-surface);
  border: 1px solid var(--ml-border);
  border-radius: var(--ml-radius);
  padding: 30px;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.bgpost-ml-card:hover {
  transform: translateY(-5px);
  border-color: var(--ml-accent-blue);
}
.bgpost-ml-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--ml-accent-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.bgpost-ml-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}
.bgpost-ml-card p {
  color: var(--ml-muted);
  line-height: 1.6;
}

/* Comparison List */
.bgpost-ml-compare-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bgpost-ml-compare-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--ml-surface);
  border: 1px solid var(--ml-border);
  border-radius: 16px;
  align-items: center;
}
.bgpost-ml-compare-item.is-negative {
  border-right: 4px solid #ef4444;
}
.bgpost-ml-compare-item.is-positive {
  border-right: 4px solid #22c55e;
  background: rgba(34, 197, 94, 0.05);
}
.bgpost-ml-compare-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.is-negative .bgpost-ml-compare-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.is-positive .bgpost-ml-compare-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.bgpost-ml-compare-content h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.bgpost-ml-compare-content p {
  color: var(--ml-muted);
  margin: 0;
}

/* Visual elements */
.bgpost-ml-img-block {
  width: 100%;
  border-radius: var(--ml-radius);
  overflow: hidden;
  border: 1px solid var(--ml-border);
}
.bgpost-ml-img-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.bgpost-ml-footer {
  background: #0b0f19;
  padding: 80px 20px 40px;
  text-align: center;
  border-top: 1px solid var(--ml-border);
}

@media (max-width: 992px) {
  .bgpost-ml-hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
    text-align: center;
  }
  .bgpost-ml-grid-4,
  .bgpost-ml-grid-3,
  .bgpost-ml-grid-2 {
    grid-template-columns: 1fr;
  }
  .bgpost-ml-title {
    font-size: 2.5rem;
  }
  .bgpost-ml-badge {
    margin: 0 auto 24px;
  }
  .bgpost-ml-subtitle {
    margin: 0 auto 40px;
  }
}
/* BGPOST_VARIANT:modern-lease — END */
/* /BOT */

/* BOT: Add "bright" variant for app-like leasing LP redesign with white/orange theme. — 2026-04-21 16:20 */
/* BGPOST_VARIANT:bright — START */
.bgpost-container.bgpost-bright {
  --br-bg: #ffffff;
  --br-surface: #f8fafc;
  --br-border: #e2e8f0;
  --br-text: #0f172a;
  --br-muted: #64748b;
  --br-accent: #f97316; /* Vibrant Orange */
  --br-accent-hover: #ea580c;
  --br-accent-light: rgba(249, 115, 22, 0.1);
  --br-radius: 24px;
  --br-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  --br-shadow-hover: 0 30px 60px rgba(249, 115, 22, 0.15);
  --br-font: 'Assistant', sans-serif;

  background-color: var(--br-bg);
  color: var(--br-text);
  font-family: var(--br-font);
  min-height: 100vh;
  direction: rtl;
}

.bgpost-bright-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--br-border);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bgpost-bright-logo {
  height: 45px;
  width: auto;
}

.bgpost-bright-btn {
  background: var(--br-accent);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}
.bgpost-bright-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
  background: var(--br-accent-hover);
}
.bgpost-bright-btn-full {
  width: 100%;
  font-size: 1.2rem;
  padding: 18px;
}

.bgpost-bright-hero {
  padding: 180px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.bgpost-bright-hero-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.bgpost-bright-badge {
  display: inline-block;
  padding: 10px 24px;
  background: var(--br-accent-light);
  color: var(--br-accent);
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 24px;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.bgpost-bright-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--br-text);
  letter-spacing: -0.02em;
}
.bgpost-bright-title span {
  color: var(--br-accent);
}

.bgpost-bright-subtitle {
  font-size: 1.25rem;
  color: var(--br-muted);
  line-height: 1.6;
}

.bgpost-bright-hero-visual {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bgpost-bright-orange-circle {
  position: absolute;
  width: 120%;
  padding-bottom: 50%;
  background: var(--br-accent);
  border-radius: 50% 50% 0 0;
  bottom: 0;
  z-index: 0;
  clip-path: ellipse(70% 100% at 50% 100%);
  opacity: 0.1;
}

.bgpost-bright-hero-cars {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  transform: scale(1.1);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
}

.bgpost-bright-form-card {
  background: #fff;
  border: 1px solid var(--br-border);
  border-radius: var(--br-radius);
  padding: 40px;
  box-shadow: var(--br-shadow);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.bgpost-bright-form-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.bgpost-bright-input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.bgpost-bright-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--br-surface);
  border: 2px solid transparent;
  border-radius: 16px;
  color: var(--br-text);
  margin-bottom: 20px;
  font-family: inherit;
  font-size: 1.05rem;
  transition: all 0.3s;
}
.bgpost-bright-input:focus {
  outline: none;
  border-color: var(--br-accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--br-accent-light);
}

.bgpost-bright-consent {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--br-muted);
  margin-bottom: 24px;
  cursor: pointer;
}
.bgpost-bright-consent input {
  width: 20px;
  height: 20px;
  accent-color: var(--br-accent);
}

/* Sections */
.bgpost-bright-section {
  padding: 100px 20px;
  position: relative;
}
.bgpost-bright-bg-soft {
  background: var(--br-surface);
}

.bgpost-bright-container-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bgpost-bright-sec-head {
  text-align: center;
  margin-bottom: 60px;
}
.bgpost-bright-sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--br-text);
  margin-bottom: 20px;
}

/* Grids */
.bgpost-bright-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bgpost-bright-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.bgpost-bright-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

/* Cards */
.bgpost-bright-card {
  background: #fff;
  border: 1px solid var(--br-border);
  border-radius: var(--br-radius);
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.bgpost-bright-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--br-shadow-hover);
  border-color: var(--br-accent);
}
.bgpost-bright-card-icon {
  width: 70px;
  height: 70px;
  background: var(--br-accent-light);
  color: var(--br-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  transition: transform 0.4s;
}
.bgpost-bright-card:hover .bgpost-bright-card-icon {
  transform: scale(1.1) rotate(5deg);
}
.bgpost-bright-card h3 {
  font-size: 1.4rem;
  color: var(--br-text);
  margin-bottom: 15px;
  font-weight: 800;
}
.bgpost-bright-card p {
  color: var(--br-muted);
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0;
}

/* Compare List */
.bgpost-bright-compare-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bgpost-bright-compare-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--br-border);
  border-radius: 20px;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s;
}
.bgpost-bright-compare-item:hover {
  transform: translateX(-5px);
}
.bgpost-bright-compare-item.is-negative {
  border-right: 6px solid #ef4444;
}
.bgpost-bright-compare-item.is-positive {
  border-right: 6px solid #22c55e;
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.bgpost-bright-compare-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.is-negative .bgpost-bright-compare-icon {
  background: #fee2e2;
  color: #ef4444;
}
.is-positive .bgpost-bright-compare-icon {
  background: #dcfce3;
  color: #22c55e;
}
.bgpost-bright-compare-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.bgpost-bright-compare-content p {
  color: var(--br-muted);
  font-size: 1rem;
  margin: 0;
}

/* Visual elements */
.bgpost-bright-img-block {
  width: 100%;
  border-radius: var(--br-radius);
  overflow: hidden;
  box-shadow: var(--br-shadow);
}
.bgpost-bright-img-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* Highlight Box */
.bgpost-bright-highlight-box {
  background: linear-gradient(135deg, var(--br-accent) 0%, #fb923c 100%);
  border-radius: var(--br-radius);
  padding: 50px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}
.bgpost-bright-highlight-box h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 900;
}
.bgpost-bright-highlight-box p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
.bgpost-bright-highlight-box .bgpost-bright-btn {
  background: #fff;
  color: var(--br-accent) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.bgpost-bright-highlight-box .bgpost-bright-btn:hover {
  background: var(--br-surface);
  transform: translateY(-3px);
}

/* Animations */
.bgpost-bright-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bgpost-bright-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.bgpost-bright-footer {
  background: var(--br-surface);
  padding: 80px 20px 40px;
  text-align: center;
  border-top: 1px solid var(--br-border);
}

@media (max-width: 992px) {
  .bgpost-bright-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .bgpost-bright-grid-3,
  .bgpost-bright-grid-2 {
    grid-template-columns: 1fr;
  }
  .bgpost-bright-hero {
    padding-top: 140px;
  }
  .bgpost-bright-title {
    font-size: 2.5rem;
  }
  .bgpost-bright-hero-visual {
    display: none;
  } /* Hide the big visual block on mobile to keep form high */
  .bgpost-bright-input-row {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 600px) {
  .bgpost-bright-grid-4 {
    grid-template-columns: 1fr;
  }
}
/* BGPOST_VARIANT:bright — END */
/* /BOT */

/* BOT: Refine 'bright' variant: smaller icons, premium app-like UI elements, and smoother staggered animations. — 2026-04-21 23:19 */
/* BGPOST_VARIANT:bright — REFINEMENT: Smaller icons, premium app-ui, and staggered animations — 2026-04-21 16:30 */
.bgpost-container.bgpost-bright {
  --br-radius-sm: 16px;
  --br-radius-md: 24px;
  --br-radius-lg: 32px;
}

/* Refine Icon Sizes */
.bgpost-bright-card-icon {
  width: 54px !important;
  height: 54px !important;
  font-size: 1.5rem !important;
  border-radius: 14px !important;
  margin: 0 auto 20px !important;
}

.bgpost-bright-compare-icon {
  width: 40px !important;
  height: 40px !important;
  font-size: 1.2rem !important;
}

/* Polish Cards & Forms */
.bgpost-bright-card {
  padding: 30px !important;
  border-radius: var(--br-radius-md) !important;
  border: 1px solid #f1f5f9 !important;
  background: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%) !important;
}

.bgpost-bright-form-card {
  border-radius: var(--br-radius-lg) !important;
  padding: 30px !important;
  max-width: 650px !important;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.08) !important;
}

.bgpost-bright-input {
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-size: 1rem !important;
}

/* Animated Title Staggering */
.bgpost-bright-title span {
  display: inline-block;
  animation: br-float 3s ease-in-out infinite;
}

@keyframes br-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Staggered Reveal Transitions */
.bgpost-bright-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bgpost-bright-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating App Elements */
.bgpost-bright-floating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: white;
  border: 1px solid var(--br-border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--br-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-bottom: 16px;
}

/* /BOT */

/* BOT: Refine bright variant: shrink shield icon, fix hero layout to split 50/50, and add expert list styles. — 2026-04-21 23:21 */
/* BGPOST_VARIANT:bright — REFINEMENT: Smaller icons, improved hero split, and polished typography — 2026-04-21 16:45 */
.bgpost-bright-floating-pill {
  padding: 6px 14px;
  font-size: 0.9rem;
  gap: 6px;
  border-radius: 12px;
}

.bgpost-bright-floating-pill .bgpost-icon {
  width: 16px !important;
  height: 16px !important;
  font-size: 14px !important;
}

.bgpost-bright-hero {
  padding: 160px 20px 60px !important;
  text-align: right !important;
  align-items: flex-start !important;
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 40px !important;
}

.bgpost-bright-hero-content {
  margin: 0 !important;
  text-align: right !important;
}

.bgpost-bright-hero-visual {
  margin: 0 !important;
  width: 100% !important;
  display: block !important;
}

.bgpost-bright-hero-cars {
  transform: scale(1.1) translateX(-30px) !important;
  transition: transform 1.2s ease-out;
}

.bgpost-bright-form-card {
  grid-column: span 2;
  margin-top: 40px !important;
  max-width: 900px !important;
}

@media (max-width: 992px) {
  .bgpost-bright-hero {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    align-items: center !important;
    padding-top: 120px !important;
  }
  .bgpost-bright-hero-content {
    text-align: center !important;
  }
  .bgpost-bright-hero-cars {
    transform: scale(1) translateX(0) !important;
  }
  .bgpost-bright-hero-visual {
    display: block !important;
  }
  .bgpost-bright-form-card {
    grid-column: span 1;
  }
}

/* Expert Cards Refinement */
.bgpost-bright-expert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bgpost-bright-expert-card {
  background: #fff;
  border: 1px solid var(--br-border);
  border-radius: var(--br-radius);
  padding: 30px;
  text-align: right;
}

.bgpost-bright-expert-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.bgpost-bright-expert-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--br-text);
  font-weight: 500;
}

.bgpost-bright-expert-list li .bgpost-icon {
  color: #22c55e;
}

@media (max-width: 768px) {
  .bgpost-bright-expert-grid {
    grid-template-columns: 1fr;
  }
}

/* /BOT */

/* BOT: Refine Hero: remove orange circle, improve car image integration, add glassmorphism to form, and polish typography. — 2026-04-21 23:23 */
/* BGPOST_VARIANT:bright — REFINEMENT: Remove circle, refine Hero UI and glass elements — 2026-04-21 16:55 */
.bgpost-bright-orange-circle {
  display: none !important;
}

.bgpost-bright-hero {
  padding: 140px 20px 60px !important;
  background: radial-gradient(
    circle at 100% 0%,
    #fff7ed 0%,
    transparent 40%
  ) !important;
}

.bgpost-bright-hero-visual {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.bgpost-bright-hero-cars {
  transform: none !important;
  max-width: 110% !important;
  width: auto !important;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.12)) !important;
  margin-right: -40px !important;
}

/* Glassy UI improvements */
.bgpost-bright-form-card {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06) !important;
}

.bgpost-bright-card {
  border: 1px solid rgba(241, 245, 249, 0.8) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

/* Refined typography */
.bgpost-bright-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
  letter-spacing: -0.03em !important;
}

.bgpost-bright-subtitle {
  font-size: 1.15rem !important;
  max-width: 550px !important;
}

@media (max-width: 992px) {
  .bgpost-bright-hero-cars {
    margin-right: 0 !important;
    max-width: 100% !important;
    margin-top: 40px !important;
  }
}

/* /BOT */

/* BOT: Create a completely new 'modern' variant for car leasing LP with white/orange theme, full-width hero, and refined UI components. — 2026-04-21 23:26 */
/* BGPOST_VARIANT:modern — START */
.bgpost-container.bgpost-modern {
  --mod-white: #ffffff;
  --mod-bg: #fdfdfd;
  --mod-surface: #f8fafc;
  --mod-orange: #ff6b00;
  --mod-orange-glow: rgba(255, 107, 0, 0.15);
  --mod-text: #0f172a;
  --mod-muted: #64748b;
  --mod-border: #e2e8f0;
  --mod-radius: 24px;
  --mod-radius-sm: 16px;
  --mod-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);

  background-color: var(--mod-bg);
  color: var(--mod-text);
  font-family: 'Assistant', sans-serif;
  direction: rtl;
  overflow-x: hidden;
}

.bgpost-modern-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.bgpost-modern-nav {
  position: sticky;
  top: 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--mod-border);
  border-radius: 100px;
  padding: 12px 24px;
  box-shadow: var(--mod-shadow);
  margin-top: 20px;
}

.bgpost-modern-logo {
  height: 40px;
  width: auto;
}

.bgpost-modern-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mod-orange);
  color: #ffffff !important;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.2);
}

.bgpost-modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.3);
  background: #e66000;
}

/* Hero Section - Full Width Background */
.bgpost-modern-hero {
  position: relative;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background:
    radial-gradient(
      circle at 80% 20%,
      var(--mod-orange-glow) 0%,
      transparent 40%
    ),
    var(--mod-white);
  padding: 80px 0 120px;
  overflow: hidden;
}

.bgpost-modern-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bgpost-modern-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--mod-orange-glow);
  color: var(--mod-orange);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.bgpost-modern-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.bgpost-modern-title span {
  color: var(--mod-orange);
}

.bgpost-modern-subtitle {
  font-size: 1.2rem;
  color: var(--mod-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.bgpost-modern-hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bgpost-modern-hero-image-wrap img {
  max-width: 120%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.1));
  z-index: 2;
}

.bgpost-modern-hero-decor {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--mod-orange);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 1;
  filter: blur(60px);
}

/* Floating Form */
.bgpost-modern-form-overlay {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.bgpost-modern-form-card {
  background: var(--mod-white);
  border: 1px solid var(--mod-border);
  border-radius: var(--mod-radius);
  padding: 40px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.bgpost-modern-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.bgpost-modern-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--mod-surface);
  border: 1px solid var(--mod-border);
  border-radius: var(--mod-radius-sm);
  color: var(--mod-text);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.bgpost-modern-input:focus {
  outline: none;
  border-color: var(--mod-orange);
  background: #fff;
  box-shadow: 0 0 0 4px var(--mod-orange-glow);
}

/* Bento Grid */
.bgpost-modern-section {
  padding: 100px 0;
}

.bgpost-modern-sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.bgpost-modern-sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.bgpost-modern-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bgpost-modern-card {
  background: var(--mod-white);
  border: 1px solid var(--mod-border);
  border-radius: var(--mod-radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.bgpost-modern-card:hover {
  transform: translateY(-8px);
  border-color: var(--mod-orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.bgpost-modern-card-icon {
  width: 48px;
  height: 48px;
  background: var(--mod-orange-glow);
  color: var(--mod-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.bgpost-modern-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bgpost-modern-card p {
  color: var(--mod-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Comparison List */
.bgpost-modern-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.bgpost-modern-compare-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--mod-muted);
}

.bgpost-modern-compare-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--mod-white);
  border: 1px solid var(--mod-border);
  border-radius: var(--mod-radius-sm);
  margin-bottom: 16px;
  align-items: flex-start;
}

.bgpost-modern-compare-item.is-positive {
  border-right: 4px solid #22c55e;
}

.bgpost-modern-compare-item.is-negative {
  border-right: 4px solid #ef4444;
}

.bgpost-modern-compare-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.is-positive .bgpost-modern-compare-icon {
  background: #f0fdf4;
  color: #22c55e;
}
.is-negative .bgpost-modern-compare-icon {
  background: #fef2f2;
  color: #ef4444;
}

.bgpost-modern-compare-text h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.bgpost-modern-compare-text p {
  font-size: 0.95rem;
  color: var(--mod-muted);
}

/* Car Gallery */
.bgpost-modern-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bgpost-modern-gallery-card {
  background: var(--mod-surface);
  border: 1px solid var(--mod-border);
  border-radius: var(--mod-radius);
  padding: 32px;
  text-align: center;
}

/* Footer */
.bgpost-modern-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--mod-border);
  text-align: center;
}

.bgpost-modern-disclaimer {
  font-size: 0.8rem;
  color: var(--mod-muted);
  max-width: 800px;
  margin: 30px auto;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .bgpost-modern-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bgpost-modern-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bgpost-modern-hero-image-wrap {
    margin-top: 40px;
  }
  .bgpost-modern-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bgpost-modern-compare-grid {
    grid-template-columns: 1fr;
  }
  .bgpost-modern-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bgpost-modern-bento {
    grid-template-columns: 1fr;
  }
  .bgpost-modern-form-card {
    padding: 24px;
  }
}
/* BGPOST_VARIANT:modern — END */

/* /BOT */

/* BOT: Add polished, app-like UI variant for business leasing landing page (v4) with subtle icons and 100vw hero. — 2026-04-21 23:29 */
/* BGPOST_VARIANT:lease-v4 — START */
.bgpost-container.bgpost-lease-v4 {
  --v4-bg: #ffffff;
  --v4-surface: #f8fafc;
  --v4-orange: #ff6b00;
  --v4-orange-soft: rgba(255, 107, 0, 0.08);
  --v4-text: #0f172a;
  --v4-muted: #64748b;
  --v4-border: #e2e8f0;
  --v4-radius: 20px;
  --v4-radius-lg: 32px;
  --v4-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);

  background-color: var(--v4-bg);
  color: var(--v4-text);
  font-family: 'Assistant', sans-serif;
  direction: rtl;
}

.bgpost-lease-v4 .v4-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Nav */
.bgpost-lease-v4 .v4-nav {
  position: sticky;
  top: 15px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--v4-border);
  border-radius: 100px;
  box-shadow: var(--v4-shadow);
  margin-top: 15px;
}

.bgpost-lease-v4 .v4-logo {
  height: 38px;
  width: auto;
}

/* Hero - Full Width */
.bgpost-lease-v4 .v4-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background:
    radial-gradient(
      circle at 15% 50%,
      var(--v4-orange-soft) 0%,
      transparent 40%
    ),
    var(--v4-bg);
  padding: 80px 0 100px;
}

.bgpost-lease-v4 .v4-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bgpost-lease-v4 .v4-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--v4-orange-soft);
  color: var(--v4-orange);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.bgpost-lease-v4 .v4-badge .bgpost-icon {
  width: 14px;
  height: 14px;
}

.bgpost-lease-v4 .v4-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.bgpost-lease-v4 .v4-title span {
  color: var(--v4-orange);
}

.bgpost-lease-v4 .v4-subtitle {
  font-size: 1.15rem;
  color: var(--v4-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.bgpost-lease-v4 .v4-hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

/* Sale Banner */
.bgpost-lease-v4 .v4-sale-banner {
  background: var(--v4-orange);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 12px;
  margin-bottom: 40px;
}

/* Form Card */
.bgpost-lease-v4 .v4-form-section {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.bgpost-lease-v4 .v4-form-card {
  background: white;
  padding: 35px;
  border-radius: var(--v4-radius-lg);
  border: 1px solid var(--v4-border);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.bgpost-lease-v4 .v4-form-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
}

.bgpost-lease-v4 .v4-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.bgpost-lease-v4 .v4-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--v4-surface);
  border: 1px solid var(--v4-border);
  border-radius: 14px;
  color: var(--v4-text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
}

.bgpost-lease-v4 .v4-input:focus {
  outline: none;
  border-color: var(--v4-orange);
  background: white;
  box-shadow: 0 0 0 3px var(--v4-orange-soft);
}

.bgpost-lease-v4 .v4-btn {
  background: var(--v4-orange);
  color: white !important;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 8px 20px -4px rgba(255, 107, 0, 0.3);
}

.bgpost-lease-v4 .v4-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(255, 107, 0, 0.4);
  background: #e66000;
}

.bgpost-lease-v4 .v4-btn-full {
  width: 100%;
  font-size: 1.1rem;
}

/* Sections */
.bgpost-lease-v4 .v4-section {
  padding: 80px 0;
}

.bgpost-lease-v4 .v4-sec-head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bgpost-lease-v4 .v4-sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 15px;
}

/* Cards */
.bgpost-lease-v4 .v4-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.bgpost-lease-v4 .v4-card {
  padding: 30px;
  background: white;
  border-radius: var(--v4-radius);
  border: 1px solid var(--v4-border);
  transition: all 0.3s ease;
}

.bgpost-lease-v4 .v4-card:hover {
  transform: translateY(-5px);
  border-color: var(--v4-orange);
  box-shadow: var(--v4-shadow);
}

.bgpost-lease-v4 .v4-card-icon {
  width: 44px;
  height: 44px;
  background: var(--v4-orange-soft);
  color: var(--v4-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bgpost-lease-v4 .v4-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bgpost-lease-v4 .v4-card p {
  color: var(--v4-muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Comparison */
.bgpost-lease-v4 .v4-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.bgpost-lease-v4 .v4-compare-box {
  padding: 30px;
  border-radius: var(--v4-radius);
  background: var(--v4-surface);
  border: 1px solid var(--v4-border);
}

.bgpost-lease-v4 .v4-compare-box.is-positive {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.bgpost-lease-v4 .v4-compare-box h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.bgpost-lease-v4 .v4-compare-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.bgpost-lease-v4 .v4-compare-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bgpost-lease-v4 .v4-compare-icon.is-x {
  color: #ef4444;
}
.bgpost-lease-v4 .v4-compare-icon.is-check {
  color: #22c55e;
}

.bgpost-lease-v4 .v4-compare-text h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

/* Car Gallery */
.bgpost-lease-v4 .v4-car-card {
  text-align: center;
  padding: 25px;
  background: white;
  border-radius: var(--v4-radius);
  border: 1px solid var(--v4-border);
}

.bgpost-lease-v4 .v4-car-icon {
  font-size: 1.8rem;
  color: var(--v4-orange);
  margin-bottom: 15px;
}

/* Expert Section */
.bgpost-lease-v4 .v4-expert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bgpost-lease-v4 .v4-expert-card {
  padding: 30px;
  background: white;
  border-radius: var(--v4-radius);
  border: 1px solid var(--v4-border);
}

.bgpost-lease-v4 .v4-check-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.bgpost-lease-v4 .v4-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.bgpost-lease-v4 .v4-check-list .bgpost-icon {
  color: #22c55e;
}

/* Footer */
.bgpost-lease-v4 .v4-footer {
  background: #0f172a;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.bgpost-lease-v4 .v4-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.bgpost-lease-v4 .v4-footer-links a {
  color: #94a3b8;
  text-decoration: underline;
  font-size: 0.9rem;
}

.bgpost-lease-v4 .v4-disclaimer {
  font-size: 0.75rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 992px) {
  .bgpost-lease-v4 .v4-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bgpost-lease-v4 .v4-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bgpost-lease-v4 .v4-compare-grid {
    grid-template-columns: 1fr;
  }
  .bgpost-lease-v4 .v4-expert-grid {
    grid-template-columns: 1fr;
  }
  .bgpost-lease-v4 .v4-nav {
    border-radius: 20px;
  }
}
/* BGPOST_VARIANT:lease-v4 — END */

/* /BOT */

/* BOT: Refine icon sizes in car and expert sections to be more 'normal' and professional. — 2026-04-21 23:30 */
/* BGPOST_VARIANT:lease-v4 — Icon size refinements for car cards and expert sections */
.bgpost-lease-v4 .v4-car-icon {
  font-size: 1.25rem !important; /* Reduced from 1.8rem */
  margin-bottom: 12px !important;
}

.bgpost-lease-v4 .v4-expert-card > .bgpost-icon {
  font-size: 1.5rem !important; /* Replaces inline 2rem */
  color: var(--v4-orange) !important;
  margin-bottom: 16px !important;
  display: block;
}

.bgpost-lease-v4 .v4-check-list .bgpost-icon {
  font-size: 1rem !important;
  width: 1rem !important;
  height: 1rem !important;
  color: #22c55e !important;
}

.bgpost-lease-v4 .v4-expert-card h3 {
  margin-bottom: 15px !important;
}

/* /BOT */

/* BOT: Refine lease-v4 variant: enforce Heebo font, strict icon sizing (sm/md), and polish card/hero interactions. — 2026-04-22 00:01 */
/* BGPOST_VARIANT:lease-v4 — REFINEMENT: Modern fonts (Heebo), strict icon sizing, and polished UI — 2026-04-21 16:55 */
.bgpost-lease-v4 {
  --v4-font: 'Heebo', sans-serif;
  font-family: var(--v4-font) !important;
}

.bgpost-lease-v4 * {
  font-family: var(--v4-font) !important;
}

/* Strict Icon Sizing Engine */
.bgpost-lease-v4 .bgpost-icon {
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.bgpost-lease-v4 .bgpost-icon-sm {
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
}

.bgpost-lease-v4 .bgpost-icon-md {
  width: 24px !important;
  height: 24px !important;
  font-size: 24px !important;
}

/* Neutralizing theme element leakage */
.bgpost-lease-v4 h1,
.bgpost-lease-v4 h2,
.bgpost-lease-v4 h3 {
  letter-spacing: -0.02em;
}

/* Polished Bento / Card effects */
.bgpost-lease-v4 .v4-card,
.bgpost-lease-v4 .v4-car-card,
.bgpost-lease-v4 .v4-expert-card {
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-color 0.3s ease,
    box-shadow 0.3s ease !important;
}

.bgpost-lease-v4 .v4-card:hover,
.bgpost-lease-v4 .v4-car-card:hover,
.bgpost-lease-v4 .v4-expert-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--v4-orange) !important;
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.08) !important;
}

/* Refined Hero image handling */
.bgpost-lease-v4 .v4-hero {
  overflow: hidden;
}

.bgpost-lease-v4 .v4-hero-image img {
  transform: scale(1.05) translateX(-20px);
  transition: transform 1.2s ease-out;
}

.bgpost-lease-v4 .v4-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bgpost-lease-v4 .v4-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* /BOT */

/* BOT: Add specialized image layout classes for the Vision and Location sections in the RZL variant. — 2026-04-22 08:54 */
/* BGPOST_VARIANT:rzl — Image Sections (Vision & Location) — 2026-04-21 */
.bgpost-container.bgpost-rzl .bgpost-rzl-vision-wrap {
  margin-top: 40px;
  position: relative;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-image-frame {
  border-radius: var(--rzl-radius-lg);
  overflow: hidden;
  border: 1px solid var(--rzl-line-strong);
  box-shadow: var(--rzl-shadow);
  background: var(--rzl-surface-strong);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-image-frame:hover img {
  transform: scale(1.02);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-img-caption {
  margin-top: 14px;
  color: var(--rzl-muted);
  font-size: 0.9rem;
  text-align: center;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 980px) {
  .bgpost-container.bgpost-rzl .bgpost-rzl-location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* /BOT */

/* BOT: Force modern rounded font (Heebo) on all RZL buttons and form elements to fix serif leakage. — 2026-04-22 08:56 */
/* BGPOST_VARIANT:rzl — Fix font inheritance for buttons and interactive elements — 2026-04-21 15:00 */
.bgpost-container.bgpost-rzl
  :where(button, input, select, textarea, .bgpost-rzl-btn) {
  font-family: 'Heebo', 'Assistant', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure the submit button in the form specifically inherits this */
.bgpost-container.bgpost-rzl .bgpost-rzl-submit {
  font-family: 'Heebo', 'Assistant', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}

/* /BOT */

/* BOT: Optimize RZL section spacing and introduce a more intentional Bento grid layout for cards. — 2026-04-22 08:59 */
/* BGPOST_VARIANT:rzl — Layout Optimization & Bento Grid — 2026-04-21 */
.bgpost-container.bgpost-rzl .bgpost-rzl-section {
  padding-top: 54px !important; /* Tighten vertical space */
}

/* Redefine the Bento Grid for RZL */
.bgpost-container.bgpost-rzl .bgpost-rzl-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card-bento-main {
  grid-column: span 8;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card-bento-side {
  grid-column: span 4;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card-bento-wide {
  grid-column: span 12;
}

@media (max-width: 980px) {
  .bgpost-container.bgpost-rzl .bgpost-rzl-card-bento-main,
  .bgpost-container.bgpost-rzl .bgpost-rzl-card-bento-side,
  .bgpost-container.bgpost-rzl .bgpost-rzl-card-bento-wide {
    grid-column: span 12 !important;
    grid-row: auto !important;
  }
}

/* Improve Card Visuals */
.bgpost-container.bgpost-rzl .bgpost-rzl-card {
  padding: 30px !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card-icon {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  margin-bottom: 20px !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card h3 {
  font-size: 1.35rem !important;
  margin-bottom: 12px !important;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-card p {
  font-size: 1.05rem !important;
  line-height: 1.5 !important;
}

/* /BOT */

/* BOT: Refine 'What you'll get' section with a more compact, app-like UI that works better on mobile. — 2026-04-22 09:03 */
/* BGPOST_VARIANT:rzl — Compact Deliverables UI — 2026-04-21 */
.bgpost-container.bgpost-rzl .bgpost-rzl-deliverables-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable-mini-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(245, 196, 81, 0.1);
  color: var(--rzl-accent);
  border-radius: 8px;
  flex-shrink: 0;
}

.bgpost-container.bgpost-rzl .bgpost-rzl-deliverable-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 640px) {
  .bgpost-container.bgpost-rzl .bgpost-rzl-deliverables-compact {
    flex-direction: column;
  }
  .bgpost-container.bgpost-rzl .bgpost-rzl-deliverable-item {
    min-width: 100%;
  }
}
/* /BOT */

/* BOT: Add modern floating CTA button for RZL variant with smooth entry animation. — 2026-04-22 09:04 */
/* BGPOST_VARIANT:rzl — Floating CTA Button — 2026-04-21 */
.bgpost-rzl-floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(
    135deg,
    var(--rzl-accent) 0%,
    var(--rzl-accent-strong) 100%
  );
  color: #08111f;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(245, 196, 81, 0.4);
  text-decoration: none;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bgpost-rzl-floating-cta.is-visible {
  transform: translateY(0);
}

.bgpost-rzl-floating-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(245, 196, 81, 0.5);
}

@media (min-width: 981px) {
  .bgpost-rzl-floating-cta {
    left: auto;
    width: auto;
    right: 40px;
    bottom: 40px;
    padding: 18px 32px;
  }
}

/* /BOT */

/* BOT: Fix alex sections to span full width for edge-to-edge background colors while keeping content centered. — 2026-04-22 09:08 */
/* Fix alex sections to be full width for edge-to-edge background */
.bgpost-alex-section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 100px 0 !important;
}

.bgpost-alex-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* /BOT */

/* BOT: Fix RZL sticky CTA peeking, enforce modern fonts on all interactive elements, and ensure hero headline spans full width without overflow. — 2026-04-22 09:19 */
/* BGPOST_VARIANT:rzl — Critical UI Fixes (CTA Peeking, Button Fonts, Headline Width) */

/* 1. Bulletproof Sticky CTA Hiding */
.bgpost-rzl-floating-cta {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(300px) !important; /* Move far off screen */
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    visibility 0.4s !important;
}

.bgpost-rzl-floating-cta.is-visible {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* 2. Absolute Font Control (No Serif/Biblical leakage) */
.bgpost-container.bgpost-rzl,
.bgpost-container.bgpost-rzl *,
.bgpost-container.bgpost-rzl a,
.bgpost-container.bgpost-rzl button,
.bgpost-container.bgpost-rzl .bgpost-rzl-btn,
.bgpost-container.bgpost-rzl .bgpost-rzl-input {
  font-family:
    'Assistant',
    'Heebo',
    -apple-system,
    sans-serif !important;
}

/* 3. Hero Headline Full Width & Alignment */
.bgpost-container.bgpost-rzl .bgpost-rzl-hero-copy {
  width: 100% !important;
  max-width: 100% !important;
  padding-inline: 40px !important; /* Balanced padding */
}

.bgpost-container.bgpost-rzl .bgpost-rzl-display {
  width: 100% !important;
  max-width: 100% !important;
  text-align: right !important;
  display: block !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important; /* Refined size */
}

/* 4. Remove Horizontal Scroll */
body {
  overflow-x: hidden !important;
}

.bgpost-container.bgpost-rzl {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
}

/* /BOT */

/* BOT: Add 2026 ultra-modern bright minimalist UI variant with staggered app-like interactions — 2026-04-22 09:23 */
/* BGPOST_VARIANT:mod26 — Premium White & Orange App-Like UI 2026 */
.bgpost-container.bgpost-modern-2026 {
  --m26-bg: #ffffff;
  --m26-surface: #f8fafc;
  --m26-surface-float: rgba(255, 255, 255, 0.85);
  --m26-border: rgba(15, 23, 42, 0.06);
  --m26-text: #0f172a;
  --m26-muted: #64748b;
  --m26-accent: #ff6b00;
  --m26-accent-light: rgba(255, 107, 0, 0.08);
  --m26-radius: 28px;
  --m26-radius-lg: 36px;
  --m26-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.06);
  --m26-shadow-hover: 0 32px 64px -16px rgba(255, 107, 0, 0.15);

  background-color: var(--m26-bg);
  color: var(--m26-text);
  font-family: 'Assistant', sans-serif;
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
}

.bgpost-container.bgpost-modern-2026 h1,
.bgpost-container.bgpost-modern-2026 h2,
.bgpost-container.bgpost-modern-2026 h3,
.bgpost-container.bgpost-modern-2026 .m26-badge,
.bgpost-container.bgpost-modern-2026 .m26-btn {
  font-family: 'Heebo', sans-serif !important;
}

/* Nav */
.bgpost-modern-2026 .m26-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  background: var(--m26-surface-float);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--m26-border);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}
.bgpost-modern-2026 .m26-logo {
  height: 42px;
  width: auto;
}

/* Buttons */
.bgpost-modern-2026 .m26-btn {
  background: var(--m26-accent);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.25);
  text-decoration: none;
}
.bgpost-modern-2026 .m26-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(255, 107, 0, 0.35);
}
.bgpost-modern-2026 .m26-btn-outline {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--m26-text) !important;
  box-shadow: none;
  font-size: 0.95rem;
  padding: 10px 24px;
}
.bgpost-modern-2026 .m26-btn-outline:hover {
  background: var(--m26-surface);
  border-color: rgba(15, 23, 42, 0.2);
  transform: none;
  box-shadow: none;
}

/* Hero */
.bgpost-modern-2026 .m26-hero {
  padding: 180px 20px 80px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.bgpost-modern-2026 .m26-hero-content {
  position: relative;
  z-index: 2;
}

.bgpost-modern-2026 .m26-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--m26-accent-light);
  color: var(--m26-accent);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 107, 0, 0.15);
}

.bgpost-modern-2026 .m26-title {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--m26-text);
}
.bgpost-modern-2026 .m26-title span {
  color: var(--m26-accent);
}

.bgpost-modern-2026 .m26-subtitle {
  font-size: 1.25rem;
  color: var(--m26-muted);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

.bgpost-modern-2026 .m26-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bgpost-modern-2026 .m26-hero-blob {
  position: absolute;
  width: 130%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle at center,
    var(--m26-accent-light) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 0;
  animation: m26-pulse 8s ease-in-out infinite alternate;
}
.bgpost-modern-2026 .m26-hero-img {
  position: relative;
  z-index: 1;
  max-width: 110%;
  transform: translateX(-5%);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.12));
  animation: m26-float 6s ease-in-out infinite;
}

/* Floating Form Card */
.bgpost-modern-2026 .m26-form-card {
  background: var(--m26-bg);
  border: 1px solid var(--m26-border);
  border-radius: var(--m26-radius);
  padding: 32px;
  box-shadow: var(--m26-shadow);
  margin-top: 40px;
}
.bgpost-modern-2026 .m26-input {
  width: 100%;
  padding: 18px 24px;
  background: var(--m26-surface);
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--m26-text);
  font-family: inherit;
  font-size: 1.05rem;
  transition: all 0.3s;
}
.bgpost-modern-2026 .m26-input:focus {
  outline: none;
  border-color: var(--m26-accent);
  background: var(--m26-bg);
  box-shadow: 0 0 0 4px var(--m26-accent-light);
}

/* Bento Grid System */
.bgpost-modern-2026 .m26-section {
  padding: 100px 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.bgpost-modern-2026 .m26-sec-head {
  text-align: center;
  margin-bottom: 60px;
}
.bgpost-modern-2026 .m26-sec-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.bgpost-modern-2026 .m26-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.bgpost-modern-2026 .m26-card {
  background: var(--m26-bg);
  border: 1px solid var(--m26-border);
  border-radius: var(--m26-radius);
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bgpost-modern-2026 .m26-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--m26-shadow-hover);
  border-color: rgba(255, 107, 0, 0.3);
}

.bgpost-modern-2026 .m26-col-4 {
  grid-column: span 4;
}
.bgpost-modern-2026 .m26-col-6 {
  grid-column: span 6;
}
.bgpost-modern-2026 .m26-col-8 {
  grid-column: span 8;
}
.bgpost-modern-2026 .m26-col-12 {
  grid-column: span 12;
}

.bgpost-modern-2026 .m26-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--m26-surface);
  border: 1px solid var(--m26-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--m26-text);
  transition: all 0.4s;
}
.bgpost-modern-2026 .m26-card:hover .m26-icon-wrap {
  background: var(--m26-accent-light);
  color: var(--m26-accent);
  border-color: rgba(255, 107, 0, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.bgpost-modern-2026 .m26-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.bgpost-modern-2026 .m26-card p {
  color: var(--m26-muted);
  font-size: 1.05rem;
}

/* Comparison Lists */
.bgpost-modern-2026 .m26-compare-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 20px;
  background: var(--m26-surface);
  margin-bottom: 16px;
  border: 1px solid transparent;
  transition: transform 0.3s;
}
.bgpost-modern-2026 .m26-compare-row:hover {
  transform: translateX(-4px);
}
.bgpost-modern-2026 .m26-compare-row.is-x {
  border-right: 4px solid #ef4444;
  background: #fff;
  border-color: var(--m26-border);
  border-right-color: #ef4444;
}
.bgpost-modern-2026 .m26-compare-row.is-check {
  border-right: 4px solid #22c55e;
  background: #f0fdf4;
  border-color: #bbf7d0;
  border-right-color: #22c55e;
}

.bgpost-modern-2026 .m26-compare-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bgpost-modern-2026 .is-x .m26-compare-icon {
  background: #fee2e2;
  color: #ef4444;
}
.bgpost-modern-2026 .is-check .m26-compare-icon {
  background: #dcfce3;
  color: #22c55e;
}

/* Final CTA */
.bgpost-modern-2026 .m26-cta-section {
  background: linear-gradient(135deg, var(--m26-accent) 0%, #ff8c33 100%);
  border-radius: var(--m26-radius-lg);
  padding: 100px 40px;
  text-align: center;
  color: #fff;
  margin: 100px 20px;
  box-shadow: 0 40px 80px rgba(255, 107, 0, 0.25);
}
.bgpost-modern-2026 .m26-cta-section .m26-title {
  color: #fff;
}
.bgpost-modern-2026 .m26-cta-section .m26-subtitle {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto 40px;
}

/* Animations */
@keyframes m26-float {
  0%,
  100% {
    transform: translateY(0) translateX(-5%);
  }
  50% {
    transform: translateY(-20px) translateX(-5%);
  }
}
@keyframes m26-pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.bgpost-modern-2026 [data-m26-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.bgpost-modern-2026 [data-m26-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .bgpost-modern-2026 .m26-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .bgpost-modern-2026 .m26-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bgpost-modern-2026 .m26-col-4,
  .bgpost-modern-2026 .m26-col-6,
  .bgpost-modern-2026 .m26-col-8 {
    grid-column: span 12;
  }
  .bgpost-modern-2026 .m26-hero-img {
    transform: none;
  }
  @keyframes m26-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  .bgpost-modern-2026 .m26-nav {
    width: calc(100% - 32px);
    padding: 10px 20px;
  }
  .bgpost-modern-2026 .m26-form-card {
    padding: 24px;
  }
}

/* /BOT */

/* BOT: Create the modern bright 2026 glass variant with fixed fonts, icon sizing, and layout bounds — 2026-04-22 09:35 */
/* BGPOST_VARIANT:glass26 — Modern 2026 App-Like White & Orange */
.bgpost-container.bgpost-glass-26 {
  --g26-bg: #ffffff;
  --g26-surface: #f8fafc;
  --g26-surface-glass: rgba(255, 255, 255, 0.85);
  --g26-border: rgba(15, 23, 42, 0.08);
  --g26-text: #0f172a;
  --g26-muted: #64748b;
  --g26-accent: #f97316;
  --g26-accent-hover: #ea580c;
  --g26-accent-light: rgba(249, 115, 22, 0.08);
  --g26-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --g26-shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  --g26-shadow-orange: 0 20px 40px -10px rgba(249, 115, 22, 0.25);
  --g26-radius: 24px;

  background: var(--g26-bg);
  color: var(--g26-text);
  font-family: 'Heebo', system-ui, sans-serif !important;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

.bgpost-container.bgpost-glass-26 * {
  font-family: 'Heebo', system-ui, sans-serif !important;
}

/* Bulletproof Icon Sizing */
.bgpost-container.bgpost-glass-26 .bgpost-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bgpost-container.bgpost-glass-26 .bgpost-icon-sm {
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
}
.bgpost-container.bgpost-glass-26 .bgpost-icon-md {
  width: 24px !important;
  height: 24px !important;
  font-size: 24px !important;
}
.bgpost-container.bgpost-glass-26 .bgpost-icon svg {
  width: 100% !important;
  height: 100% !important;
}

/* Safe Sticky Nav */
.bgpost-container.bgpost-glass-26 .g26-nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 1200px;
  background: var(--g26-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--g26-border);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: var(--g26-shadow-sm);
  box-sizing: border-box;
}
.bgpost-container.bgpost-glass-26 .g26-logo {
  height: 40px;
  width: auto;
  display: block;
}

/* Buttons */
.bgpost-container.bgpost-glass-26 .g26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--g26-accent);
  color: #fff !important;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--g26-shadow-orange);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bgpost-container.bgpost-glass-26 .g26-btn:hover {
  background: var(--g26-accent-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.35);
}
.bgpost-container.bgpost-glass-26 .g26-btn-outline {
  background: transparent;
  color: var(--g26-text) !important;
  border: 1px solid rgba(15, 23, 42, 0.2);
  box-shadow: none;
}
.bgpost-container.bgpost-glass-26 .g26-btn-outline:hover {
  background: var(--g26-surface);
  box-shadow: var(--g26-shadow-sm);
  transform: translateY(-2px);
}

/* Typography Overrides */
.bgpost-container.bgpost-glass-26 h1,
.bgpost-container.bgpost-glass-26 h2,
.bgpost-container.bgpost-glass-26 h3 {
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-weight: 900 !important;
  line-height: 1.1;
}

/* Hero Section */
.bgpost-container.bgpost-glass-26 .g26-hero {
  padding: 160px 20px 80px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.bgpost-container.bgpost-glass-26 .g26-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--g26-accent-light);
  color: var(--g26-accent);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.bgpost-container.bgpost-glass-26 .g26-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--g26-text);
}
.bgpost-container.bgpost-glass-26 .g26-title span {
  color: var(--g26-accent);
}

.bgpost-container.bgpost-glass-26 .g26-subtitle {
  font-size: 1.25rem;
  color: var(--g26-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400 !important;
}

/* Hero Visual */
.bgpost-container.bgpost-glass-26 .g26-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bgpost-container.bgpost-glass-26 .g26-blob {
  position: absolute;
  width: 120%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    var(--g26-accent-light) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 0;
  animation: g26-pulse 8s infinite alternate;
}
.bgpost-container.bgpost-glass-26 .g26-hero-img {
  position: relative;
  z-index: 1;
  max-width: 110%;
  transform: translateX(-5%);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.15));
}

/* Form Card */
.bgpost-container.bgpost-glass-26 .g26-form-card {
  background: #fff;
  border: 1px solid var(--g26-border);
  border-radius: var(--g26-radius);
  padding: 32px;
  box-shadow: var(--g26-shadow-lg);
  margin-top: 40px;
  position: relative;
  z-index: 10;
}
.bgpost-container.bgpost-glass-26 .g26-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--g26-surface);
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--g26-text);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.bgpost-container.bgpost-glass-26 .g26-input:focus {
  outline: none;
  border-color: var(--g26-accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--g26-accent-light);
}

/* Grids */
.bgpost-container.bgpost-glass-26 .g26-section {
  padding: 100px 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.bgpost-container.bgpost-glass-26 .g26-sec-head {
  text-align: center;
  margin-bottom: 60px;
}
.bgpost-container.bgpost-glass-26 .g26-sec-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.bgpost-container.bgpost-glass-26 .g26-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.bgpost-container.bgpost-glass-26 .g26-col-4 {
  grid-column: span 4;
}
.bgpost-container.bgpost-glass-26 .g26-col-6 {
  grid-column: span 6;
}
.bgpost-container.bgpost-glass-26 .g26-col-8 {
  grid-column: span 8;
}
.bgpost-container.bgpost-glass-26 .g26-col-12 {
  grid-column: span 12;
}

/* Cards */
.bgpost-container.bgpost-glass-26 .g26-card {
  background: #fff;
  border: 1px solid var(--g26-border);
  border-radius: var(--g26-radius);
  padding: 40px;
  box-shadow: var(--g26-shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bgpost-container.bgpost-glass-26 .g26-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--g26-shadow-lg);
  border-color: rgba(249, 115, 22, 0.3);
}
.bgpost-container.bgpost-glass-26 .g26-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--g26-surface);
  border: 1px solid var(--g26-border);
  color: var(--g26-text);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s;
}
.bgpost-container.bgpost-glass-26 .g26-card:hover .g26-icon-wrap {
  background: var(--g26-accent-light);
  color: var(--g26-accent);
  border-color: rgba(249, 115, 22, 0.2);
  transform: scale(1.1) rotate(5deg);
}
.bgpost-container.bgpost-glass-26 .g26-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.bgpost-container.bgpost-glass-26 .g26-card p {
  color: var(--g26-muted);
  font-size: 1.05rem;
  font-weight: 400 !important;
}

/* Compare Rows */
.bgpost-container.bgpost-glass-26 .g26-compare-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 20px;
  background: var(--g26-surface);
  margin-bottom: 16px;
  border: 1px solid transparent;
  transition: transform 0.3s;
}
.bgpost-container.bgpost-glass-26 .g26-compare-row:hover {
  transform: translateX(-4px);
}
.bgpost-container.bgpost-glass-26 .g26-compare-row.is-x {
  border-right: 4px solid #ef4444;
  background: #fff;
  border-color: var(--g26-border);
  border-right-color: #ef4444;
}
.bgpost-container.bgpost-glass-26 .g26-compare-row.is-check {
  border-right: 4px solid #22c55e;
  background: #f0fdf4;
  border-color: #bbf7d0;
  border-right-color: #22c55e;
}
.bgpost-container.bgpost-glass-26 .g26-compare-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bgpost-container.bgpost-glass-26 .is-x .g26-compare-icon {
  background: #fee2e2;
  color: #ef4444;
}
.bgpost-container.bgpost-glass-26 .is-check .g26-compare-icon {
  background: #dcfce3;
  color: #22c55e;
}

/* Final CTA */
.bgpost-container.bgpost-glass-26 .g26-cta-section {
  background: linear-gradient(135deg, var(--g26-accent) 0%, #fb923c 100%);
  border-radius: 32px;
  padding: 100px 40px;
  text-align: center;
  color: #fff;
  max-width: 1200px;
  margin: 80px auto;
  box-shadow: 0 40px 80px rgba(249, 115, 22, 0.25);
}
.bgpost-container.bgpost-glass-26 .g26-cta-section .g26-title {
  color: #fff;
}

/* Animations */
@keyframes g26-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}
.bgpost-container.bgpost-glass-26 [data-g26-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.bgpost-container.bgpost-glass-26 [data-g26-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .bgpost-container.bgpost-glass-26 .g26-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
    gap: 40px;
  }
  .bgpost-container.bgpost-glass-26 .g26-hero-img {
    transform: none;
    max-width: 100%;
  }
  .bgpost-container.bgpost-glass-26 .g26-col-4,
  .bgpost-container.bgpost-glass-26 .g26-col-6,
  .bgpost-container.bgpost-glass-26 .g26-col-8 {
    grid-column: span 12;
  }
  .bgpost-container.bgpost-glass-26 .g26-cta-section {
    margin: 40px 20px;
    padding: 60px 20px;
  }
}
/* /BOT */


/* BOT: Polish the glass-26 leasing LP into a cleaner v2 layout with full-width hero, smaller icons, and tighter premium spacing — 2026-04-22 10:00 */
/* BGPOST_VARIANT:glass26-v2 — tighten hero composition, normalize icon sizes, and replace bright callouts with a cleaner 2026 premium app-like layout */
.bgpost-container.bgpost-glass-26 {
  --g26-bg: #ffffff;
  --g26-surface: #f8fafc;
  --g26-surface-glass: rgba(255, 255, 255, 0.9);
  --g26-border: rgba(15, 23, 42, 0.08);
  --g26-text: #0f172a;
  --g26-muted: #64748b;
  --g26-accent: #f97316;
  --g26-accent-hover: #ea580c;
  --g26-accent-light: rgba(249, 115, 22, 0.08);
  --g26-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --g26-shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  --g26-shadow-orange: 0 20px 40px -10px rgba(249, 115, 22, 0.18);
  --g26-radius: 24px;
}

.bgpost-container.bgpost-glass-26 .g26-nav,
.bgpost-container.bgpost-glass-26 .g26-form-card,
.bgpost-container.bgpost-glass-26 .g26-card,
.bgpost-container.bgpost-glass-26 .g26-cta-section {
  box-shadow: var(--g26-shadow-sm);
}

.bgpost-container.bgpost-glass-26 .g26-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.bgpost-container.bgpost-glass-26 .g26-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.1) 35%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.bgpost-container.bgpost-glass-26 .g26-hero > * {
  position: relative;
  z-index: 1;
}

.bgpost-container.bgpost-glass-26 .g26-hero-content,
.bgpost-container.bgpost-glass-26 .g26-hero-visual {
  padding-inline: 20px;
}

.bgpost-container.bgpost-glass-26 .g26-hero-visual {
  justify-content: flex-start;
}

.bgpost-container.bgpost-glass-26 .g26-hero-img {
  max-width: min(100%, 640px);
  transform: translateX(0) !important;
}

.bgpost-container.bgpost-glass-26 .g26-blob {
  width: 78%;
  opacity: 0.9;
}

.bgpost-container.bgpost-glass-26 .g26-form-card {
  margin-top: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.bgpost-container.bgpost-glass-26 .g26-section {
  scroll-margin-top: 110px;
}

.bgpost-container.bgpost-glass-26 .g26-card {
  padding: 32px;
}

.bgpost-container.bgpost-glass-26 .g26-icon-wrap {
  width: 46px;
  height: 46px;
}

.bgpost-container.bgpost-glass-26 .g26-card .bgpost-icon-md,
.bgpost-container.bgpost-glass-26 .g26-card .bgpost-icon {
  width: 18px !important;
  height: 18px !important;
  font-size: 18px !important;
}

.bgpost-container.bgpost-glass-26 .g26-compare-icon,
.bgpost-container.bgpost-glass-26 .g26-check-list .bgpost-icon,
.bgpost-container.bgpost-glass-26 .g26-badge .bgpost-icon {
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
}

.bgpost-container.bgpost-glass-26 .g26-compare-row {
  padding: 20px;
}

.bgpost-container.bgpost-glass-26 .g26-cta-section {
  margin: 56px auto 0;
  padding: 72px 28px;
}

.bgpost-container.bgpost-glass-26 footer {
  padding-top: 44px !important;
}

@media (max-width: 992px) {
  .bgpost-container.bgpost-glass-26 .g26-hero {
    padding: 112px 0 48px;
  }
  .bgpost-container.bgpost-glass-26 .g26-hero-visual {
    justify-content: center;
  }
  .bgpost-container.bgpost-glass-26 .g26-hero-img {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .bgpost-container.bgpost-glass-26 .g26-card {
    padding: 24px;
  }
  .bgpost-container.bgpost-glass-26 .g26-title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }
  .bgpost-container.bgpost-glass-26 .g26-subtitle {
    font-size: 1.05rem;
  }
  .bgpost-container.bgpost-glass-26 .g26-cta-section {
    padding: 60px 20px;
  }
}
/* /BOT */


/* BOT: Add helper classes for text inside compare rows and lists for experts section — 2026-04-22 10:09 */
/* BGPOST_VARIANT:glass26-v3 — Compare text and Expert list styling for Leasing LP */
.bgpost-container.bgpost-glass-26 .g26-compare-text h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.bgpost-container.bgpost-glass-26 .g26-compare-text p {
  font-size: 1rem;
  color: var(--g26-muted);
  margin: 0;
}

.bgpost-container.bgpost-glass-26 .g26-expert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bgpost-container.bgpost-glass-26 .g26-expert-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--g26-text);
}
.bgpost-container.bgpost-glass-26 .g26-expert-list .bgpost-icon {
  color: #22c55e;
}
.bgpost-container.bgpost-glass-26 .g26-image-banner {
  width: 100%;
  border-radius: var(--g26-radius);
  overflow: hidden;
  box-shadow: var(--g26-shadow-lg);
  margin-bottom: 40px;
}
.bgpost-container.bgpost-glass-26 .g26-image-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* /BOT */


/* BOT: Add utility classes and form/CTA helpers to avoid inline styles in glass26 variant — 2026-04-22 10:11 */
/* BGPOST_VARIANT:glass26-v3 — Utility Classes */
.bgpost-text-center { text-align: center; }
.bgpost-max-w-lg { max-width: 600px; }
.bgpost-margin-auto { margin-left: auto; margin-right: auto; }
.bgpost-mb-lg { margin-bottom: 40px; }
.bgpost-w-full { width: 100%; }

.bgpost-container.bgpost-glass-26 .g26-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.bgpost-container.bgpost-glass-26 .g26-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--g26-muted);
}
.bgpost-container.bgpost-glass-26 .g26-checkbox-wrap input {
  width: 18px;
  height: 18px;
  accent-color: var(--g26-accent);
}
.bgpost-container.bgpost-glass-26 .g26-disclaimer {
  font-size: 0.8rem;
  color: var(--g26-muted);
  text-align: center;
  margin: 40px auto 0;
  max-width: 800px;
  line-height: 1.6;
}

/* /BOT */


/* BOT: Constrain hero content to center container and fix swapped image sizes/aspects. — 2026-04-23 06:58 */
/* BGPOST_VARIANT:glass26-v4 — Constrain Hero Content & Final Image Fixes — 2026-04-21 */
.bgpost-container.bgpost-glass-26 .g26-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-inline: 20px;
}

@media (max-width: 992px) {
  .bgpost-container.bgpost-glass-26 .g26-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.bgpost-container.bgpost-glass-26 .g26-logo {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.bgpost-container.bgpost-glass-26 .g26-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* /BOT */


/* BOT: Add centered hero variant and fix nav alignment for glass-26 variant — 2026-04-23 06:59 */
/* BGPOST_VARIANT:glass26-v5 — Centered Hero Layout & Image Alignment — 2026-04-21 */
.bgpost-container.bgpost-glass-26 .g26-hero-centered {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 180px 20px 100px !important;
}

.bgpost-container.bgpost-glass-26 .g26-hero-centered .g26-hero-content {
  max-width: 850px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.bgpost-container.bgpost-glass-26 .g26-hero-centered .g26-title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.bgpost-container.bgpost-glass-26 .g26-hero-centered .g26-subtitle {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.bgpost-container.bgpost-glass-26 .g26-hero-centered .g26-hero-visual {
  margin-top: 40px !important;
  width: 100% !important;
  max-width: 800px !important;
}

.bgpost-container.bgpost-glass-26 .g26-hero-centered .g26-hero-img {
  margin: 0 auto !important;
  transform: none !important;
}

/* Nav Fixes */
.bgpost-container.bgpost-glass-26 .g26-nav {
  justify-content: space-between !important;
}

.bgpost-container.bgpost-glass-26 .g26-logo-link {
  display: block !important;
  flex-shrink: 0 !important;
}

/* /BOT */


/* BOT: Redesign the final CTA form into a premium glassmorphic UI and enhance scroll-reveal animations throughout the page. — 2026-04-23 07:07 */
/* BGPOST_VARIANT:glass26-v6 — Super Modern Animations & Form Redesign — 2026-04-21 */

/* Animation Reveals */
.bgpost-container.bgpost-glass-26 [data-g26-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.bgpost-container.bgpost-glass-26 [data-g26-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal Staggering Helpers */
.bgpost-container.bgpost-glass-26 .g26-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Form Redesign - Premium Glass UI */
.bgpost-container.bgpost-glass-26 .g26-cta-section {
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.05) 0%, #ffffff 100%) !important;
  box-shadow: none !important;
  border-top: 1px solid var(--g26-border);
  padding: 120px 20px !important;
  color: var(--g26-text) !important;
  margin-bottom: 0 !important;
}

.bgpost-container.bgpost-glass-26 .g26-cta-section .g26-title {
  color: var(--g26-text) !important;
  margin-bottom: 12px !important;
}

.bgpost-container.bgpost-glass-26 .g26-cta-badge {
  background: var(--g26-accent-light) !important;
  color: var(--g26-accent) !important;
  border: 1px solid rgba(249, 115, 22, 0.2) !important;
  margin-bottom: 24px !important;
}

.bgpost-container.bgpost-glass-26 .g26-form-card {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 32px !important;
  padding: 48px !important;
  max-width: 680px !important;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05) !important;
  position: relative;
  overflow: hidden;
}

/* Decorative glow in form */
.bgpost-container.bgpost-glass-26 .g26-form-card::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--g26-accent-light) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.bgpost-container.bgpost-glass-26 .g26-form-card form {
  position: relative;
  z-index: 1;
}

.bgpost-container.bgpost-glass-26 .g26-input {
  border: 2px solid transparent !important;
  background: #f1f5f9 !important;
  height: 60px;
  font-size: 1.1rem !important;
  padding: 0 24px !important;
  margin-bottom: 20px !important;
}

.bgpost-container.bgpost-glass-26 .g26-input:focus {
  background: #ffffff !important;
  border-color: var(--g26-accent) !important;
  box-shadow: 0 0 0 5px var(--g26-accent-light) !important;
}

.bgpost-container.bgpost-glass-26 .g26-checkbox-wrap label {
  font-weight: 500;
  cursor: pointer;
}

.bgpost-container.bgpost-glass-26 .g26-btn {
  height: 64px;
  font-size: 1.25rem !important;
  letter-spacing: -0.01em;
}

/* Floating Animation */
@keyframes g26-float-alt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.bgpost-container.bgpost-glass-26 .g26-hero-img {
  animation: g26-float-alt 6s ease-in-out infinite;
}

/* Card interactions refinement */
.bgpost-container.bgpost-glass-26 .g26-card {
  transform: translateY(0) scale(1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.bgpost-container.bgpost-glass-26 .g26-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
}

/* /BOT */


/* BOT: Add staggered reveals and premium form effects for glass-26 variant. — 2026-04-23 07:10 */
/* BGPOST_VARIANT:glass26-v7 — Premium Staggered Reveals & Advanced Glass Form */

/* Staggered Grid Reveal Logic */
.bgpost-container.bgpost-glass-26 .g26-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(5) { transition-delay: 0.5s; }
.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > *:nth-child(6) { transition-delay: 0.6s; }

.bgpost-container.bgpost-glass-26 .g26-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Form Glow Effect */
.bgpost-container.bgpost-glass-26 .g26-form-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, transparent 40%, rgba(249, 115, 22, 0.1) 50%, transparent 60%);
  z-index: -1;
  border-radius: inherit;
  animation: g26-shimmer 4s infinite linear;
  background-size: 200% 200%;
}

@keyframes g26-shimmer {
  0% { background-position: 100% 100%; }
  100% { background-position: -100% -100%; }
}

/* Fix Hero Visual Aspect */
.bgpost-container.bgpost-glass-26 .g26-hero-centered .g26-hero-visual {
  max-width: 900px !important;
}

.bgpost-container.bgpost-glass-26 .g26-hero-img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* /BOT */


/* BOT: Reduce vertical padding and internal margins for glass-26 variant to minimize page length as requested by user. — 2026-04-23 07:15 */
/* BGPOST_VARIANT:glass26-v8 — Reduce spacing for compact layout */
.bgpost-container.bgpost-glass-26 .g26-hero-centered {
  padding: 120px 20px 60px !important;
}

.bgpost-container.bgpost-glass-26 .g26-section {
  padding: 60px 20px !important;
}

.bgpost-container.bgpost-glass-26 .g26-sec-head {
  margin-bottom: 40px !important;
}

.bgpost-container.bgpost-glass-26 .g26-bento {
  gap: 16px !important;
}

.bgpost-container.bgpost-glass-26 .g26-card {
  padding: 24px !important;
}

.bgpost-container.bgpost-glass-26 .g26-cta-section {
  padding: 80px 20px !important;
}

.bgpost-container.bgpost-glass-26 .g26-form-card {
  padding: 32px !important;
  margin-top: 30px !important;
}

.bgpost-container.bgpost-glass-26 .g26-input {
  height: 54px !important;
  margin-bottom: 12px !important;
}

.bgpost-container.bgpost-glass-26 .g26-compare-row {
  padding: 16px !important;
  margin-bottom: 12px !important;
}

.bgpost-container.bgpost-glass-26 .g26-hero-centered .g26-hero-visual {
  margin-top: 30px !important;
  max-width: 700px !important;
}

/* /BOT */


/* BOT: Tighter spacing for glass-26 variant to minimize scrolling and fix anchor link offset. — 2026-04-23 07:18 */
/* BGPOST_VARIANT:glass26-v9 — Hyper-compact spacing and scroll fixes — 2026-04-21 */
.bgpost-container.bgpost-glass-26 .g26-hero-centered {
  padding-top: 100px !important;
  padding-bottom: 40px !important;
}

.bgpost-container.bgpost-glass-26 .g26-section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.bgpost-container.bgpost-glass-26 .g26-sec-head {
  margin-bottom: 24px !important;
}

.bgpost-container.bgpost-glass-26 .g26-cta-section {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.bgpost-container.bgpost-glass-26 .g26-card {
  padding: 20px !important;
}

.bgpost-container.bgpost-glass-26 .g26-hero-centered .g26-hero-visual {
  margin-top: 20px !important;
}

/* Fix for fixed header blocking anchor links */
.bgpost-container.bgpost-glass-26 section[id] {
  scroll-margin-top: 100px;
}

/* /BOT */


/* BOT: Fix z-index for hero buttons and tighten spacing further to reduce scrolling. — 2026-04-23 07:26 */
/* BGPOST_VARIANT:glass26-v10 — Fix z-index, compact spacing and ensure clickable CTA */

.bgpost-container.bgpost-glass-26 .g26-hero-content {
  position: relative;
  z-index: 20 !important; /* Ensure content is above blobs and visuals */
  pointer-events: auto !important;
}

.bgpost-container.bgpost-glass-26 .g26-hero-visual {
  z-index: 5 !important;
}

/* Even more compact spacing for reduced scrolling */
.bgpost-container.bgpost-glass-26 .g26-section {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.bgpost-container.bgpost-glass-26 .g26-sec-head {
  margin-bottom: 20px !important;
}

.bgpost-container.bgpost-glass-26 .g26-hero-centered {
  padding-top: 110px !important;
  padding-bottom: 30px !important;
}

.bgpost-container.bgpost-glass-26 .g26-card {
  padding: 24px !important;
}

.bgpost-container.bgpost-glass-26 .g26-cta-section {
  padding: 40px 20px !important;
}

.bgpost-container.bgpost-glass-26 .g26-form-card {
  margin-top: 20px !important;
  padding: 24px !important;
}

.bgpost-container.bgpost-glass-26 .g26-image-banner {
  margin-bottom: 24px !important;
}

/* Ensure buttons are always interactable */
.bgpost-container.bgpost-glass-26 .g26-btn {
  position: relative;
  z-index: 30 !important;
  pointer-events: auto !important;
}

/* /BOT */


/* BOT: Add minimal brand variant styles for new pension transfer landing page — 2026-04-24 16:58 */
/* BGPOST_VARIANT:minimal-transfer — START */
.bgpost-lp-minimal-transfer {
  --in-bg: #f7faf9;
  --in-ink: #0d1a15;
  --in-ink-soft: #3a7563;
  --in-brand: #3a7563;
  --in-brand-tint: #e6f0ed;
  --in-brand-deep: #2a5548;
  --in-line: #e3ebe8;
  --in-font-mono: 'Heebo', sans-serif;
  
  font-family: 'Heebo', sans-serif;
  color: var(--in-ink);
  background: var(--in-bg);
  direction: rtl;
}

.bgpost-lp-minimal-transfer .lp-insure-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

.bgpost-lp-minimal-transfer .num { font-variant-numeric: tabular-nums; }

/* Nav */
.bgpost-lp-minimal-transfer-nav {
  background: color-mix(in srgb, var(--in-bg) 75%, transparent);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-block-end: 1px solid var(--in-line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.bgpost-lp-minimal-transfer-nav__inner { padding-block: 16px; }

.bgpost-lp-minimal-transfer-nav__logo { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; color: var(--in-ink); text-decoration: none; }

.bgpost-lp-minimal-transfer-nav__mark {
  border-radius: 6px;
  width: 28px; height: 28px;
  background: var(--in-ink);
}

/* Hero */
.bgpost-lp-minimal-transfer-hero {
  background: var(--in-bg);
  padding-block: clamp(48px, 7vw, 96px) clamp(40px, 5vw, 72px);
  border-block-end: 1px solid var(--in-line);
}

.bgpost-lp-minimal-transfer-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--in-line);
  color: var(--in-ink-soft);
  font-family: var(--in-font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.bgpost-lp-minimal-transfer-hero__eyebrow .bgpost-icon { color: var(--in-brand); }

.bgpost-lp-minimal-transfer-hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 20ch;
  margin-bottom: 20px;
}

.bgpost-lp-minimal-transfer-hero__lede {
  color: var(--in-ink-soft);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 50ch;
}

@media (max-width: 900px) {
  .bgpost-lp-minimal-transfer-hero__grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .bgpost-lp-minimal-transfer-hero__title,
  .bgpost-lp-minimal-transfer-hero__lede {
    margin-inline: auto;
  }
  .bgpost-lp-minimal-transfer-hero__eyebrow {
    margin-inline: auto;
  }
  .bgpost-lp-minimal-transfer-hero__proof {
    text-align: right;
  }
}

/* Alt rows (Features) */
.bgpost-lp-minimal-transfer-alt__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.bgpost-lp-minimal-transfer-alt__row:nth-child(even) {
  direction: ltr;
}
.bgpost-lp-minimal-transfer-alt__row:nth-child(even) > * {
  direction: rtl;
}

.bgpost-lp-minimal-transfer-alt__icon-wrap {
  width: 56px; height: 56px;
  background: var(--in-brand-tint);
  color: var(--in-brand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bgpost-lp-minimal-transfer-alt__checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bgpost-lp-minimal-transfer-alt__checks li {
  position: relative;
  padding-inline-start: 24px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--in-ink);
}
.bgpost-lp-minimal-transfer-alt__checks li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--in-brand);
  font-weight: bold;
}

@media (max-width: 900px) {
  .bgpost-lp-minimal-transfer-alt__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bgpost-lp-minimal-transfer-alt__row:nth-child(even) {
    direction: rtl;
  }
}

/* FAQ */
.bgpost-lp-minimal-transfer-faq__item {
  background: transparent !important;
  border-block-end: 1px solid var(--in-line) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.bgpost-lp-minimal-transfer-faq__q {
  padding: 24px 0 !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em;
  color: var(--in-ink) !important;
  border: none !important;
}

.bgpost-lp-minimal-transfer-faq__toggle {
  background: transparent !important;
  border: 1px solid var(--in-line) !important;
  color: var(--in-ink) !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 6px !important;
  font-size: 18px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.bgpost-lp-minimal-transfer-faq__item[open] .bgpost-lp-minimal-transfer-faq__toggle {
  background: var(--in-ink) !important;
  color: #fff !important;
  border-color: var(--in-ink) !important;
}

/* Final CTA */
.bgpost-lp-minimal-transfer-finalcta {
  background: var(--in-ink) !important;
  color: #fff;
  padding-block: clamp(64px, 8vw, 104px);
}

.bgpost-lp-minimal-transfer-finalcta__title {
  color: #fff !important;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  max-width: 20ch;
}

.bgpost-lp-minimal-transfer-finalcta__lede {
  color: rgba(255,255,255,0.8) !important;
  font-size: 1.1rem;
  max-width: 48ch;
}
/* BGPOST_VARIANT:minimal-transfer — END */
/* /BOT */


/* BOT: Upgrade reset (supplement V2) and fix oversized icons in features visual boxes. — 2026-04-24 17:10 */
/* BGPOST_RESET_SUPPLEMENT_V2:START — do not remove or modify */
.bgpost-container :where(button, .bgpost-cta-button):where(:hover, :focus, :focus-visible, :active) {
  background: transparent;
  color: inherit;
  box-shadow: none;
  outline: none;
}
.bgpost-container :where(button[aria-expanded="true"]) {
  background: transparent;
  color: inherit;
}
.bgpost-container :where(.bgpost-icon) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: none;
  line-height: 1;
  color: inherit;
}
.bgpost-container :where(.bgpost-icon-sm) { width: 16px; height: 16px; }
.bgpost-container :where(.bgpost-icon-md) { width: 28px; height: 28px; }
.bgpost-container :where(.bgpost-icon svg) {
  width: 100%;
  height: 100%;
  display: block;
}
/* BGPOST_RESET_SUPPLEMENT_V2:END */

/* BOT: Fix oversized decorative icons in features section and ensure strict icon sizing — 2026-04-24 */
.bgpost-lp-minimal-transfer-alt__visual .bgpost-icon {
  width: 48px !important;
  height: 48px !important;
  opacity: 0.8 !important;
}

/* /BOT */


/* BOT: Fix theme bleed (red/pink backgrounds) on FAQ buttons and ensure clean minimal appearance. — 2026-04-24 17:13 */
/* BOT: Fix theme bleed (Hello Elementor red/pink backgrounds) on FAQ buttons and interactive elements for the minimal-transfer variant — 2026-04-24 */

.bgpost-lp-minimal-transfer :where(button, .bgpost-cta-button, .bgpost-faq-question):where(:hover, :focus, :focus-visible, :active, [aria-expanded="true"]) {
  background-color: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  outline: none !important;
  transition: none !important;
}

/* Specific fix for the FAQ question buttons to ensure they remain clean */
.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-faq__q {
  background: transparent !important;
}

.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-faq__q:hover,
.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-faq__q:focus,
.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-faq__q[aria-expanded="true"] {
  background-color: transparent !important;
  color: var(--in-ink) !important;
}

/* Ensure the answer text is visible and not affected by theme backgrounds */
.bgpost-lp-minimal-transfer .bgpost-faq-answer {
  background: transparent !important;
  color: var(--in-ink-soft) !important;
}

/* /BOT */
/* /BOT */


/* BOT: Fix FAQ layout width and add smooth transitions for minimal-transfer variant — 2026-04-24 17:16 */

/* BOT: Fix FAQ layout width and add smooth transitions for minimal-transfer variant — 2026-04-24 */

.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-faq__grid {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}

.bgpost-lp-minimal-transfer .bgpost-faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-faq__item {
  width: 100% !important;
  display: block !important;
}

.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-faq__q {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  background: transparent !important;
}

/* Smooth Transition Logic */
.bgpost-lp-minimal-transfer .bgpost-faq-answer {
  display: grid !important; /* Force grid to override JS inline display:none/block */
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: none !important;
  padding: 0 !important; /* Padding moved to inner wrapper to prevent jump */
}

/* When expanded via aria attr from JS */
.bgpost-lp-minimal-transfer .bgpost-faq-question[aria-expanded="true"] + .bgpost-faq-answer {
  grid-template-rows: 1fr;
}

.bgpost-lp-minimal-transfer .bgpost-faq-answer-inner {
  min-height: 0;
  padding-bottom: 24px;
  color: var(--in-ink-soft);
  line-height: 1.6;
}

/* Icon rotation for smooth effect */
.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-faq__toggle {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.bgpost-lp-minimal-transfer .bgpost-faq-question[aria-expanded="true"] .bgpost-lp-minimal-transfer-faq__toggle {
  transform: rotate(45deg);
  background-color: var(--in-ink) !important;
  color: #fff !important;
}

/* /BOT */

/* /BOT */


/* BOT: Fix FAQ item layout, icon consistency, and implement reliable smooth transitions for the minimal-transfer variant. — 2026-04-24 17:18 */

/* BOT: Fix FAQ layout, icon consistency, and reliable smooth transitions for minimal-transfer — 2026-04-24 */

.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-faq__grid {
  width: 100% !important;
  max-width: 900px !important;
  margin-inline: auto !important;
}

.bgpost-lp-minimal-transfer .bgpost-faq {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important; /* Give items some space */
}

.bgpost-lp-minimal-transfer .bgpost-faq-item {
  width: 100% !important;
  background: white !important; /* Cleaner look than transparent for this variant */
  border: 1px solid var(--in-line) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: border-color 0.3s ease !important;
}

.bgpost-lp-minimal-transfer .bgpost-faq-item:hover {
  border-color: var(--in-brand) !important;
}

.bgpost-lp-minimal-transfer .bgpost-faq-question {
  width: 100% !important;
  padding: 20px 24px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  text-align: right !important;
  cursor: pointer !important;
  background: transparent !important;
  border: none !important;
}

.bgpost-lp-minimal-transfer .bgpost-faq-question-text {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--in-ink) !important;
  margin: 0 !important;
}

.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-faq__toggle {
  flex: none !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important; /* Circle is more "minimal" and consistent */
  background: var(--in-brand-tint) !important;
  color: var(--in-brand) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  line-height: 1 !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease !important;
}

/* Open State for Toggle */
.bgpost-lp-minimal-transfer .bgpost-faq-question[aria-expanded="true"] .bgpost-lp-minimal-transfer-faq__toggle {
  transform: rotate(45deg) !important;
  background-color: var(--in-brand) !important;
  color: #fff !important;
}

/* Improved Smooth Transition Logic */
.bgpost-lp-minimal-transfer .bgpost-faq-answer {
  display: grid !important; /* Always grid, use rows to hide */
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  visibility: visible !important; /* Prevent JS hidden attr from killing it */
  opacity: 1 !important;
}

.bgpost-lp-minimal-transfer .bgpost-faq-question[aria-expanded="true"] + .bgpost-faq-answer {
  grid-template-rows: 1fr !important;
}

.bgpost-lp-minimal-transfer .bgpost-faq-answer-inner {
  min-height: 0 !important;
  padding: 0 24px 24px !important;
  color: var(--in-ink-soft) !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
}

/* /BOT */

/* /BOT */


/* BOT: Switch FAQ accordion from grid-template-rows (fails on some Safari/iOS) to bulletproof max-height — 2026-04-24 17:21 */
/* BOT: Bulletproof FAQ Accordion Fix (Replacing grid-rows with max-height for Safari/iOS compatibility) — 2026-04-24 */

.bgpost-lp-minimal-transfer .bgpost-faq-answer {
  display: block !important;
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 24px !important; /* Horizontal padding only when closed */
  margin: 0 !important;
  border: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out !important;
}

.bgpost-lp-minimal-transfer .bgpost-faq-question[aria-expanded="true"] + .bgpost-faq-answer {
  max-height: 800px !important; /* Safe large value for expansion */
  padding: 0 24px 24px !important; /* Add bottom padding when open */
}

.bgpost-lp-minimal-transfer .bgpost-faq-answer-inner {
  padding: 0 !important;
  margin: 0 !important;
  color: var(--in-ink-soft) !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
}

/* Ensure the toggle icon rotates when open */
.bgpost-lp-minimal-transfer .bgpost-faq-question[aria-expanded="true"] .bgpost-lp-minimal-transfer-faq__toggle {
  transform: rotate(45deg) !important;
  background-color: var(--in-brand) !important;
  color: #fff !important;
}

/* Strip any leftover grid definitions that caused the Safari bug */
.bgpost-lp-minimal-transfer .bgpost-faq-answer {
  grid-template-rows: none !important;
}

/* /BOT */


/* BOT: Install smooth-UX bundle v1 (scroll progress, reveals, motion primitives, bgpost-accordion) — 2026-04-24 19:00 */

/* /BOT */


/* BOT: Upgrade minimal-transfer variant to premium 2026 App-UI look with image support and improved spacing. — 2026-04-24 19:00 */
/* BGPOST_VARIANT:minimal-transfer — REFINEMENT: Premium 2026 App-UI Overhaul */
.bgpost-lp-minimal-transfer {
  --in-bg: #ffffff;
  --in-surface: #f8fafc;
  --in-brand: #3a7563; /* Keep the calm green */
  --in-brand-light: rgba(58, 117, 99, 0.1);
  --in-accent: #f97316; /* Add a tiny touch of orange for CTAs per site history */
  --in-radius: 24px;
  --in-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
}

/* Premium Navigation */
.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-nav {
  top: 16px;
  width: calc(100% - 32px);
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 100px;
  border: 1px solid var(--in-line);
  box-shadow: var(--in-shadow);
}

/* Modern Hero Layout */
.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-hero {
  padding-block: 140px 80px;
  background: radial-gradient(circle at 100% 0%, var(--in-brand-light) 0%, transparent 40%);
  border-bottom: none;
}

.bgpost-lp-minimal-transfer .hero-mockup-frame {
  position: relative;
  border-radius: var(--in-radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.12);
  border: 1px solid var(--in-line);
}

.bgpost-lp-minimal-transfer .hero-mockup-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card Overhaul */
.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-alt__row {
  background: white;
  padding: 40px;
  border-radius: var(--in-radius);
  border: 1px solid var(--in-line);
  box-shadow: var(--in-shadow);
  margin-bottom: 32px;
}

.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-alt__visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--in-line);
}

.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-alt__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Polish */
.bgpost-lp-minimal-transfer .lp-insure-btn--primary {
  background: var(--in-brand) !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease !important;
}

.bgpost-lp-minimal-transfer .lp-insure-btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(58, 117, 99, 0.2);
}

/* Form Polish */
.bgpost-lp-minimal-transfer .bgpost-lp-minimal-transfer-hero__form {
  border-radius: 28px !important;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.08) !important;
}

.bgpost-lp-minimal-transfer .v4-input,
.bgpost-lp-minimal-transfer input,
.bgpost-lp-minimal-transfer select {
  background: var(--in-surface) !important;
  border: 1px solid var(--in-line) !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
}

/* FAQ Canonical Polish */
.bgpost-lp-minimal-transfer .bgpost-faq-item {
  background: white !important;
  border: 1px solid var(--in-line) !important;
  border-radius: 16px !important;
  margin-bottom: 12px !important;
  transition: all 0.3s ease !important;
}

.bgpost-lp-minimal-transfer .bgpost-faq-item:hover {
  border-color: var(--in-brand) !important;
  box-shadow: var(--in-shadow) !important;
}

/* /BOT */


/* BOT: Add glass-fitness variant styles based on dental-clinic glass pattern with custom tokens and Varela Round font. — 2026-04-24 19:18 */
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

/* BGPOST_VARIANT:glass-fitness — START */
.bgpost-lp-e043def3 {
  --dn-sage: #8ba17a;
  --dn-sage-tint: rgba(139, 161, 122, 0.15);
  --dn-sage-deep: #5e7350;
  --dn-peach: #dcb394;
  --dn-lavender: #d6e2d9;
  --dn-ink: #2c2a26;
  --dn-ink-soft: #5c5952;
  --dn-glass: rgba(255, 255, 255, 0.5);
  --dn-glass-strong: rgba(255, 255, 255, 0.75);
  background-color: #f5f5f0;
  color: var(--dn-ink);
  font-family: 'Heebo', sans-serif;
}

.bgpost-lp-e043def3 h1, .bgpost-lp-e043def3 h2, .bgpost-lp-e043def3 h3, .bgpost-lp-e043def3 .v-font {
  font-family: 'Varela Round', 'Heebo', sans-serif !important;
}

.bgpost-lp-e043def3-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* Nav */
.bgpost-lp-e043def3-nav {
  position: fixed;
  inset-block-start: 16px;
  inset-inline: 16px;
  inset-inline: max(16px, calc(50vw - 560px));
  width: auto;
  border-radius: 999px !important;
  background: color-mix(in srgb, #ffffff 55%, transparent) !important;
  backdrop-filter: saturate(1.6) blur(24px) !important;
  -webkit-backdrop-filter: saturate(1.6) blur(24px) !important;
  border: 1px solid color-mix(in srgb, #ffffff 80%, transparent) !important;
  box-shadow:
    0 12px 40px -12px rgba(46,58,42,0.25),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(0) !important;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bgpost-lp-e043def3-nav__inner { padding-block: 8px !important; padding-inline: 12px !important; display: flex; width: 100%; justify-content: space-between; align-items: center; }

.bgpost-lp-e043def3-nav__logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--dn-ink); font-weight: 700; font-size: 1.1rem; }
.bgpost-lp-e043def3-nav__mark {
  background: linear-gradient(135deg, var(--dn-sage) 0%, var(--dn-sage-deep) 100%);
  box-shadow: 0 4px 12px -4px rgba(109,134,96,0.5);
  color: white;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.bgpost-lp-e043def3-nav__cta {
  background: var(--dn-ink) !important;
  color: white !important;
  padding: 8px 18px !important;
  font-size: 0.88rem !important;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 12px -4px rgba(46,58,42,0.4);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease;
}
.bgpost-lp-e043def3-nav__cta:hover { transform: scale(1.04); box-shadow: 0 8px 20px -6px rgba(46,58,42,0.5); }

/* Hero */
.bgpost-lp-e043def3-hero {
  padding-block: clamp(120px, 14vw, 180px) clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bgpost-lp-e043def3-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.bgpost-lp-e043def3-hero__blob-1 { filter: blur(60px) !important; animation: e043-breathe 14s ease-in-out infinite; width: 560px !important; height: 560px !important; background: radial-gradient(circle, var(--dn-sage-tint), transparent 70%) !important; opacity: 0.9 !important; top: -100px; right: -100px; }
.bgpost-lp-e043def3-hero__blob-2 { filter: blur(60px) !important; animation: e043-breathe 18s ease-in-out infinite; width: 500px !important; height: 500px !important; background: radial-gradient(circle, var(--dn-peach), transparent 70%) !important; opacity: 0.4 !important; animation-delay: -4s; bottom: -100px; left: -100px; }
@keyframes e043-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

.bgpost-lp-e043def3-hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }

.bgpost-lp-e043def3-hero__kicker { font-size: 0.9rem; color: var(--dn-sage-deep); font-weight: 700; margin-bottom: 16px; display: inline-block; }

.bgpost-lp-e043def3-hero__title { font-size: clamp(2.5rem, 6vw, 4.5rem) !important; line-height: 1.1 !important; font-weight: 800 !important; letter-spacing: -0.02em !important; max-width: 20ch; margin: 0 auto 24px; color: var(--dn-ink); }
.bgpost-lp-e043def3-hero__title em { color: var(--dn-sage-deep); font-style: italic; font-family: 'Assistant', sans-serif; font-weight: 500; }

.bgpost-lp-e043def3-hero__lede { font-size: 1.18rem !important; color: var(--dn-ink-soft); max-width: 52ch; line-height: 1.55; margin: 0 auto 32px; }

.bgpost-lp-e043def3-hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.bgpost-lp-e043def3-btn { display: inline-flex; align-items: center; gap: 8px; justify-content: center; padding: 14px 28px; border-radius: 999px; font-weight: 700; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; font-size: 1.05rem; }
.bgpost-lp-e043def3-btn--primary { background: var(--dn-sage-deep); color: white !important; box-shadow: 0 8px 24px -8px rgba(94, 115, 80, 0.5); }
.bgpost-lp-e043def3-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(94, 115, 80, 0.6); }
.bgpost-lp-e043def3-btn--ghost { background: rgba(255,255,255,0.6); color: var(--dn-ink) !important; border: 1px solid color-mix(in srgb, #ffffff 80%, transparent); backdrop-filter: blur(10px); }
.bgpost-lp-e043def3-btn--ghost:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }

.bgpost-lp-e043def3-hero__strip { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; background: rgba(255,255,255,0.4); padding: 12px 24px; border-radius: 999px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.6); }
.bgpost-lp-e043def3-hero__strip-label { font-size: 0.85rem; color: var(--dn-ink-soft); font-weight: 700; }
.bgpost-lp-e043def3-hero__strip-items { display: flex; gap: 16px; align-items: center; font-size: 0.9rem; font-weight: 600; color: var(--dn-ink); }

/* Features (Scroll) */
.bgpost-lp-e043def3-scroll { padding-block: 80px; overflow: hidden; }
.bgpost-lp-e043def3-scroll__head { text-align: center; margin-bottom: 40px; }
.bgpost-lp-e043def3-scroll__head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.bgpost-lp-e043def3-scroll__head p { font-size: 1.1rem; color: var(--dn-ink-soft); max-width: 600px; margin: 0 auto; }

.bgpost-lp-e043def3-scroll__track { display: flex; gap: 24px; overflow-x: auto; padding: 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.bgpost-lp-e043def3-scroll__track::-webkit-scrollbar { display: none; }

.bgpost-lp-e043def3-card { flex: 0 0 320px; scroll-snap-align: start; background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9); border-radius: 32px; padding: 32px; text-align: right; box-shadow: 0 12px 40px -12px rgba(46,58,42,0.1); transition: transform 0.3s ease; }
.bgpost-lp-e043def3-card:hover { transform: translateY(-6px); }

.bgpost-lp-e043def3-card__image { width: 64px; height: 64px; background: var(--dn-sage-tint); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--dn-sage-deep); font-size: 24px; }
.bgpost-lp-e043def3-card__title { font-size: 1.4rem; margin-bottom: 12px; }
.bgpost-lp-e043def3-card__desc { color: var(--dn-ink-soft); line-height: 1.6; margin-bottom: 20px; }

/* Microproof */
.bgpost-lp-e043def3-microproof { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.8); font-size: 0.9rem; color: var(--dn-ink); font-weight: 500; }
.bgpost-lp-e043def3-microproof__stars { color: #facc15; }

/* Booking Form */
.bgpost-lp-e043def3-booking { padding-block: 80px; position: relative; }
.bgpost-lp-e043def3-booking__blob { filter: blur(60px) !important; width: 600px !important; height: 600px !important; background: radial-gradient(circle, var(--dn-lavender), transparent 70%) !important; opacity: 0.6 !important; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; border-radius: 50%; }
.bgpost-lp-e043def3-booking__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

.bgpost-lp-e043def3-booking__copy h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 20px; }
.bgpost-lp-e043def3-booking__copy p { font-size: 1.1rem; color: var(--dn-ink-soft); line-height: 1.6; margin-bottom: 32px; max-width: 48ch; }

.bgpost-lp-e043def3-form { background: var(--dn-glass-strong); backdrop-filter: saturate(1.6) blur(28px); border: 1px solid color-mix(in srgb, #ffffff 85%, transparent); border-radius: 36px; padding: 40px; box-shadow: 0 30px 70px -20px rgba(46,58,42,0.15), inset 0 1px 0 rgba(255,255,255,0.9); }

.bgpost-lp-e043def3-field { margin-bottom: 20px; }
.bgpost-lp-e043def3-field__above { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; }
.bgpost-lp-e043def3-input { width: 100%; background: rgba(255,255,255,0.6); border: 1px solid color-mix(in srgb, #ffffff 70%, transparent); backdrop-filter: blur(10px); border-radius: 16px; padding: 14px 18px; font-family: inherit; font-size: 1rem; transition: all 200ms ease; color: var(--dn-ink); }
.bgpost-lp-e043def3-input:focus { background: #fff; border-color: var(--dn-sage-deep); outline: none; box-shadow: 0 0 0 4px color-mix(in srgb, var(--dn-sage) 20%, transparent); }

/* Testimonials Carousel */
.bgpost-lp-e043def3-carousel-sec { padding-block: 80px; text-align: center; }
.bgpost-lp-e043def3-carousel-sec h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 48px; }
.bgpost-lp-e043def3-carousel { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; padding: 20px; }
.bgpost-lp-e043def3-carousel__track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 20px; }
.bgpost-lp-e043def3-carousel__track::-webkit-scrollbar { display: none; }

.bgpost-lp-e043def3-test { flex: 0 0 100%; scroll-snap-align: center; background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9); border-radius: 32px; padding: 40px; text-align: center; box-shadow: 0 12px 40px -12px rgba(46,58,42,0.1); }
.bgpost-lp-e043def3-test__stars { color: #facc15; font-size: 1.2rem; margin-bottom: 16px; }
.bgpost-lp-e043def3-test__quote { font-size: 1.2rem; font-style: italic; line-height: 1.6; margin-bottom: 24px; color: var(--dn-ink); }
.bgpost-lp-e043def3-test__name { font-weight: 700; font-size: 1.1rem; }
.bgpost-lp-e043def3-test__role { color: var(--dn-ink-soft); font-size: 0.9rem; }
.bgpost-lp-e043def3-carousel__hint { display: block; margin-top: 16px; font-size: 0.9rem; color: var(--dn-ink-soft); }

/* FAQ */
.bgpost-lp-e043def3-disclose { padding-block: 80px; max-width: 800px; margin: 0 auto; }
.bgpost-lp-e043def3-disclose__head { text-align: center; margin-bottom: 48px; }
.bgpost-lp-e043def3-disclose__title { font-size: clamp(2rem, 4vw, 3rem); }

/* Final CTA */
.bgpost-lp-e043def3-finalcta { margin: 48px clamp(16px, 3vw, 48px) 48px; padding: clamp(56px, 8vw, 96px); border-radius: 48px; text-align: center; background: radial-gradient(600px 400px at 20% 20%, color-mix(in srgb, var(--dn-sage-tint) 80%, transparent), transparent 60%), radial-gradient(500px 400px at 80% 80%, color-mix(in srgb, var(--dn-peach) 60%, transparent), transparent 60%), var(--dn-glass-strong); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid color-mix(in srgb, #ffffff 80%, transparent); box-shadow: 0 30px 80px -30px rgba(46,58,42,0.2), inset 0 1px 0 rgba(255,255,255,0.9); }
.bgpost-lp-e043def3-finalcta__title { font-size: clamp(2.4rem, 6vw, 4.5rem); margin-bottom: 16px; color: var(--dn-ink); }
.bgpost-lp-e043def3-finalcta__lede { font-size: 1.2rem; color: var(--dn-ink-soft); margin-bottom: 40px; }

.bgpost-lp-e043def3-finalcta__actions { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.bgpost-lp-e043def3-finalcta__action { display: flex; align-items: center; gap: 12px; padding: 16px 32px; background: var(--dn-sage-deep); color: white !important; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 12px 30px -10px rgba(94, 115, 80, 0.5); }
.bgpost-lp-e043def3-finalcta__action:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -10px rgba(94, 115, 80, 0.6); }

/* Footer */
.bgpost-lp-e043def3-footer { padding: 48px 20px; text-align: center; border-top: 1px solid rgba(44,42,38,0.1); color: var(--dn-ink-soft); font-size: 0.95rem; }

@media (max-width: 900px) {
  .bgpost-lp-e043def3-booking__grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .bgpost-lp-e043def3-booking__copy p { margin: 0 auto 32px; }
}
/* BGPOST_VARIANT:glass-fitness — END */
/* /BOT */

/* BGPOST_RESET:START v2 — installed by ensureSmoothUxAssets; managed, do not hand-edit */

/* bgpost-reset.css — foundational reset: neutralizes theme element rules inside .bgpost-container, button interactive-state bleed, and default icon sizing. */

/* ============================================================
   BGPOST RESET — foundational neutralization of WordPress theme
   element rules inside .bgpost-container. Scoped so component CSS
   wins on ties via :where() (zero specificity).

   Shipped + installed automatically by ensureSmoothUxAssets. This
   file supersedes the hand-authored reset snippets that used to live
   inside page-builder.md — the tool is now the source of truth, the
   skill just tells the agent to call it.

   Contents (in order):
     1. Base reset block (box-sizing, h1-6 inherit, p/ul/ol/a/img/table/
        input/blockquote zeroing, base button/cta reset).
     2. Button interactive-state neutralization (hover / focus /
        focus-visible / active / [aria-expanded="true"]). Kills theme
        bleed from Hello Elementor + kin that paint buttons pink on
        hover / expanded.
     3. Icon-sizing safety net. Unsized .bgpost-icon defaults to 20px;
        .bgpost-icon-sm = 16px; .bgpost-icon-md = 28px. Inner svg
        100% of <i>. Stops the "hero icon fills the whole column" bug.
   ============================================================ */

.bgpost-container,
.bgpost-container *,
.bgpost-container ::before,
.bgpost-container ::after { box-sizing: border-box; }

.bgpost-container :where(h1, h2, h3, h4, h5, h6) {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  line-height: inherit;
}

.bgpost-container :where(p) { margin: 0; }

.bgpost-container :where(button, .bgpost-cta-button) {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Button interactive-state neutralization — Phase 3 addition.
   Without this, themes like Hello Elementor paint a pink / red
   background on button:hover, button:focus, and aria-expanded="true"
   states. These rules zero out background + color + shadow + outline
   for those states inside .bgpost-container only. Aesthetic CSS can
   still style hover/active/expanded explicitly with its own selectors
   (identical specificity to :where() = 0,0,1,0; later-wins). */
.bgpost-container :where(button, .bgpost-cta-button):where(:hover, :focus, :focus-visible, :active) {
  background: transparent;
  color: inherit;
  box-shadow: none;
  outline: none;
}
.bgpost-container :where(button[aria-expanded="true"]) {
  background: transparent;
  color: inherit;
}

.bgpost-container :where(ul, ol) {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bgpost-container :where(a) {
  color: inherit;
  text-decoration: inherit;
}

.bgpost-container :where(img, picture, video, svg) {
  display: block;
  max-width: 100%;
  height: auto;
}

.bgpost-container :where(table) { border-collapse: collapse; }

.bgpost-container :where(input, textarea, select) {
  font: inherit;
  color: inherit;
}

.bgpost-container :where(blockquote) {
  margin: 0;
  padding: 0;
}

/* Icon-sizing safety net — Phase 3 addition.
   The library's inline SVGs are width=100% height=100% to fill their
   parent <i>; if the parent has no explicit size, the icon sprawls.
   These defaults cap at sensible sizes. Explicit bgpost-icon-sm /
   -md classes override via identical specificity + later position. */
.bgpost-container :where(.bgpost-icon) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: none;
  line-height: 1;
  color: inherit;
}
.bgpost-container :where(.bgpost-icon-sm) { width: 16px; height: 16px; }
.bgpost-container :where(.bgpost-icon-md) { width: 28px; height: 28px; }
.bgpost-container :where(.bgpost-icon svg) {
  width: 100%;
  height: 100%;
  display: block;
}


/* BGPOST_RESET:END */

/* BGPOST_SMOOTH_UX_CSS:START v2 — installed by ensureSmoothUxAssets; managed, do not hand-edit */

/* smooth-ux.css — scroll progress, reveals, nav shrink, past-hero detection, counters, accordion-safe autofill */

/* ============================================================
   SMOOTH UX — shared polish applied by every landing page
   ============================================================
   Rhythm tokens, native smooth scroll, focus rings, tap feedback,
   progress bar chrome, nav-shrink chrome, reduced-motion guards.
   Page-specific scroll-snap lives inside each page's own <style>.
   ============================================================ */

:root {
  --ease-out:       cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast:   150ms;
  --t-base:   280ms;
  --t-slow:   600ms;
  --t-heroic: 900ms;
  --nav-height: 72px;
}

/* Global scroll behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-block-start: calc(var(--nav-height) + 16px);
  overflow-anchor: auto;
}
html, body { overflow-x: clip; } /* no accidental horizontal scroll */

/* Respect the system — kill all scroll-linked motion under reduced-motion */
@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;
  }
  .ux-progress, .ux-nav-shrink, .ux-parallax { display: none !important; }
}

/* ============================================================
   SCROLL PROGRESS BAR — top edge, 2px
   ============================================================ */
.ux-progress {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  height: 2px; z-index: 100;
  background: transparent;
  pointer-events: none;
}
.ux-progress__fill {
  height: 100%; width: var(--ux-progress, 0%);
  background: currentColor;
  transition: width 80ms linear;
  transform-origin: left center;
}
/* Use native scroll-driven animation where supported */
@supports (animation-timeline: scroll()) {
  .ux-progress__fill {
    width: 100%;
    transform: scaleX(0); transform-origin: left center;
    animation: ux-progress-fill linear both;
    animation-timeline: scroll(root);
    transition: none;
  }
  /* RTL: reverse origin */
  [dir="rtl"] .ux-progress__fill { transform-origin: right center; }
}
@keyframes ux-progress-fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ============================================================
   NAV SHRINK — add [data-ux-scrolled] to nav when past 40px
   Also supports CSS-only fallback via scroll-driven animation
   for browsers that support it, so even if scroll events are
   suppressed by a host, the visual effect still works.
   ============================================================ */
.ux-nav-shrink {
  transition:
    padding-block var(--t-base) var(--ease-out),
    background-color var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    backdrop-filter var(--t-base) var(--ease-out);
}
.ux-nav-shrink[data-ux-scrolled] {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(10,15,32,.06), 0 8px 24px -16px rgba(10,15,32,.15);
}
/* CSS-only fallback: adds the same shadow via scroll-timeline */
@supports (animation-timeline: scroll()) {
  .ux-nav-shrink {
    animation: ux-nav-scrolled linear both;
    animation-timeline: scroll(root);
    animation-range: 40px 80px;
  }
}
@keyframes ux-nav-scrolled {
  to {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(10,15,32,.06), 0 8px 24px -16px rgba(10,15,32,.15);
  }
}

/* ============================================================
   FLOATING ELEMENT DELAY-REVEAL
   Add [data-ux-float-delayed] to any floating element.
   JS path: stays hidden until body gets [data-ux-past-hero].
   CSS-only fallback uses a scroll-driven keyframe.
   ============================================================ */
[data-ux-float-delayed] {
  opacity: 0; transform: translateY(12px) scale(.9);
  pointer-events: none;
  transition:
    opacity var(--t-slow) var(--ease-out-expo),
    transform var(--t-slow) var(--ease-out-expo);
}
[data-ux-past-hero] [data-ux-float-delayed] {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
@supports (animation-timeline: scroll()) {
  [data-ux-float-delayed] {
    animation: ux-float-reveal linear both;
    animation-timeline: scroll(root);
    animation-range: 200px 400px;
  }
}
@keyframes ux-float-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
}

/* ============================================================
   TAP & FOCUS — applied as global primitives
   ============================================================ */
a, button, [role="button"], input[type="submit"], input[type="button"] {
  -webkit-tap-highlight-color: transparent;
}
a:active, button:active, [role="button"]:active {
  transform: scale(.97);
  transition: transform var(--t-fast) var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  a:active, button:active, [role="button"]:active { transform: none; }
}

/* Autofill yellow killer — per-page bg var is passed via --ux-autofill-bg */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100px var(--ux-autofill-bg, #fff) inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* ============================================================
   SCROLL-TRIGGERED REVEAL — opt-in via [data-ux-reveal]
   ============================================================ */
[data-ux-reveal] {
  opacity: 0; transform: translateY(18px);
  transition:
    opacity var(--t-slow) var(--ease-out-expo),
    transform var(--t-slow) var(--ease-out-expo);
}
[data-ux-reveal][data-ux-visible] {
  opacity: 1; transform: translateY(0);
}

/* ============================================================
   ACCORDION SMOOTH EXPAND — using grid-rows trick
   Apply to a <details><summary/><div class="ux-acc__body">…</div></details>
   with class ux-acc on the <details>.
   ============================================================ */
.ux-acc { overflow: hidden; }
.ux-acc > .ux-acc__wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base) var(--ease-out);
}
.ux-acc[open] > .ux-acc__wrap { grid-template-rows: 1fr; }
.ux-acc > .ux-acc__wrap > * { min-height: 0; overflow: hidden; }


/* smooth-ux-motion.css — motion primitives (magnetic, tilt, marquee, word-split, stagger, cursor-spotlight, grain) */

/* ============================================================
   SMOOTH UX — motion primitives styling
   ============================================================ */

/* Magnetic buttons — base doesn't need styling, just allow transform */
[data-ux-magnetic] {
  will-change: transform;
  transition: transform 200ms var(--ease-out, cubic-bezier(0.2, 0.8, 0.2, 1));
}

/* Tilt cards */
[data-ux-tilt] {
  will-change: transform;
  transform-style: preserve-3d;
}

/* Marquee — seamless infinite scroll */
[data-ux-marquee] {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
[data-ux-marquee] > * {
  display: inline-flex;
  gap: var(--ux-marquee-gap, 48px);
  white-space: nowrap;
  animation: ux-marquee linear infinite;
  animation-duration: var(--ux-marquee-duration, 40s);
  animation-direction: var(--ux-marquee-direction, normal);
  min-width: max-content;
}
[data-ux-marquee]:hover > * { animation-play-state: paused; }
@keyframes ux-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
[dir="rtl"] [data-ux-marquee] > * {
  animation-direction: reverse;
}
@media (prefers-reduced-motion: reduce) {
  [data-ux-marquee] > * { animation: none; }
}

/* Split words — individual word wrappers */
.ux-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--t-slow, 600ms) var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
    transform var(--t-slow, 600ms) var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
  transition-delay: calc(var(--i, 0) * 40ms + var(--ux-split-base-delay, 0ms));
}
[data-ux-visible] .ux-word,
[data-ux-split-words][data-ux-visible] .ux-word,
[data-ux-split-words].is-visible .ux-word {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor spotlight — paint radial gradient at --mx/--my */
[data-ux-cursor-spotlight] {
  position: relative;
  isolation: isolate;
}
[data-ux-cursor-spotlight]::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    var(--ux-spotlight-size, 420px) circle at var(--mx, 50%) var(--my, 50%),
    var(--ux-spotlight-color, rgba(255,255,255,.12)),
    transparent 60%
  );
  transition: opacity 200ms var(--ease-out, cubic-bezier(0.2, 0.8, 0.2, 1));
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  [data-ux-cursor-spotlight]::before { display: none; }
}

/* Stagger children — base */
[data-ux-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--t-slow, 600ms) var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
    transform var(--t-slow, 600ms) var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
[data-ux-stagger] > [data-ux-visible] {
  opacity: 1;
  transform: translateY(0);
}

/* Shared noise/grain overlay utility */
.ux-grain {
  position: relative;
}
.ux-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  z-index: 1;
}


/* bgpost-accordion.css — FAQ smooth-expand + +/− icon rotation, paired with bgpost-accordion.js */

/* ============================================================
   BGPOST ACCORDION — smooth-expand CSS for the data-bgpost-accordion
   convention used by FAQ sections across every bgpost page.
   Paired with bgpost-accordion.js which flips the [aria-expanded] +
   [hidden] state. Uses max-height (reliable across every browser,
   including iOS Safari) rather than grid-template-rows 0fr → 1fr
   (unreliable pre-2024 Safari).

   Wire-up rules:
     - <button class="bgpost-faq-question" ...>      opens/closes
     - [data-bgpost-accordion-item]                  each Q/A pair
     - [data-bgpost-accordion-panel]                 the answer container
     - [hidden]                                      collapsed state
     - button[aria-expanded="true"]                  open state

   Any bgpost aesthetic CSS can style .bgpost-faq-question and the
   panel contents further — these rules are JUST the smooth-expand
   behavior + the +/- icon rotation + safe defaults.
   ============================================================ */

/* Panel body: use max-height for a buttery smooth expand. The number
   needs to be larger than any realistic answer (2000px handles long
   multi-paragraph answers). Browsers interpolate max-height smoothly
   even though the actual rendered height is smaller. */
.bgpost-container [data-bgpost-accordion-panel] {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
              padding-block 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity 0.24s ease;
  opacity: 0;
}

/* Expanded state — JS removes the [hidden] attribute AND sets
   aria-expanded on the button; CSS targets the button→sibling panel.
   Using :has() where supported + aria-expanded fallback keeps this
   working in every modern browser. */
.bgpost-container [data-bgpost-accordion-item]:has(button[aria-expanded="true"]) [data-bgpost-accordion-panel],
.bgpost-container [data-bgpost-accordion-panel]:not([hidden]) {
  max-height: 2000px;
  opacity: 1;
}

/* Collapsed visually but still participating in the layout for smooth
   transition (the [hidden] attribute alone would snap visibility). JS
   removes [hidden] before toggling aria-expanded. */
.bgpost-container [data-bgpost-accordion-panel][hidden] {
  display: block !important;
  max-height: 0;
  opacity: 0;
  padding-block: 0 !important;
}

/* FAQ question button — base sane defaults. Aesthetic CSS can override
   colors/borders/padding/typography via the section's class prefix. */
.bgpost-container .bgpost-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: inherit;
  cursor: pointer;
}

.bgpost-container .bgpost-faq-question-text {
  margin: 0;
  flex: 1;
  text-align: start; /* RTL-safe */
}

/* The +/- indicator. Content is rendered by JS/CSS via data attribute
   so aesthetic CSS can style the shape freely. */
.bgpost-container .bgpost-faq-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 400;
  user-select: none;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Rotate the icon 45° on expand — turns + into × without needing
   different icons for collapsed/expanded states. */
.bgpost-container .bgpost-faq-question[aria-expanded="true"] .bgpost-faq-icon {
  transform: rotate(45deg);
}

/* Accessibility: keyboard focus visible on the question button. */
.bgpost-container .bgpost-faq-question:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Respect reduced-motion by disabling expand/collapse transitions.
   The answer still opens and closes — just without the animation. */
@media (prefers-reduced-motion: reduce) {
  .bgpost-container [data-bgpost-accordion-panel],
  .bgpost-container .bgpost-faq-icon {
    transition: none;
  }
}


/* BGPOST_SMOOTH_UX_CSS:END */


/* BOT: Add slider controls for desktop and replace inline styles for FAQ and Trust Bar — 2026-04-24 23:19 */
/* BGPOST_VARIANT:glass-fitness — Add slider controls and fix inline styles */
.bgpost-lp-e043def3-scroll__track-wrapper {
  position: relative;
}
.bgpost-lp-e043def3-scroll__controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.bgpost-lp-e043def3-scroll__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.9);
  color: var(--dn-ink);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(46,58,42,0.1);
  transition: all 0.2s ease;
}
.bgpost-lp-e043def3-scroll__btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(46,58,42,0.15);
}
@media (max-width: 768px) {
  .bgpost-lp-e043def3-scroll__controls {
    display: none;
  }
}
.bgpost-lp-e043def3-trust-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-block-start: 28px;
  justify-content: center;
}
.bgpost-lp-e043def3-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bgpost-lp-e043def3-faq__item {
  margin-bottom: 0 !important;
  padding: 16px 24px;
  text-align: right;
}
.bgpost-lp-e043def3-faq__item .bgpost-faq-question-text {
  font-size: 1.1rem;
}
.bgpost-lp-e043def3-faq__item .bgpost-faq-answer p {
  margin-top: 16px;
  color: var(--dn-ink-soft);
  line-height: 1.6;
}
/* /BOT */


/* BOT: Refine FAQ styling for the glass-fitness variant: remove padding from the item container to ensure the smooth-UX max-height animation works without gaps. Also enhance the slider buttons for better visibility and hover feedback on desktop. — 2026-04-24 23:22 */

/* BGPOST_VARIANT:glass-fitness — Refined FAQ and Slider UI */

.bgpost-lp-e043def3-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin-inline: auto;
}

.bgpost-lp-e043def3-faq__item {
  background: rgba(255,255,255,0.6) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,0.8) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px -12px rgba(46,58,42,0.1) !important;
  padding: 0 !important; /* Critical: remove parent padding so answer can collapse to 0 height */
}

.bgpost-lp-e043def3-faq .bgpost-faq-question {
  padding: 24px 32px !important;
  background: transparent !important;
  border: none !important;
}

.bgpost-lp-e043def3-faq .bgpost-faq-question-text {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--dn-ink) !important;
}

.bgpost-lp-e043def3-faq .bgpost-faq-icon {
  width: 32px !important;
  height: 32px !important;
  background: var(--dn-sage-tint) !important;
  color: var(--dn-sage-deep) !important;
  border-radius: 50% !important;
}

.bgpost-lp-e043def3-faq .bgpost-faq-question[aria-expanded="true"] .bgpost-faq-icon {
  background-color: var(--dn-sage-deep) !important;
  color: #fff !important;
}

.bgpost-lp-e043def3-faq .bgpost-faq-answer {
  padding-inline: 32px !important;
}

.bgpost-lp-e043def3-faq .bgpost-faq-answer p {
  margin-top: 0 !important;
  padding-bottom: 24px !important;
}

/* Slider Controls Refinement */
.bgpost-lp-e043def3-scroll__controls {
  margin-top: 32px !important;
}

.bgpost-lp-e043def3-scroll__btn {
  width: 54px !important;
  height: 54px !important;
  background: white !important;
  border: 1px solid var(--dn-sage-tint) !important;
  color: var(--dn-sage-deep) !important;
  font-size: 1.4rem !important;
}

.bgpost-lp-e043def3-scroll__btn:hover {
  background: var(--dn-sage-deep) !important;
  color: white !important;
  transform: translateY(-4px) scale(1.05) !important;
}

/* /BOT */
