:root {
  --bg: #0e1116;
  --panel: #121723;
  --soft: #1a2030;
  --border: #22283a;
  --text: #e6e9ef;
  --muted: #a8b3cf;
  --accent: #4da3ff;
  --accent-2: #2bd1ff;
  --ok: #30d158;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-lg: 22px;
  --font-base: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
}

/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(77, 163, 255, 0.08), transparent 60%), var(--bg);
  color: var(--text);
  font: 16px/1.5 var(--font-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

/* Header */

.bv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
  background: linear-gradient(180deg, #0f131b, rgba(15, 19, 27, 0.92), transparent 95%);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.bv-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bv-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 10%, rgba(77, 163, 255, 0.3), transparent 60%), #05070d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bv-logo img {
  max-width: 90%;
  height: auto;
  display: block;
}

.bv-brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bv-brand-name {
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bv-brand-sub {
  font-size: 0.85rem;
  color: #cfe0ff;
  opacity: 0.9;
}

  /* Top-left brand */
  .brand-header {
    display:flex; align-items:center; gap:10px;
    z-index: 10;
    animation: logoFadeIn 0.8s ease-out both;
  }
  .brand-header .logo {
    height:32px; width:auto; display:block;
    filter: drop-shadow(0 1px 0 rgba(0,0,0,.2));
  }
  .brand-header .brand-text {
    color:#fff; 
	font-weight:bolder; 
	letter-spacing:.2px; 
	opacity:.9;
	font-size: 26px;  
  }

  .brand-header a {
	text-decoration: none;
  }

/* Navigation */

.bv-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bv-nav a {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.bv-nav a:hover {
  background: var(--soft);
  color: var(--text);
  border-color: var(--border);
}

/* Shell */

.bv-shell {
  display: flex;
  justify-content: center;
  padding: 18px 16px 40px;
}

.bv-shell-inner {
  width: 100%;
  max-width: 1180px;
}

/* Sections */

.bv-section {
  margin-top: 22px;
}

.bv-section-header {
  margin-bottom: 14px;
}

.bv-kicker {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.bv-h1 {
  margin: 0.4em 0 0.25em;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.bv-h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
}

.bv-h2 {
  margin: 0.3em 0 0.2em;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
}

.bv-h2 span {
  color: var(--accent-2);
}

.bv-lead {
  max-width: 60ch;
  color: #c7d2ee;
  font-size: 1.02rem;
}

.bv-text-muted {
  color: var(--muted);
}

/* CTA buttons */

.bv-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.bv-btn {
  display: inline-flex;
  width: 48%;
  align-items: center;
  justify-content: center;
  padding: 40px 50px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #4874ba !important;
  text-align: center;
  line-height: 1.2;	
  color: var(--text);
  font-weight: bold;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.bv-btn:hover {
  transform: translateY(-1px);
}

.bv-btn-primary {
  background: linear-gradient(180deg, rgba(77, 163, 255, 0.25), rgba(77, 163, 255, 0.12));
  border-color: #2a5fa5;
}

.bv-btn-ghost {
  background: transparent;
}

/* Cards and grid */

.bv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
  gap: 16px;
  margin-top: 20px;
}

.bv-grid {
  display: grid;
  gap: 16px;
}

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

.bv-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bv-section-top {
  margin-top: 16px;
}

.bv-card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.bv-card-primary {
  background: radial-gradient(500px 260px at 90% -20%, rgba(77, 163, 255, 0.18), transparent 65%), var(--panel);
}

.bv-card-image {
  padding: 0;
  overflow: hidden;
}

.bv-card-image img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.bv-card-image-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bv-image-stack-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.bv-image-stack-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.bv-card-title {
  margin: 0 0 6px;
  font-weight: 700;
  color: #c7d2ee;
}

/* Lists */

.bv-list {
  margin: 8px 0 0;
  padding-left: 1.1em;
  color: var(--muted);
  font-size: 0.94rem;
}

.bv-list li {
  margin-bottom: 4px;
}

.bv-list-compact {
  margin-top: 10px;
}

/* Image caption */

.bv-img-caption {
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(7, 9, 16, 0.9);
}

/* Pills */

.bv-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-top: 10px;
}

.bv-pill-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #00182c;
  font-weight: 700;
}

/* Contact list */

.bv-contact-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  font-size: 0.95rem;
}

.bv-contact-list li {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.bv-contact-list span {
  color: var(--muted);
}

/* FAQ */

.bv-faq-list {
  display: grid;
  gap: 2px;
}

.bv-faq {
  padding: 0;
  overflow: hidden;
}

.bv-faq-toggle {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bv-faq-toggle span:first-child {
  font-size: 0.95rem;
  font-weight: 600;
}

.bv-faq-icon {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 8px;
}

.bv-faq-body {
  max-height: 0;
  padding: 0 16px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  transition: max-height 0.18s ease, padding-bottom 0.18s ease, padding-top 0.18s ease;
}

.bv-faq-body p {
  margin: 10px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.bv-faq.open .bv-faq-body {
  padding-top: 8px;
  padding-bottom: 12px;
}

.bv-faq.open .bv-faq-body {
  max-height: 320px;
}

.bv-faq.open .bv-faq-icon {
  transform: rotate(45deg);
}

/* Footer */

.bv-footer {
  border-top: 1px solid var(--border);
  padding: 14px 16px 26px;
  margin-top: 18px;
}

.bv-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 0.84rem;
    color: var(--muted);
}

/* Responsive */

@media (max-width: 880px) {
  .bv-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bv-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .bv-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bv-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bv-nav {
    justify-content: flex-start;
  }

  .bv-shell {
    padding-inline: 12px;
  }

  .bv-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* === Sticky Footer Layout for BV360 pages === */

/* Make the entire page a flex column */
html, body {
  height: 100%;
  margin: 0;
}

/* Shell wrapper becomes flex parent */
body {
  display: flex;
  flex-direction: column;
}

/* The main content grows to fill remaining space */
main, .bv-shell {
  flex: 1 0 auto;
}

/* Footer sticks to bottom when content is short */
.bv-footer {
  flex-shrink: 0;
}

/* === Sticky Footer Layout (foundation) === */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

/* Footer always sits at bottom */
.bv-footer {
  flex-shrink: 0;
}

/* Main area expands to fill leftover space */
main,
.bv-shell {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/* === Vertical Center for Minimal Homepage === */
.bv-shell-inner {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;      /* <-- vertical centering */
  align-items: center;          /* optional: horizontal centering */
  padding: 40px 20px;
  text-align: left;             /* keep that BV360 admin aesthetic */
  max-width: 1280px;
  margin: 0 auto;
}

/* === Feature Icons Under Hero Header === */
.bv-feature-icons {
    display: flex;
    gap: 22px;
    margin-top: 40px;
    margin-bottom: 40px;
	flex-direction: row;
    justify-content: space-evenly;
}

.bv-feature-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.bv-feature-icon img {
  width: 195px;
  height: 195px;
  padding: 0;
  border-radius: 14px; /* rounded square */
  background: var(--panel);
  box-shadow: var(--shadow);
}

.bv-feature-icon span {
    font-size: 1.5rem;
    color: var(--muted);
    font-weight: bold;
}

/* Smaller screens */
@media (max-width: 640px) {
  .bv-feature-icons {
    gap: 16px;
  }

  .bv-feature-icon img {
    width: 100%;
    height: 140px;
    padding: 0px;
  }

  .bv-feature-icon span {
    font-size: 0.82rem;
  }
}

/* === Feature List Under Hero Header === */

.bv-feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

/* Each feature row: icon column on left, description on right */
.bv-feature {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* Left column: icon + label, fixed width */
.bv-feature-icon-col {
  width: 200px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* The icon tile itself */
.bv-feature-icon {
  width: 200px;
  height: 200px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0e1116;
  box-shadow: var(--shadow);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.bv-feature-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* Label below icon */
.bv-feature-label {
  font-size: 32px;
  font-weight: bold;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    color: transparent;
}

/* Description text on the right */
.bv-feature-body {
  flex: 1 1 auto;
}

.bv-feature-body p {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: bold;  
  color: #c7d2ee;
}

/* Soft glow + subtle lift on hover */
.bv-feature:hover .bv-feature-icon {
  transform: translateY(-2px);
  border-color: var(--accent-2);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(43, 209, 255, 0.35);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .bv-feature {
    align-items: flex-start;
  }

  .bv-feature-icon-col {
    width: 100%;
    min-width: 140px;
  }

  .bv-feature-body p {
    font-size: 0.9rem;
  }
}

/* === Tabs: Why / Who / What === */

.bv-tabs {
  margin-top: 50px;
}

/* === Tabs: Full-Width Buttons === */

.bv-tab-list {
  display: flex;
  width: 100%;
  gap: 6px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(10, 13, 22, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}

.bv-tab-button {
  flex: 1 1 0;               /* Make each button equal width */
  text-align: center;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.bv-tab-button:hover {
  color: var(--text);
}

.bv-tab-button.is-active {
  background: #4874ba;
  color: #eef4ff;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.6),
    0 0 14px rgba(43, 209, 255, 0.45);
}

/* Panels */

.bv-tab-panels {
  margin-top: 6px;
  margin-bottom: 50px;
}

.bv-tab-panel {
  display: none;
}

.bv-tab-panel.is-active {
  display: block;
}

/* Text-based icon variant (WHY / WHO tiles) */

.bv-feature-icon--text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* (Keep your existing .bv-feature-list, .bv-feature, .bv-feature-icon, etc. as-is) */

/* === Mobile: Move feature icons above the text inside tabs === */
@media (max-width: 640px) {
  .bv-feature {
    flex-direction: column;        /* Icon above text */
    align-items: center;           /* Center the icon */
    text-align: center;            /* Center the text if you prefer (optional) */
    gap: 14px;
  }

  .bv-feature-icon-col {
    width: 100% !important;        /* Full width */
    min-width: 0 !important;
    align-items: center;           /* Center the icon + label */
  }

  .bv-feature-icon {
    width: 100%;    /* Larger touch-friendly icon */
    height: 300px;
  }

  .bv-feature-label {
    font-size: 1.2rem;
    text-align: center;
  }

  .bv-feature-body p {
    width: 100%;
    text-align: left;              /* You may prefer left-align; change to center if needed */
  }

  .bv-feature-body p {
    font-size: 1rem;
    line-height: 1.45;
  }
	
  .bv-tab-button {
	font-size: 16px;
  }
	
	.bv-btn {
		font-size: 32px;
	}
	
	.bv-price-amount {
    font-size: 42px;
	}
	
	.bv-feature-icon img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  object-position: center;
	  display: block;
	}	
	
	.bv-card {
		text-align: center;
	}
	
	.brand-header {
		display: flex;
		justify-content: center;
	}
	
	.bv-list {
		list-style-type: none;
	}
}

/* === 2-Column Hero Layout: 480px logo + main content === */

.bv-hero-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

/* Left column: fixed 480px */
.bv-logo-column {
  flex: 0 0 380px;
  display: flex;
}

/* Right column: remaining width */
.bv-main-column {
  flex: 1 1 auto;
  min-width: 0;
}

/* Vertical logo block (sticky) */
.bv-logo-vertical {
  position: sticky;
  top: 72px; /* keep in view below header */
  width: 100%;
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}

.bv-logo-vertical-link {
  display: block;
  line-height: 0;
}

.bv-logo-vertical-img {
  display: block;
  height: 67vh;
  width: auto;
  max-height: 1000px;
}

/* --- Responsive: hide left column on smaller screens --- */
@media (max-width: 960px) {
  .bv-hero-layout {
    flex-direction: column;
    gap: 24px;
  }

  .bv-logo-column {
    display: none;        /* hide vertical logo column */
  }

  .bv-main-column {
    width: 100%;
    max-width: 100%;
  }

  .bv-shell-inner {
    padding-top: 0;
  }
}

/* === Subscribe Panel === */

.bv-subscribe {
  width: 48%;
}

.by-subscribe-2 {
	width: 100%;
}

.bv-subscribe-inner {
  background: #121723;
  padding: 20px 18px;
  border-radius: 12px;
  border: 1px solid #0e1116;
  shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.bv-subscribe-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: #2a5fa5;
  text-align: center;
  line-height: 1.2;
}

.bv-subscribe-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #fff;
	text-align: center;
}

.bv-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bv-subscribe-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bv-subscribe-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  background: #ddd;
  color: #333;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
}

.bv-subscribe-input::placeholder {
  color: #616b86;
}

.bv-subscribe-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(77, 163, 255, 0.4);
}

.bv-subscribe-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius:12px;
  border: 1px solid #2a5fa5;
  background: #2a5fa5;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.bv-subscribe-btn:hover {
  transform: translateY(-1px);
}

.no-form {
	background: none;
	border: none;
}

.no-form h3 {
	font-size: 32px;
	line-height: 1.2;
	text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* Stack nicely on small screens */
@media (max-width: 640px) {
  .bv-subscribe-row {
    flex-direction: column;
  }

  .bv-subscribe-btn {
    width: 100%;
    text-align: center;
  }
}

/* === Subscribe success popup === */
#bv-subscribe-popup {
  position: fixed;
  top: 50%;                   /* center vertically */
  left: 50%;                  /* center horizontally */
  transform: translate(-50%, -50%) scale(0.95);
  background: radial-gradient(600px 400px at 90% -20%, rgba(77,163,255,0.25), transparent 65%),
              rgba(5,7,13,0.92);
  border: 1px solid var(--border);
  padding: 32px 40px;         /* increased padding */
  border-radius: 18px;
  color: var(--text);
  font-size: 1.05rem;
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  z-index: 9999;
  text-align: center;
  max-width: 380px;
}

/* When visible */
#bv-subscribe-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Full-page subtle background image */
body {
  background: 
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('/images/background-bv360.jpg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  color: #e5e5e5; /* keeps your text readable */
}

/* Optional: ensure sections don't override body background */
.bv-shell,
.bv-shell-inner,
.bv-section {
  background: transparent !important;
}

/* FAQ SECTION */
.bv-faq-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bv-faq-inner {
  max-width: 960px;
  margin: 0 auto;
}

.bv-faq-list {
    margin-top: 1.5rem;
    padding: 50px 25px;
    background: radial-gradient(500px 260px at 90% -20%, rgba(77, 163, 255, 0.18), transparent 65%), var(--panel);
    border-radius: 12px;
	}

.bv-faq-item {
  width: 100%;
  background: #141821;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1.2rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: #c7d2ee;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  transition: border-color 0.18s ease, background-color 0.18s ease,
    transform 0.12s ease;
}

.bv-faq-item:hover {
  border-color: rgba(72, 116, 186, 0.7);
  background: #171b26;
  transform: translateY(-1px);
}

.bv-faq-question {
  flex: 1;
}

.bv-faq-icon {
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0.8;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.bv-faq-item.is-open .bv-faq-icon {
  transform: rotate(45deg);
  opacity: 1;
}

.bv-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
  padding: 0 0.25rem;
  margin-top: -0.25rem; /* tuck up under the card */
  margin-bottom: 0.25rem;
}

.bv-faq-answer p {
  margin: 0.5rem 0 0.9rem;
  font-size: 17px;
  line-height: 1.5;
  color: #c7d2ee;
}

.faq-header {
	font-size: clamp(32px, 3vw, 52px);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    color: transparent;
}

@media (max-width: 640px) {
  .bv-faq-item {
    padding: 0.8rem 1rem;
  }
}

/* Pricing helpers (matches existing BV360 look) */
.bv-price { margin-top: 12px; margin-bottom: 12px; }
.bv-price-amount {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
}
.bv-price-term {
  margin-top: 6px;
  font-size: 18px;
  color: #c7d2ee;
  font-weight: 700;
}

/* Image stack replacing pricing text cards */
.bv-image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bv-image-card {
  background: #0f1115;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.bv-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

/* Mobile: stack hero CTA so it doesn't overflow */
@media (max-width: 640px) {
  .bv-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
	
	.bv-image-card img {
	  display: none;
	  aspect-ratio: 2 / 1;
	}

  .bv-subscribe,
  .bv-cta-row > .bv-btn,
  .bv-subscribe-2 {
    width: 100%;
  }

  /* Optional: slightly tighten padding on the button for very small screens */
  .bv-btn {
    padding: 18px 20px;
    font-size: 22px; /* you can tweak this */
  }
}

/* Mobile: stack the hero CTA so it doesn't force the page wider than the viewport */
@media (max-width: 640px) {
  .bv-cta-row {
    flex-direction: column;
    align-items: center;
  }

  .bv-subscribe,
  .bv-cta-row .bv-btn {
    width: 100%;
    max-width: 100%;
  }

  /* Slightly smaller button for narrow phones */
  .bv-btn {
    padding: 22px 20px;
    font-size: 20px;
  }
	.bv-h1 {
	  font-size: 42px;
	}	
}

/* Optional safety net: prevent any random overflow from causing sideways scroll */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.bv-tooltip {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #8aa4ff; /* adjust to match your palette */
}

.bv-tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 260px;
  max-width: calc(100vw - 24px); /* prevents overflow */
  background-color: #111;
  color: #8aa4ff;
  text-align: left;
  padding: 15px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.4;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.bv-tooltip:hover .bv-tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 480px) {
  .bv-tooltip-text {
    width: 260px;
    max-width: calc(100vw - 24px);

    left: auto;
    right: 0;            /* anchor to the icon’s right edge */
    transform: none;     /* top centering */
  }
}


@media (max-width: 425px) {
    .bv-feature-icon {
        width: 100%;
        height: 225px;
    }
}

