/*
Theme Name: Boat Analysis
Theme URI: https://boatanalysis.local/
Author: Boat Analysis
Author URI: https://boatanalysis.local/
Description: Premium luxury maritime WordPress block theme with bulletproof visual image loading, full responsiveness, professional payment gateway cards, and HIN history verification tools.
Version: 3.5.0
Requires at least: 6.3
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boat-analysis
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

:root {
  --ba-navy-950: #030a14;
  --ba-navy-900: #09172c;
  --ba-navy-850: #0d203e;
  --ba-navy-800: #132a4f;
  --ba-navy-700: #1c3b68;
  
  --ba-cyan-500: #00d2ff;
  --ba-cyan-400: #3aebff;
  --ba-cyan-600: #009ecc;
  
  --ba-amber-500: #ffb703;
  --ba-amber-400: #ffc300;
  --ba-coral-500: #ff595e;
  --ba-emerald-500: #10b981;
  --ba-emerald-400: #34d399;

  --ba-slate-50: #f8fafc;
  --ba-slate-100: #f1f5f9;
  --ba-slate-200: #e2e8f0;
  --ba-slate-300: #cbd5e1;
  --ba-slate-400: #94a3b8;
  --ba-slate-600: #475569;
  --ba-slate-700: #334155;
  --ba-slate-800: #1e293b;
  --ba-slate-900: #0f172a;

  --ba-glass-bg: rgba(9, 23, 44, 0.88);
  --ba-glass-border: rgba(255, 255, 255, 0.16);
  --ba-glass-card: rgba(255, 255, 255, 0.05);
  
  --ba-shadow-glow: 0 14px 45px -10px rgba(0, 210, 255, 0.5);
  --ba-shadow-card: 0 20px 50px rgba(3, 10, 20, 0.08);
  --ba-shadow-float: 0 30px 70px -15px rgba(3, 10, 20, 0.35);
  
  --ba-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ba-radius-sm: 10px;
  --ba-radius-md: 18px;
  --ba-radius-lg: 28px;
  --ba-radius-pill: 9999px;
}

/* Base Setup */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--ba-font-sans);
  background-color: var(--ba-slate-50);
  color: var(--ba-slate-800);
  line-height: 1.65;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ba-navy-950);
}
::-webkit-scrollbar-thumb {
  background: var(--ba-navy-700);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ba-cyan-500);
}

a {
  color: var(--ba-navy-700);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--ba-cyan-600);
}

/* Container Bounds */
.wp-site-blocks,
main,
.wp-block-post-content,
.entry-content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.alignfull {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

.alignwide {
  max-width: 1380px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.ba-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(18px, 3.5vw, 40px);
  padding-right: clamp(18px, 3.5vw, 40px);
  box-sizing: border-box;
}

/* Header Navigation */
.ba-site-header {
  background: rgba(3, 10, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ba-glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.ba-site-header .wp-block-group {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  padding-left: clamp(20px, 4vw, 50px) !important;
  padding-right: clamp(20px, 4vw, 50px) !important;
  max-width: 1400px;
  margin: 0 auto;
}

.ba-site-header a,
.ba-site-header .wp-block-navigation-item__label {
  color: rgba(255, 255, 255, 0.94) !important;
  font-weight: 700;
  font-size: 15px;
}

.ba-site-header a:hover,
.ba-site-header .wp-block-navigation-item__label:hover {
  color: var(--ba-cyan-400) !important;
}

/* Logo Image */
.ba-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
}

.ba-site-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 210, 255, 0.25));
  transition: filter 0.2s ease, transform 0.2s ease;
}

.ba-site-logo:hover {
  filter: drop-shadow(0 4px 16px rgba(0, 210, 255, 0.5));
  transform: scale(1.02);
}

.ba-footer-logo {
  height: 44px;
  opacity: 0.92;
  filter: none;
}

.ba-footer-logo:hover {
  opacity: 1;
  filter: drop-shadow(0 2px 10px rgba(0, 210, 255, 0.4));
}

.ba-brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--ba-cyan-500), #0066ff);
  border-radius: var(--ba-radius-sm);
  color: #fff;
  display: none;
  font-weight: 900;
  font-size: 20px;
  height: 44px;
  justify-content: center;
  width: 44px;
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.45);
}

.wp-block-site-title a {
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em;
}

/* Buttons */
.ba-button,
.btn-primary,
.wp-block-button__link {
  align-items: center;
  background: linear-gradient(135deg, #00d2ff 0%, #0066ff 100%);
  border: 0;
  border-radius: var(--ba-radius-pill);
  color: #ffffff !important;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--ba-font-sans);
  font-weight: 800;
  font-size: 16px;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 34px;
  text-decoration: none !important;
  box-shadow: var(--ba-shadow-glow);
  transition: all 0.25s ease;
}

.ba-button:hover,
.btn-primary:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -5px rgba(0, 210, 255, 0.6);
  background: linear-gradient(135deg, #3aebff 0%, #0077ff 100%);
}

.ba-button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border: 1px solid var(--ba-glass-border);
  box-shadow: none;
}

.ba-button-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
}

/* Hero Section */
.ba-hero {
  position: relative;
  background: var(--ba-navy-950);
  color: #ffffff;
  overflow: hidden;
  padding-top: clamp(65px, 8vw, 120px);
  padding-bottom: clamp(75px, 9vw, 140px);
  width: 100%;
}

.ba-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 10%, rgba(0, 210, 255, 0.28) 0%, transparent 60%),
    radial-gradient(circle at 90% 70%, rgba(0, 102, 255, 0.22) 0%, transparent 50%),
    linear-gradient(180deg, rgba(3, 10, 20, 0.55) 0%, rgba(3, 10, 20, 0.96) 100%),
    url("assets/hero.png") center/cover no-repeat,
    url("https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
  z-index: 0;
}

.ba-hero > * {
  position: relative;
  z-index: 1;
}

/* Hero Stats Row */
.ba-hero-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.ba-stat-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  padding: 10px 22px;
  border-radius: var(--ba-radius-pill);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Subpage Visual Headers */
.ba-page-header-hero {
  position: relative;
  background: var(--ba-navy-950);
  color: #ffffff;
  padding-top: clamp(60px, 7vw, 100px);
  padding-bottom: clamp(60px, 7vw, 100px);
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.ba-page-header-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 10, 20, 0.65) 0%, rgba(3, 10, 20, 0.96) 100%),
    url("assets/inspection.png") center/cover no-repeat,
    url("https://images.unsplash.com/photo-1540946485063-a40da27545f8?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  z-index: 0;
}

.ba-page-header-hero.hero-transom::before {
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 10, 20, 0.65) 0%, rgba(3, 10, 20, 0.96) 100%),
    url("assets/yacht-order.jpg") center/cover no-repeat,
    url("assets/transom.png") center/cover no-repeat;
}

.ba-page-header-hero.hero-payment::before {
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 10, 20, 0.65) 0%, rgba(3, 10, 20, 0.96) 100%),
    url("assets/payment.jpg") center/cover no-repeat;
}

.ba-page-header-hero.hero-marina::before {
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 10, 20, 0.65) 0%, rgba(3, 10, 20, 0.96) 100%),
    url("assets/yacht-about.jpg") center/cover no-repeat,
    url("assets/interior.png") center/cover no-repeat;
}

.ba-page-header-hero.hero-faq::before {
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 10, 20, 0.65) 0%, rgba(3, 10, 20, 0.96) 100%),
    url("assets/yacht-faq.jpg") center/cover no-repeat,
    url("assets/support.jpg") center/cover no-repeat;
}

.ba-page-header-hero.hero-report::before {
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 10, 20, 0.65) 0%, rgba(3, 10, 20, 0.96) 100%),
    url("assets/yacht-report.jpg") center/cover no-repeat,
    url("assets/hero.png") center/cover no-repeat;
}

.ba-page-header-hero.hero-contact::before {
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 10, 20, 0.65) 0%, rgba(3, 10, 20, 0.96) 100%),
    url("assets/support.jpg") center/cover no-repeat;
}

.ba-page-header-hero.hero-legal::before {
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 210, 255, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 10, 20, 0.65) 0%, rgba(3, 10, 20, 0.96) 100%),
    url("assets/interior.png") center/cover no-repeat;
}

.ba-page-header-hero > * {
  position: relative;
  z-index: 1;
}

.ba-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 255, 0.14);
  border: 1px solid rgba(0, 210, 255, 0.35);
  color: var(--ba-cyan-400);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--ba-radius-pill);
  margin-bottom: 22px;
}

.ba-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--ba-cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ba-cyan-400);
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.ba-hero h1 {
  font-size: clamp(40px, 5.5vw, 72px) !important;
  font-weight: 900 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.03em !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.ba-hero h1 .text-gradient {
  background: linear-gradient(135deg, #ffffff 10%, var(--ba-cyan-400) 80%, #009ecc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ba-hero p.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px !important;
}

/* Floating Search Pill Bar */
.ba-search-pill-wrapper {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ba-search-pill {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 60px;
  padding: 10px 12px 10px 28px;
  box-shadow: var(--ba-shadow-float);
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.ba-search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ba-search-input-group svg {
  color: var(--ba-cyan-600);
  flex-shrink: 0;
}

.ba-search-pill input[type="text"],
.ba-search-pill input[type="email"] {
  background: transparent;
  border: 0;
  outline: none;
  font-family: var(--ba-font-sans);
  font-weight: 800;
  color: var(--ba-navy-950);
  font-size: 17px;
  width: 100%;
  padding: 12px 0;
}

.ba-search-pill input::placeholder {
  color: rgba(10, 25, 47, 0.45);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.ba-search-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(10, 25, 47, 0.15);
  flex-shrink: 0;
}

.ba-search-select-group select {
  background: transparent;
  border: 0;
  outline: none;
  font-family: var(--ba-font-sans);
  font-weight: 800;
  color: var(--ba-navy-950);
  font-size: 15px;
  cursor: pointer;
  padding: 10px 12px;
}

.ba-search-pill .btn-submit-search {
  background: linear-gradient(135deg, #00d2ff 0%, #0066ff 100%);
  color: #ffffff;
  border: 0;
  border-radius: 50px;
  padding: 16px 38px;
  font-weight: 900;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 102, 255, 0.4);
}

.ba-search-pill .btn-submit-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 210, 255, 0.6);
}

@media (max-width: 860px) {
  .ba-search-pill {
    flex-direction: column;
    border-radius: var(--ba-radius-md);
    padding: 22px;
    gap: 14px;
  }
  
  .ba-search-divider {
    display: none;
  }

  .ba-search-input-group,
  .ba-search-select-group {
    width: 100%;
    background: var(--ba-slate-100);
    border-radius: var(--ba-radius-sm);
    padding: 6px 16px;
  }

  .ba-search-pill .btn-submit-search {
    width: 100%;
    justify-content: center;
    border-radius: var(--ba-radius-sm);
  }
}

/* Trust Bar */
.ba-trust-strip {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ba-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 18px;
  border-radius: var(--ba-radius-pill);
}

/* Section Padding */
.ba-section {
  padding-top: clamp(65px, 8vw, 120px);
  padding-bottom: clamp(65px, 8vw, 120px);
  width: 100%;
  box-sizing: border-box;
}

/* Side-by-Side Visual Split Card */
.ba-split-visual-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
  margin-top: 40px;
  width: 100%;
}

@media (max-width: 900px) {
  .ba-split-visual-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.ba-split-visual-image {
  position: relative;
  border-radius: var(--ba-radius-md);
  overflow: hidden;
  box-shadow: var(--ba-shadow-card);
  height: 380px;
  width: 100%;
}

.ba-split-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-split-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(3, 10, 20, 0.9);
  border: 1px solid var(--ba-glass-border);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--ba-radius-sm);
  font-weight: 800;
  font-size: 14px;
}

/* Visual Vessel Category Grid */
.ba-vessel-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 45px;
  width: 100%;
}

@media (max-width: 1024px) {
  .ba-vessel-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ba-vessel-categories-grid {
    grid-template-columns: 1fr;
  }
}

.ba-vessel-card {
  position: relative;
  border-radius: var(--ba-radius-md);
  overflow: hidden;
  height: 320px;
  width: 100%;
  box-shadow: var(--ba-shadow-card);
  transition: all 0.35s ease;
  border: 1px solid var(--ba-slate-200);
}

.ba-vessel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ba-vessel-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 20, 0.1) 0%, rgba(3, 10, 20, 0.92) 100%);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
}

.ba-vessel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 210, 255, 0.3);
}

.ba-vessel-card:hover img {
  transform: scale(1.08);
}

.ba-vessel-card-overlay h4 {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 6px 0;
  color: #ffffff;
}

.ba-vessel-card-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* Full Width Visual Banner */
.ba-full-image-banner {
  position: relative;
  width: 100%;
  min-height: 440px;
  border-radius: var(--ba-radius-lg);
  overflow: hidden;
  margin: 45px 0;
  display: flex;
  align-items: center;
  box-shadow: var(--ba-shadow-float);
}

.ba-full-image-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ba-full-image-banner-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 10, 20, 0.96) 0%, rgba(3, 10, 20, 0.84) 55%, rgba(3, 10, 20, 0.4) 100%);
  padding: clamp(36px, 5vw, 70px);
  width: 100%;
  color: #ffffff;
}

/* Cards & Components */
.ba-card,
.ba-feature-card,
.ba-testimonial-card,
.ba-price-card {
  background: #ffffff;
  border: 1px solid var(--ba-slate-200);
  border-radius: var(--ba-radius-md);
  padding: 36px;
  box-shadow: var(--ba-shadow-card);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.ba-card:hover,
.ba-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.4);
}

.ba-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.16), rgba(0, 102, 255, 0.1));
  border-radius: var(--ba-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ba-cyan-600);
  margin-bottom: 20px;
  border: 1px solid rgba(0, 210, 255, 0.25);
  font-size: 24px;
}

/* Sample Report Interactive Section */
.ba-sample-report-section {
  background: var(--ba-navy-900);
  color: #ffffff;
  border-radius: var(--ba-radius-lg);
  padding: clamp(35px, 5vw, 60px);
  border: 1px solid var(--ba-glass-border);
  box-shadow: var(--ba-shadow-float);
  margin: 40px 0;
  width: 100%;
  box-sizing: border-box;
}

.ba-tabs-nav {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ba-tab-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  padding: 13px 26px;
  border-radius: var(--ba-radius-pill);
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.ba-tab-btn.active {
  background: linear-gradient(135deg, var(--ba-cyan-500), #0066ff);
  color: #ffffff;
  border-color: transparent;
}

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

.ba-tab-panel.active {
  display: block;
}

.ba-report-preview-card {
  background: rgba(13, 32, 60, 0.96);
  border: 1px solid var(--ba-glass-border);
  border-radius: var(--ba-radius-md);
  padding: 32px;
}

.ba-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ba-status-badge-clean {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid var(--ba-emerald-500);
  color: var(--ba-emerald-400);
  font-weight: 900;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: var(--ba-radius-pill);
}

.ba-report-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.ba-report-detail-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--ba-radius-sm);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ba-report-detail-item label {
  font-size: 12px;
  color: var(--ba-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
}

.ba-report-detail-item span {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

/* Pricing Grid */
.ba-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 45px;
  width: 100%;
}

@media (max-width: 960px) {
  .ba-pricing-grid {
    grid-template-columns: 1fr;
  }
}

.ba-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ba-price-card.popular {
  border: 2px solid var(--ba-cyan-500);
  box-shadow: 0 30px 70px -10px rgba(0, 210, 255, 0.3);
}

.ba-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ba-cyan-500), #0066ff);
  color: #ffffff;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: var(--ba-radius-pill);
}

.ba-price-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--ba-navy-950);
  margin: 16px 0;
  line-height: 1;
}

.ba-price-amount span {
  font-size: 16px;
  color: var(--ba-slate-600);
  font-weight: 700;
}

.ba-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.ba-check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--ba-slate-700);
  font-size: 15px;
}

.ba-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.16);
  color: var(--ba-emerald-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* Steps Grid */
.ba-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 45px;
  width: 100%;
}

@media (max-width: 768px) {
  .ba-steps-grid {
    grid-template-columns: 1fr;
  }
}

.ba-step-card {
  background: #ffffff;
  border: 1px solid var(--ba-slate-200);
  border-radius: var(--ba-radius-md);
  padding: 34px;
  position: relative;
  box-shadow: var(--ba-shadow-card);
  width: 100%;
}

.ba-step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--ba-navy-900), var(--ba-navy-700));
  color: var(--ba-cyan-400);
  font-weight: 900;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Live Ticker Feed */
.ba-live-ticker-wrap {
  background: rgba(3, 10, 20, 0.97);
  border-top: 1px solid var(--ba-glass-border);
  border-bottom: 1px solid var(--ba-glass-border);
  padding: 16px 0;
  color: #ffffff;
  overflow: hidden;
  width: 100%;
}

.ba-live-ticker {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: scroll-left 35s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ba-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

/* Testimonial Grid */
.ba-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 45px;
  width: 100%;
}

@media (max-width: 900px) {
  .ba-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.ba-testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.ba-testimonial-stars {
  color: var(--ba-amber-500);
  font-size: 18px;
  margin-bottom: 14px;
}

.ba-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--ba-slate-200);
}

.ba-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* Form Styling */
.ba-form-card {
  background: #ffffff;
  border: 1px solid var(--ba-slate-200);
  border-radius: var(--ba-radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--ba-shadow-card);
  width: 100%;
  box-sizing: border-box;
}

.ba-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .ba-form-grid {
    grid-template-columns: 1fr;
  }
}

.ba-form-card label {
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: var(--ba-navy-950);
  margin-bottom: 6px;
}

.ba-input,
.ba-select,
.ba-textarea {
  width: 100%;
  background: var(--ba-slate-50);
  border: 1px solid var(--ba-slate-300);
  border-radius: var(--ba-radius-sm);
  padding: 16px 18px;
  font-family: var(--ba-font-sans);
  font-size: 16px;
  color: var(--ba-navy-950);
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.ba-input:focus,
.ba-select:focus,
.ba-textarea:focus {
  border-color: var(--ba-cyan-500);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.16);
}

/* Footer */
.ba-site-footer {
  background: var(--ba-navy-950);
  color: #ffffff;
  border-top: 1px solid var(--ba-glass-border);
  padding-top: 90px;
  padding-bottom: 40px;
  width: 100%;
}

.ba-site-footer h3,
.ba-site-footer h4 {
  color: #ffffff !important;
  font-weight: 900;
}

.ba-site-footer a {
  color: rgba(255, 255, 255, 0.78) !important;
}

.ba-site-footer a:hover {
  color: var(--ba-cyan-400) !important;
}

.ba-payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.ba-payment-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .ba-site-logo {
    height: 40px;
    max-width: 165px;
  }
  .ba-footer-logo {
    height: 38px;
    max-width: 155px;
  }
}
