/* Global Variables */
:root {
  --color-primary: #9de600; /* Neon Green Accent */
  --color-white: #FFFFFF;
  --color-off-white: #080A08;
  --color-gray-soft: rgba(255,255,255,0.1);
  --color-gray-dark: #6B7280;
  --color-charcoal: transparent; /* Dark background matching the image */
  --color-card-bg: #FFFFFF; 
  
  --font-family: 'Outfit', sans-serif;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: #050605; /* Solid deep black */
  color: var(--color-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--color-gray-dark);
  margin-bottom: var(--spacing-md);
  max-width: 65ch;
  font-size: 1.125rem;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-dark {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255,255,255,0.7);
}

.text-center { text-align: center; }
.text-center p {  margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #000000;
}

.btn-primary:hover {
  background-color: #a6f200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(157, 230, 0, 0.3);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-charcoal);
  border: 1px solid var(--color-gray-soft);
}

.btn-secondary:hover {
  background-color: var(--color-off-white);
  border-color: var(--color-gray-dark);
}

.btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  color: #000;
  font-size: 0.8rem;
}
.btn-primary .btn-icon {
  background: rgba(0,0,0,0.1);
}
.btn-secondary .btn-icon {
  background: var(--color-primary);
}

/* Header & Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(15, 21, 28, 1); /* solid dark */
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
  z-index: 2;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 2;
}

.nav-link {
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Form Elements */
input, select, textarea {
  background-color: var(--color-white);
  color: var(--color-charcoal);
  border: 1px solid var(--color-gray-soft);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  margin-bottom: 5px;
  transition: all var(--transition-fast);
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    transform: none;
    width: 100%;
    background: var(--color-charcoal);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

/* Footer */
.site-footer {
  background-color: #070807;
  color: var(--color-white);
  padding: var(--spacing-xl) 0 0;
  border-top: none;
  position: relative;
  z-index: 1;
}

.vignette-fade {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 600px;
  pointer-events: none;
  z-index: -1;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(7, 8, 7, 0.4) 50%, #070807 100%),
    radial-gradient(ellipse at right center, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.footer-bottom-wrapper {
  background: #111111;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.footer-brand h2 {
  color: var(--color-white);
  margin-bottom: var(--spacing-xs);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
}

.footer-links h4 {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* Animation Utils */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes growBar1 { from { transform: scaleY(0); } to { transform: scaleY(0.3); } }
@keyframes growBar2 { from { transform: scaleY(0); } to { transform: scaleY(0.5); } }
@keyframes growBar3 { from { transform: scaleY(0); } to { transform: scaleY(0.75); } }
@keyframes growBar4 { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes growBarA { from { transform: scaleY(0); } to { transform: scaleY(0.4); } }
@keyframes growBarB { from { transform: scaleY(0); } to { transform: scaleY(0.6); } }
@keyframes growBarC { from { transform: scaleY(0); } to { transform: scaleY(0.35); } }
@keyframes growBarD { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes growBarE { from { transform: scaleY(0); } to { transform: scaleY(0.55); } }
@keyframes growBarF { from { transform: scaleY(0); } to { transform: scaleY(0.9); } }

/* Announcement Bar */
.announcement-bar {
  background-color: var(--color-primary);
  color: #000;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 100px;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1001;
}

.site-header.scrolled .announcement-bar {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.announcement-cta {
  background: #000;
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.announcement-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  color: #fff;
}

/* Hand Drawn Circle Animation */
.hand-drawn-circle path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCircle 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes drawCircle {
  0% { stroke-dashoffset: 100; opacity: 0; }
  10% { stroke-dashoffset: 100; opacity: 1; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  80% { stroke-dashoffset: 0; opacity: 1; }
  90% { stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dashoffset: 100; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hand-drawn-circle path {
    animation: none;
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN UTILITIES
   ========================================================================== */

/* Fix horizontal scrolling globally */
html, body {
  font-family: var(--font-family);
  background-color: #050605; /* Solid deep black */
  color: var(--color-white);
  line-height: 1.6;
}




/* Force inline grids to stack on mobile and tablet */
@media (max-width: 992px) {
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  div[style*="grid-template-columns: 1fr 350px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  div[style*="grid-template-columns: 1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Hero Padding */
  section[style*="padding: 12rem 0 8rem"] {
    padding: 8rem 0 4rem !important;
  }
  
  /* General Section Padding */
  .section {
    padding: 4rem 0 !important;
  }

  /* Center align content that stacks */
  .hero-text-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text-area p {
    
    margin-right: auto;
  }
  .hero-text-area .btn-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Push trust bar down to guarantee space below dashboard */
  .trust-bar-section {
    margin-top: 3rem !important;
  }
  
  /* Center trust bar elements on mobile so wrapped items sit in the middle */
  .trust-bar-section .container {
    justify-content: center !important;
  }
  
  /* Typography Scaling */
  h1 { font-size: clamp(2.25rem, 8vw, 3rem) !important; }
  h2 { font-size: clamp(1.75rem, 6vw, 2.5rem) !important; }
  
  div[style*="min-height: 500px;"] {
    min-height: auto !important;
  }
  
  /* Fix absolute positioned floating elements that cause horizontal overflow */
  div[style*="right: -10%"], div[style*="right: -5%"] {
    right: 5% !important;
  }
  
  /* Move Abandonment Alert to lower graph area */
  div[style*="Checkout Abandonment"] {
    top: auto !important;
    bottom: 5% !important;
    right: 5% !important;
    transform: scale(0.8) !important;
    transform-origin: bottom right !important;
  }
  div[style*="left: -10%"], div[style*="left: -5%"] {
    left: 5% !important;
  }

  /* Adjust Dashboard Container on mobile */
  .dashboard-container {
    padding: 1rem !important;
  }
  
  /* Announcement bar */
  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.5rem;
  }
  
  /* Buttons */
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  /* Header nav menu */
  .nav-links {
    top: 70px !important;
    padding: 2rem !important;
  }
}

@media (max-width: 480px) {
  /* Stack Dashboard metrics on very small screens */
  div[style*="grid-template-columns: 1fr 1fr; gap: 1rem;"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Make floating alert smaller */
  div[style*="Checkout Abandonment"] {
    transform: scale(0.65) !important;
    bottom: 2% !important;
  }
  
  /* Graph bars gap */
  div[style*="height: 120px;"] {
    gap: 0.25rem !important;
  }
}

@media (max-width: 768px) { .site-header .btn { width: auto; margin-bottom: 0; } }

@media (max-width: 992px) { .header-right > a { display: none !important; } }

/* ==========================================================================
   PREMIUM GLASSMORPHISM MOBILE NAVIGATION
   ========================================================================== */
.mobile-only-ctas {
    display: none;
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    /* Base Nav Panel */
    nav#nav-links.nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        background: rgba(18, 22, 29, 0.95) !important; /* mostly solid, very slight transparency */
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px);
        display: flex !important;
        flex-direction: column !important;
        padding: 2rem !important;
        gap: 1.5rem !important;
        z-index: 1005;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        clip-path: inset(0 0 100% 0);
        transition: clip-path 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    nav#nav-links.nav-links.active {
        clip-path: inset(0 0 0 0);
    }

    nav#nav-links.nav-links.active {
        right: 0;
    }

    /* Links inside nav */
    nav#nav-links.nav-links .nav-link {
        font-size: 1.5rem;
        font-weight: 500;
        color: white;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    nav#nav-links.nav-links.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Stagger link animations */
    nav#nav-links.nav-links.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    nav#nav-links.nav-links.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
    nav#nav-links.nav-links.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
    nav#nav-links.nav-links.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
    nav#nav-links.nav-links.active .nav-link:nth-child(5) { transition-delay: 0.3s; }

    /* Mobile CTAs */
    .mobile-only-ctas {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: auto;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
    }
    nav#nav-links.nav-links.active .mobile-only-ctas {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-only-ctas .btn {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-only-ctas .btn-secondary {
        background: transparent !important;
        color: white !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
    }
    .mobile-only-ctas .btn-secondary:hover {
        background: rgba(255,255,255,0.05) !important;
    }

    /* Hamburger Toggle Animation into X */
    .mobile-nav-toggle {
        z-index: 1010;
        position: relative;
    }
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
@media (prefers-reduced-motion: reduce) {
    nav#nav-links.nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        background: rgba(18, 22, 29, 0.95) !important; /* mostly solid, very slight transparency */
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px);
        display: flex !important;
        flex-direction: column !important;
        padding: 2rem !important;
        gap: 1.5rem !important;
        z-index: 1005;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        clip-path: inset(0 0 100% 0);
        transition: clip-path 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    nav#nav-links.nav-links.active {
        clip-path: inset(0 0 0 0);
    }

    nav#nav-links.nav-links .nav-link, .mobile-only-ctas {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


}
@media (max-width: 992px) {
    .header-right > a {
        display: none !important;
    }
}

/* Responsive Grid for 4-column layouts */
@media (max-width: 992px) {
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 768px) {
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    .leak-card {
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 768px) {
    /* Force exactly 2 lines on mobile by preventing natural wrap and scaling font to fit */
    .leaking-heading {
        white-space: nowrap !important;
        font-size: 4.8vw !important;
    }
}

@media (max-width: 768px) {
    .growth-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

.footer-copy-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    
}
.footer-copy-btn:hover {
    background: var(--color-primary);
    color: black;
    border-color: var(--color-primary);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 576px) {
    .form-row, .contact-details-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    .contact-form-container {
        order: 2;
    }
    .contact-info-container {
        order: 1;
    }
}

/* ==========================================================================
   MULTI-STEP ONBOARDING FORM
   ========================================================================== */
.ob-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.ob-step.active {
    display: block;
}
.ob-success-state {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeIn 0.5s ease forwards;
}
.ob-success-state.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ob-progress-container {
    margin-bottom: 2rem;
}
.ob-step-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ob-step-num {
    color: rgba(255,255,255,0.3);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.ob-step-num.active {
    color: var(--color-primary);
}
.ob-line {
    height: 2px;
    background: rgba(255,255,255,0.1);
    flex-grow: 1;
}

.ob-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.ob-field-group {
    margin-bottom: 1.5rem;
}
.ob-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 0.95rem;
}
.ob-helper {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.ob-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ob-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(157, 230, 0, 0.1);
}
.ob-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}
.ob-select option {
    color: black;
}
.ob-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}
.has-error .ob-input {
    border-color: #ef4444;
}
.has-error .ob-error {
    display: block;
}

.ob-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Selectable Cards */
.ob-card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ob-card-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

.ob-card-radio, .ob-card-checkbox {
    cursor: pointer;
    display: block;
    position: relative;
}
.ob-card-radio input, .ob-card-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.ob-card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    height: 100%;
}
.ob-card-radio:hover .ob-card-content, .ob-card-checkbox:hover .ob-card-content {
    background: rgba(255,255,255,0.08);
}
.ob-card-radio input:checked + .ob-card-content, .ob-card-checkbox input:checked + .ob-card-content {
    background: rgba(157, 230, 0, 0.1);
    border-color: var(--color-primary);
    color: white;
}

.ob-conditional {
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

.ob-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.ob-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}
.ob-btn-primary {
    background: var(--color-primary);
    color: black;
    margin-left: auto;
}
.ob-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 230, 0, 0.3);
}
.ob-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.ob-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
}
.ob-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 576px) {
    .ob-grid-2, .ob-card-grid-2, .ob-card-grid-3 {
        grid-template-columns: 1fr;
    }
    .ob-card-radio[style*="grid-column"], .ob-card-checkbox[style*="grid-column"] {
        grid-column: 1 !important;
    }
    .contact-form-container {
        padding: 2rem 1.5rem !important;
    }
}



/* Atmospheric Transitions Between Sections */
section {
  position: relative;
  border: none !important;
  /* 
    Layer 1 (Top): Right-side black vignette 
    Layer 2 (Middle): Smooth bottom fade to pure black (#050605) to blend with next section
    Layer 3 (Base): Rich, room-filling dark olive ambient glow (matching reference)
  */
  background: 
    radial-gradient(ellipse at right 80%, rgba(0, 0, 0, 0.6) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 60%, #050605 100%),
    radial-gradient(ellipse at 50% 40%, #16240c 0%, #0a0f06 60%, #050605 100%);
  background-color: #050605;
}

/* We add the explicit deep black shadow and right-vignette ONLY at the bottom INSIDE the section */


/* Ensure content stays above the fade */
section > .container, section > div {
  position: relative;
  z-index: 2;
}



[style*="animation: growBar"] {
    height: 100% !important;
    transform-origin: bottom;
}

/* Force vertical scrollbar to prevent horizontal layout thrashing on Windows */
html {
    overflow-y: scroll;
}

/* Disable scroll anchoring which can cause erratic jumps on complex animated layouts */
html, body {
    overflow-anchor: none;
}

/* Mobile interleave logic for Growth Cards */
.mobile-only-growth-card {
    display: none !important;
}

@media (max-width: 992px) {
    .mobile-only-growth-card {
        display: flex !important;
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .growth-cards-grid {
        display: none !important;
    }
}









/* Bento Grid Section */
.bento-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: 
        "card1 card2 card4"
        "card3 card3 card4";
}

.card-1 { grid-area: card1; }
.card-2 { grid-area: card2; }
.card-3 { grid-area: card3; }
.card-4 { grid-area: card4; }

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "card1 card2"
            "card3 card3"
            "card4 card4";
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "card1"
            "card2"
            "card3"
            "card4";
    }
    .card-3 {
        flex-direction: column;
        gap: 1rem;
    }
    .card-3 .bento-icon {
        margin-bottom: 0;
    }
}

/* Trust Bar Mobile Alignment Fix */
.trust-bar-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 4rem;
}

@media (max-width: 768px) {
    .trust-bar-grid {
        display: grid;
        grid-template-columns:  1fr 1fr;
        gap: 1.5rem 1rem; /* Adjust gap for 2x2 grid */
        justify-content: center;
        width: fit-content;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    justify-content: center;
  }
  
  .footer-bottom .social-links {
    justify-content: center;
  }
}

.calc-input {
    background: #151A22;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    padding: 0.85rem 1rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.calc-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

@media (max-width: 768px) {
    .calc-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}
@media (min-width: 769px) {
    .calc-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}
