/* ----------------------------------------------------
   GLOBAL DESIGN SYSTEM & CSS VARIABLE THEMING
   ---------------------------------------------------- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Default Theme: Bright, Clean Light Theme matching the BSS logo colors */
  --bg-primary: #f3faf8;
  --bg-canvas: #f3faf8;
  --text-primary: #0f2b5c;
  /* Deep navy blue from the logo */
  --text-secondary: #4b5563;
  /* Medium grey text */

  --accent-cyan: #0290E1;
  /* Vibrant Electric Blue */
  --accent-purple: #FFB400;
  /* Vibrant Gold */
  --accent-purple-glow: rgba(255, 180, 0, 0.3);
  --accent-green: #00D2FF;
  /* Fresh Neon Cyan */
  --accent-orange: #FFB400;

  /* Transparent Light-themed Cards & Navs */
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(2, 144, 225, 0.16);
  /* Electric blue tint border */
  --glass-shadow: rgba(15, 43, 92, 0.05);
  /* navy tint shadow */
  --glass-highlight: rgba(255, 255, 255, 0.6);

  --nav-bg: rgba(243, 250, 248, 0.85);
  --nav-border: rgba(2, 144, 225, 0.08);
  --nav-bottom-line: rgba(2, 144, 225, 0.12);

  --gradient-primary: linear-gradient(135deg, #0290E1 0%, #00D2FF 100%);
  --gradient-text: linear-gradient(135deg, #0290E1 0%, #00B4D8 100%);
  --gradient-gold: linear-gradient(135deg, #FF7B00 0%, #FFC800 100%);
  --gradient-cta: linear-gradient(135deg, rgba(2, 144, 225, 0.08) 0%, rgba(0, 210, 255, 0.06) 55%, rgba(255, 180, 0, 0.04) 100%);

  --card-hover-shadow: 0 12px 36px rgba(2, 144, 225, 0.1);
  --phone-border: rgba(15, 43, 92, 0.14);
  /* Soft border for phone mockup */
  --phone-bg: #ffffff;
  --phone-screen-text: #0f2b5c;
  --phone-inner-card: rgba(2, 144, 225, 0.04);
}

/* Dark Theme Toggle Styles */
[data-theme="dark"] {
  --bg-primary: #070b1a;
  --bg-canvas: #070b1a;
  --text-primary: #f0f6ff;
  --text-secondary: #7ea6d0;

  /* Premium neon accents */
  --accent-cyan: #38b6ff;
  --accent-purple: #FFB400;
  --accent-purple-glow: rgba(255, 180, 0, 0.5);
  --accent-green: #00e5ff;
  --accent-orange: #FFB400;

  /* Deep navy glass cards */
  --glass-bg: rgba(8, 16, 45, 0.82);
  --glass-border: rgba(56, 182, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.5);
  --glass-highlight: rgba(255, 255, 255, 0.06);

  --nav-bg: rgba(7, 11, 26, 0.95);
  --nav-border: rgba(56, 182, 255, 0.1);
  --nav-bottom-line: rgba(56, 182, 255, 0.15);

  --gradient-primary: linear-gradient(135deg, #0290E1 0%, #38b6ff 100%);
  --gradient-text: linear-gradient(135deg, #38b6ff 0%, #00e5ff 100%);
  --gradient-gold: linear-gradient(135deg, #FF7B00 0%, #FFC800 100%);
  --gradient-cta: linear-gradient(135deg, rgba(56, 182, 255, 0.1) 0%, rgba(255, 180, 0, 0.08) 100%);

  --card-hover-shadow: 0 16px 48px rgba(56, 182, 255, 0.2);
  --phone-border: rgba(56, 182, 255, 0.4);
  --phone-bg: #0a1535;
  --phone-screen-text: #f0f6ff;
  --phone-inner-card: rgba(56, 182, 255, 0.07);
}

/* ----------------------------------------------------
   BASE RESETS & DEFAULTS
   ---------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: 68px;
  /* Offset for header sticky overlay */
}

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, #e5f6f3 0%, #fffcf5 60%, #fff8ec 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] body {
  background: radial-gradient(ellipse at 20% 20%, rgba(14, 30, 80, 0.9) 0%, #070b1a 50%, #050810 100%);
}

[data-theme="dark"] html {
  background: #070b1a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-purple);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* ----------------------------------------------------
   ANIMATION KEYFRAMES
   ---------------------------------------------------- */
@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

@keyframes lineGlowFlow {
  to {
    stroke-dashoffset: -20;
  }
}

/* ----------------------------------------------------
   REUSABLE LAYOUTS & COMPONENT CLASSES
   ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism clean styles */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 6px 20px 0 var(--glass-shadow);
  transition: background 0.4s ease, border 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 10px 30px 0 var(--glass-shadow), var(--card-hover-shadow);
}

.btn-gradient {
  background: var(--gradient-primary);
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(2, 144, 225, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(2, 144, 225, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--accent-cyan);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.btn-ghost:hover {
  background: var(--gradient-primary);
  color: #ffffff !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 144, 225, 0.3);
}

/* CTA button color variants */
.cta-primary {
  background: #0290E1;
  color: #ffffff;
  border: none;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.2s ease;
}
.cta-primary:hover {
  background: #0279c5;
  transform: translateY(-1.5px);
}

.cta-secondary {
  background: #FFDA83;
  color: #212529;
  border: none;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.2s ease;
}
.cta-secondary:hover {
  background: #e6c270;
  transform: translateY(-1.5px);
}

.cta-accent {
  background: #FFB400;
  color: #212529;
  border: none;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.2s ease;
}
.cta-accent:hover {
  background: #e09e00;
  transform: translateY(-1.5px);
}

/* Gradient text utility */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 28px auto;
  text-align: center;
  font-size: 1rem;
}

/* Intersection Observer Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------
   NAVBAR STYLING & OVERFLOW PREVENTION
   ---------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  /* Reduced height for vertical centering */
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--nav-bottom-line);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar-scrolled {
  background: var(--glass-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 1px 0 var(--nav-bottom-line);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  overflow: visible;
  /* Prevent clipping of button borders/shadows */
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
  /* Keep logo size fixed */
  height: 38px;
}

.logo-square {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.logo-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  height: 38px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtext {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  margin-left: 3px;
  animation: pulseDot 2s infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 38px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  /* Equal top/bottom padding for vertical centering */
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s ease;
}

/* Gradient nav link variants */



.nav-link:hover,
.nav-link.active {
  color: var(--accent-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  /* Use modern gradient for the line */
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Ensure buttons fit perfectly in navbar */
.navbar .btn-gradient,
.navbar .btn-ghost {
  height: 34px !important;
  padding: 0 18px !important;
  border-radius: 17px !important;
  font-size: 0.85rem;
  box-sizing: border-box !important;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  border-color: var(--accent-cyan);
  transform: scale(1.04);
}

/* Hamburger button */
.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0;
  margin: 0;
}

.menu-toggle-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Sidebar Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: 43px;
  left: 0;
  width: 100%;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 90;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mobile-menu-drawer.open {
  transform: translateY(0);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.06);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

/* ----------------------------------------------------
   HERO SECTION STYLING
   ---------------------------------------------------- */
.hero-section {
  padding: 72px 0 28px 0;
  position: relative;
  z-index: 5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: 30px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.hero-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -1.2px;
}

.hero-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Right: Phone Simulation */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.phone-mockup {
  width: 220px;
  height: 440px;
  border: 6px solid var(--phone-border);
  border-radius: 34px;
  background: var(--phone-bg);
  box-shadow: 0 15px 45px -10px rgba(37, 99, 235, 0.08), 0 0 25px rgba(139, 92, 246, 0.08);
  position: relative;
  overflow: hidden;
  color: var(--phone-screen-text);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.phone-notch {
  width: 80px;
  height: 14px;
  background-color: var(--phone-border);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-header {
  padding: 16px 12px 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.phone-battery {
  display: flex;
  align-items: center;
  gap: 3px;
}

.phone-battery-bar {
  width: 12px;
  height: 6px;
  border: 1px solid var(--text-secondary);
  border-radius: 1px;
  position: relative;
}

.phone-battery-bar::after {
  content: '';
  position: absolute;
  top: 0.5px;
  right: 0.5px;
  bottom: 0.5px;
  left: 0.5px;
  background-color: var(--accent-green);
}

.phone-body {
  padding: 0 12px 12px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: hidden;
}

.phone-welcome {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.phone-wallet {
  background: var(--phone-inner-card);
  border-radius: 10px;
  padding: 8px;
  border: 1px solid rgba(139, 92, 246, 0.08);
}

.phone-wallet-label {
  font-size: 0.55rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.phone-wallet-balance {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin: 1px 0;
}

.phone-chart {
  background: var(--phone-inner-card);
  border-radius: 10px;
  padding: 6px;
  border: 1px solid rgba(139, 92, 246, 0.08);
}

.phone-chart-title {
  font-size: 0.52rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

.phone-chart-pct {
  color: var(--accent-green);
  font-weight: 700;
}

.phone-chart-tooltip {
    position: absolute;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 0.55rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    pointer-events: none;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.phone-chart-tooltip.show {
    opacity: 1;
}

.profit-card {
  position: absolute;
  background: var(--phone-inner-card);
  color: var(--text-primary);
  font-size: 0.55rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  pointer-events: none;
  transform: translateX(-50%);
  z-index: 11;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.profit-card.show {
  opacity: 1;
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.phone-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  background: var(--phone-inner-card);
  transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-action-btn:hover {
  transform: translateY(-2px);
}
.phone-action-btn:hover .phone-action-icon {
  background: var(--bg-primary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.phone-action-btn:hover .phone-action-label {
  color: var(--accent-cyan);
}

.phone-action-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--phone-inner-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 1px solid rgba(139, 92, 246, 0.08);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}



.phone-action-label {
  font-size: 0.5rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.phone-txs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-tx-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 6px;
  font-size: 0.5rem;
}

.phone-tx-desc {
  font-weight: 600;
}

.phone-tx-comm {
  color: var(--accent-green);
  font-weight: 700;
}

/* Floating overlay cards around phone simulation */
.hero-fc {
  position: absolute;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
  animation: floatAnimation 5s ease-in-out infinite;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bullet-glow-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
}

.bullet-glow-orange {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  box-shadow: 0 0 6px var(--accent-orange);
}

.hero-fc-1 {
  top: 6%;
  left: 0%;
  animation-delay: 0s;
}

.hero-fc-2 {
  top: 22%;
  right: 4%;
  animation-delay: 0.6s;
}

.hero-fc-3 {
  top: 40%;
  left: -6%;
  animation-delay: 1.2s;
}

.hero-fc-4 {
  top: 58%;
  right: 0%;
  animation-delay: 1.8s;
}

.hero-fc-5 {
  top: 76%;
  left: -2%;
  animation-delay: 2.4s;
}

.hero-fc-6 {
  top: 88%;
  right: 6%;
  animation-delay: 3s;
}

/* ----------------------------------------------------
   STATS BAR STYLING
   ---------------------------------------------------- */
.stats-bar-section {
  position: relative;
  z-index: 10;
  margin-top: -15px;
  margin-bottom: 25px;
  /* Compact margin */
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px 0;
}

.stat-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--glass-border);
}

.stat-col:last-child {
  border-right: none;
}

.stat-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  box-shadow: 0 4px 10px rgba(6, 182, 212, 0.2);
}

.stat-emoji-icon {
  font-size: 1.1rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ----------------------------------------------------
   ABOUT SECTION STYLING
   ---------------------------------------------------- */
.about-section {
  padding: 35px 0;
  position: relative;
  z-index: 5;
}

.about-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 32px;
}

.about-left {
  padding: 24px;
}

.about-subtitle {
  color: var(--accent-cyan);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-heading {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.achievement-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-left: 4px solid var(--accent-cyan) !important;
}

.achievement-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.1);
  border: 1.5px solid rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  flex-shrink: 0;
}

.achievement-info h3 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.achievement-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ----------------------------------------------------
   SERVICES SECTION STYLING
   ---------------------------------------------------- */
.services-section {
  padding: 40px 0 36px 0;
  position: relative;
  z-index: 5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(139, 92, 246, 0.08);
  border: 1.5px solid rgba(139, 92, 246, 0.15);
}

.service-name {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-link {
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.service-link .arrow {
  transition: transform 0.2s ease;
}

.service-link:hover .arrow {
  transform: translateX(3px);
}

/* ----------------------------------------------------
   BENEFITS SECTION STYLING (NEW SECTION)
   ---------------------------------------------------- */
/* ----------------------------------------------------
   BENEFITS SECTION — PREMIUM REDESIGN
   ---------------------------------------------------- */
.benefits-section {
  padding: 50px 0 40px 0;
  position: relative;
  z-index: 5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.benefit-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
}

/* Glowing top accent line on each card */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

/* Subtle shimmer sweep on hover */
.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 144, 225, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(2, 144, 225, 0.12), 0 0 0 1px rgba(56, 182, 255, 0.15);
}

.benefit-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(2, 144, 225, 0.15) 0%, rgba(0, 210, 255, 0.08) 100%);
  border: 1px solid rgba(2, 144, 225, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(2, 144, 225, 0.25);
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(2, 144, 225, 0.1);
  border: 1px solid rgba(2, 144, 225, 0.18);
  margin-bottom: 14px;
  color: var(--accent-cyan);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.benefit-title {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
  line-height: 1.3;
}

.benefit-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ----------------------------------------------------
   COMMISSION CALCULATOR SECTION (NEW SECTION)
   ---------------------------------------------------- */
.calculator-section {
  padding: 35px 0;
  position: relative;
  z-index: 5;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 28px;
  margin-top: 32px;
}

.calculator-sliders {
  padding: 28px;
}

.calc-slider-group {
  margin-bottom: 24px;
}

.calc-slider-group:last-child {
  margin-bottom: 0;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.slider-value {
  color: var(--accent-purple);
  font-weight: 800;
}

.calc-range-slider {
  width: 100%;
  height: 5px;
  background: var(--glass-border);
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(6, 182, 212, 0.3);
  transition: transform 0.1s ease;
}

.calc-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.calculator-results {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.results-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.result-row span:last-child {
  color: var(--text-primary);
}

.monthly-sum-box {
  margin-top: 24px;
  padding: 20px;
  background: var(--phone-inner-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-align: center;
}

.monthly-sum-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-top: 4px;
  letter-spacing: -0.5px;
}

/* ----------------------------------------------------
   FEATURES SECTION STYLING
   ---------------------------------------------------- */
.features-section {
  padding: 40px 0 36px 0;
  position: relative;
  z-index: 5;
}

.features-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 32px;
}

.features-showcase {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-stat-box {
  background: var(--phone-inner-card);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(139, 92, 246, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.showcase-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.showcase-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
}

.showcase-badge {
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  font-size: 0.65rem;
  font-weight: 700;
}

.showcase-main-val {
  font-size: 2rem;
  color: var(--accent-cyan);
  letter-spacing: -0.5px;
}

.showcase-ticker-container {
  height: 90px;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.5s ease-in-out;
}

.ticker-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem;
}

.ticker-left-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-green);
}

.ticker-commission {
  font-weight: 700;
  color: var(--accent-green);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
}

.feature-item:hover {
  background: rgba(139, 92, 246, 0.04);
}

.feature-pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.05rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ----------------------------------------------------
   HOW IT WORKS SECTION STYLING
   ---------------------------------------------------- */
.how-it-works-section {
  padding: 40px 0 36px 0;
  position: relative;
  z-index: 5;
}

.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.steps-connector-svg {
  position: absolute;
  top: 38px;
  left: 15%;
  width: 70%;
  height: 12px;
  z-index: 1;
  pointer-events: none;
}

.connector-line {
  stroke: var(--glass-border);
  stroke-width: 1.5;
  stroke-dasharray: 5 3;
}

.connector-line-flow {
  stroke: var(--accent-cyan);
  stroke-width: 1.5;
  stroke-dasharray: 5 3;
  animation: lineGlowFlow 0.8s linear infinite;
}

.step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.25);
  position: relative;
  margin-bottom: 16px;
}

.step-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
}

.step-card {
  width: 100%;
  padding: 20px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ----------------------------------------------------
   TESTIMONIALS SECTION STYLING
   ---------------------------------------------------- */
.testimonials-section {
  padding: 35px 0;
  position: relative;
  z-index: 5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.star-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #fbbf24;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--glass-border);
  padding-top: 14px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(6, 182, 212, 0.2);
}

.profile-info h4 {
  font-size: 0.85rem;
  margin-bottom: 1px;
}

.profile-info p {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.testimonial-badge {
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.12);
  color: var(--accent-purple);
  font-size: 0.65rem;
  font-weight: 700;
}

/* ----------------------------------------------------
   CTA BANNER STYLING
   ---------------------------------------------------- */
.cta-section {
  padding: 35px 0;
  position: relative;
  z-index: 5;
}

.cta-banner {
  width: 100%;
  background: var(--gradient-cta);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 5;
  max-width: 650px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Specific buttons styles inside CTA */
.cta-action-btn-white {
  background: #ffffff;
  color: #04051a !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cta-action-btn-white:hover {
  background: #f1f5f9;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cta-action-btn-ghost {
  border-color: rgba(4, 5, 26, 0.15);
  color: var(--text-primary);
}

/* Dark mode overrides for CTA buttons */
[data-theme="dark"] .cta-action-btn-white {
  background: #ffffff;
  color: #04051a !important;
}

[data-theme="dark"] .cta-action-btn-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* ----------------------------------------------------
   FOOTER STYLING
   ---------------------------------------------------- */
.footer-section {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--nav-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 0 20px 0;
}

.footer-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 28% 18% 18% 36%;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 260px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.social-btn:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-1.5px);
  color: var(--accent-cyan);
}

.footer-col-title {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-cyan);
  padding-left: 3px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-info {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form {
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 360px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  outline: none;
  font-size: 0.85rem;
  transition: border-color 0.2s ease;
}

.newsletter-input:focus {
  border-color: var(--accent-cyan);
}

.newsletter-btn {
  padding: 10px 18px;
  border-radius: 50px;
  border: none;
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.82rem;
  transition: transform 0.2s ease;
}

.newsletter-btn:hover {
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.rbi-disclaimer {
  font-size: 0.7rem;
  opacity: 0.8;
  line-height: 1.35;
  max-width: 800px;
  margin: 0 auto;
}

/* ----------------------------------------------------
   RESPONSIVE LAYOUT MEDIA QUERIES
   ---------------------------------------------------- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 48% 52%;
  }
}

/* Tablet viewports (768px - 1024px) */
@media (max-width: 1024px) {

  .nav-links,
  .nav-btn-login,
  .nav-btn-cta {
    display: none;
    /* Hide desktop elements and show drawer */
  }

  .menu-toggle-btn {
    display: flex;
  }

  .mobile-menu-drawer {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 100%;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    align-items: center;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-right {
    display: none;
    /* Hide bulky phone simulator visual on tablets */
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-col {
    border-right: none;
  }

  .stat-col:nth-child(odd) {
    border-right: 1px solid var(--glass-border);
  }

  .about-grid {
    grid-template-columns: 100%;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-grid {
    grid-template-columns: 100%;
  }

  .features-grid {
    grid-template-columns: 100%;
  }

  .steps-container {
    grid-template-columns: 100%;
    gap: 32px;
  }

  .steps-connector-svg {
    display: none;
  }

  .step-node:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 50%;
    width: 1.5px;
    height: 32px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
    z-index: 1;
  }

  .testimonials-grid {
    grid-template-columns: 100%;
  }

  .footer-grid {
    grid-template-columns: 50% 50%;
  }
}

/* Mobile viewports (< 768px) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    padding: 16px 12px;
  }

  .stat-col {
    border-right: none;
    justify-content: flex-start;
    padding-left: 8px;
  }

  /* Custom order: Retailers (1st) & Services (3rd) on Row 1, Volume (2nd) & Uptime (4th) on Row 2 */
  .stats-bar .stat-col:nth-child(1) { order: 1; }
  .stats-bar .stat-col:nth-child(3) { order: 2; }
  .stats-bar .stat-col:nth-child(2) { order: 3; }
  .stats-bar .stat-col:nth-child(4) { order: 4; }

  /* Centered container for floating cards to prevent viewport overflow */
  .hero-floating-cards {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 320px;
  }
  /* Floating cards positioning on mobile to prevent overlapping */
  .hero-fc {
    font-size: 0.58rem;
    padding: 4px 6px;
    z-index: 15;
  }
  .hero-fc-1 { left: -15px; top: 12%; }
  .hero-fc-2 { right: -15px; top: 25%; }
  .hero-fc-3 { left: -25px; top: 40%; }
  .hero-fc-4 { right: -20px; top: 55%; }
  .hero-fc-5 { left: -20px; top: 72%; }
  .hero-fc-6 { right: -15px; top: 85%; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .services-grid .service-card {
    padding: 14px;
    border-radius: 12px;
  }

  .services-grid .service-name {
    font-size: 0.92rem;
    margin-bottom: 6px;
  }

  .services-grid .service-desc {
    font-size: 0.76rem;
    margin-bottom: 10px;
    line-height: 1.45;
    color: var(--text-primary);
    opacity: 0.95;
    font-weight: 500;
  }

  .services-grid .service-icon-wrapper {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .services-grid .service-link {
    font-size: 0.74rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .benefits-grid .benefit-card {
    padding: 14px;
    border-radius: 12px;
  }

  .benefits-grid .benefit-title {
    font-size: 0.92rem;
    margin-bottom: 6px;
    font-weight: 800;
  }

  .benefits-grid .benefit-desc {
    font-size: 0.74rem;
    line-height: 1.4;
    color: var(--text-primary);
    opacity: 0.95;
    font-weight: 500;
  }

  .benefits-grid .benefit-icon-wrap {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .benefits-grid .benefit-badge {
    padding: 2px 6px;
    font-size: 0.62rem;
    margin-bottom: 8px;
  }

  .calculator-sliders,
  .calculator-results {
    padding: 20px;
  }

  .monthly-sum-value {
    font-size: 1.8rem;
  }

  .cta-banner {
    padding: 28px 16px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-btns button {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 100%;
    gap: 24px;
  }
}

/* ----------------------------------------------------
   INTERACTIVE PHONE CLONE & HERO TYPOGRAPHY UPDATES
   ---------------------------------------------------- */

.hero-title-main {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -1.2px;
  color: var(--text-primary);
  line-height: 1.15;
}

/* Home Screen Launcher (Light Background) */
.phone-homescreen {
  flex: 1;
  padding: 14px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to bottom, #f0f7f4 0%, #fffcf5 100%);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.phone-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 8px;
  justify-items: center;
  align-content: center;
  margin-top: 10px;
}

.phone-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.phone-app-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 8px rgba(15, 43, 92, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.phone-app-label {
  font-size: 0.48rem;
  font-weight: 600;
  color: #0f2b5c;
  /* Navy Blue app label */
  text-align: center;
  white-space: nowrap;
}

/* BetaSource App Custom styling */
.betasource-app .logo-app-icon {
  box-shadow: 0 0 10px rgba(44, 196, 167, 0.4);
  animation: appPulse 2s infinite ease-in-out;
}

.app-tapped {
  animation: appTapScale 0.2s ease-out;
}

@keyframes appPulse {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(44, 196, 167, 0.4);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 16px rgba(44, 196, 167, 0.7);
    transform: scale(1.04);
  }
}

@keyframes appTapScale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.85);
  }

  100% {
    transform: scale(1);
  }
}

/* Virtual tap cursor */
.virtual-cursor {
  width: 20px;
  height: 20px;
  background: rgba(44, 196, 167, 0.35);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  position: absolute;
  z-index: 100;
  pointer-events: none;
  transition: left 1.1s cubic-bezier(0.25, 1, 0.5, 1), top 1.1s cubic-bezier(0.25, 1, 0.5, 1), transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 0 12px var(--accent-cyan);
  transform: translate(-50%, -50%);
}

.virtual-cursor.tapped {
  transform: translate(-50%, -50%) scale(0.65);
  background: rgba(44, 196, 167, 0.8);
  box-shadow: 0 0 24px 6px rgba(44, 196, 167, 0.9);
}

/* Splash Screen (Light Background) */
.phone-splashscreen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #f0f7f4 0%, #fffcf5 100%);
  color: #0f2b5c;
  padding: 20px;
  animation: phoneFadeIn 0.3s ease-out;
}

.splash-spinner {
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(15, 43, 92, 0.1);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  margin-top: 16px;
  animation: spin 0.8s linear infinite;
}

@keyframes phoneFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Commissions List Scroll Animation */
.phone-txs-container {
  height: 78px;
  /* Height of exactly two items plus gap */
  overflow: hidden;
  position: relative;
}

.phone-txs-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-txs-list.sliding {
  transform: translateY(-38px);
  /* Height of one item (34px) + gap (4px) */
}

.phone-tx-item {
  height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px;
  background: rgba(44, 196, 167, 0.05);
  border-radius: 6px;
  font-size: 0.5rem;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Tooltip on graph hover */
.phone-chart-tooltip {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 43, 92, 0.95);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.48rem;
  font-weight: 700;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  animation: tooltipFade 0.25s ease-out;
}

@keyframes tooltipFade {
  from {
    opacity: 0;
    transform: translate(-50%, 4px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Service Actions Hover Styles */
.phone-action-btn {
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-action-btn:hover {
  transform: translateY(-2px);
}

.phone-action-btn:hover .phone-action-icon {
  transform: scale(1.1);
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(44, 196, 167, 0.25);
  border-color: transparent !important;
}

.phone-action-icon {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-dashboard-screen {
  animation: phoneFadeIn 0.4s ease-out;
}

/* Wrapper to hold floating cards and fade them in only when active */
.hero-floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.hero-floating-cards.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive updates for tablets & mobile centering */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 100%;
    text-align: center;
    gap: 30px;
  }

  .hero-left {
    align-items: center;
  }

  .hero-subtext {
    max-width: 600px;
  }

  .hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .hero-right {
    transform: scale(0.8);
    transform-origin: center center;
    margin: -25px 0;
    height: 380px;
    /* Compress height to offset scale spacing */
  }

  /* Centered container for floating cards on small mobile */
  .hero-floating-cards {
    max-width: 280px;
  }

  /* Floating cards positioning on small mobile screens */
  .hero-fc {
    font-size: 0.54rem;
    padding: 3px 5px;
  }
  .hero-fc-1 { left: -20px; }
  .hero-fc-2 { right: -15px; }
  .hero-fc-3 { left: -25px; }
  .hero-fc-4 { right: -20px; }
  .hero-fc-5 { left: -20px; }
  .hero-fc-6 { right: -15px; }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtext {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}
/* ==================================================
   CONTACT PAGE STYLES
   ================================================== */
.contact-hero { padding: 110px 0 48px; text-align: center; }
.contact-hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 18px; border-radius: 100px; background: var(--glass-bg); border: 1px solid var(--glass-border); font-size: 0.82rem; font-weight: 600; color: var(--accent-cyan); margin-bottom: 18px; }
.contact-hero-title { font-size: 2.8rem; line-height: 1.15; letter-spacing: -1px; margin-bottom: 14px; color: var(--text-primary); }
.contact-hero-sub { max-width: 580px; margin: 0 auto; color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }
.contact-cards-section { padding: 0 0 40px; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-info-card { padding: 28px 22px; text-align: center; }
.contact-info-card:hover { transform: translateY(-5px); }
.contact-card-icon-wrap { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.contact-card-title { font-size: 1rem; margin-bottom: 8px; }
.contact-card-line { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.contact-form-section { padding: 0 0 80px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.contact-form-wrap { padding: 36px 32px; }
.contact-form-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--glass-border); }
.contact-success-banner { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #16a34a; border-radius: 10px; padding: 12px 16px; font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-label { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.contact-input { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 10px; padding: 11px 14px; font-size: 0.9rem; color: var(--text-primary); font-family: var(--font-body); outline: none; transition: border-color 0.25s ease, box-shadow 0.25s ease; width: 100%; }
.contact-input::placeholder { color: var(--text-secondary); opacity: 0.7; }
.contact-input:focus { border-color: var(--accent-cyan); box-shadow: 0 0 0 3px rgba(14,165,233,0.1); }
.contact-select { cursor: pointer; appearance: none; padding-right: 36px; }
.contact-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.contact-submit-btn { width: 100%; justify-content: center; padding: 13px 24px !important; font-size: 0.95rem; border-radius: 12px !important; margin-top: 4px; }
.contact-right-panel { display: flex; flex-direction: column; gap: 20px; }
.contact-channel-card { padding: 24px 20px; }
.contact-channel-list { display: flex; flex-direction: column; gap: 12px; }
.contact-channel-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--glass-border); background: var(--glass-bg); cursor: pointer; transition: border-color 0.25s, transform 0.2s; text-decoration: none; color: inherit; }
.contact-channel-item:hover { border-color: var(--accent-cyan); transform: translateX(3px); }
.contact-channel-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-channel-name { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.contact-channel-sub { font-size: 0.78rem; color: var(--text-secondary); margin-top: 1px; }
.contact-channel-arrow { margin-left: auto; font-size: 1rem; color: var(--accent-cyan); font-weight: 700; }
.contact-partner-cta { padding: 24px 20px; text-align: center; background: var(--gradient-cta); border: 1px solid var(--glass-border); }
.contact-faq-card { padding: 22px 20px; }
.contact-faq-item { padding: 10px 0; border-bottom: 1px solid var(--glass-border); }
.contact-faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-faq-q { font-size: 0.84rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.contact-faq-a { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }
@media (max-width: 900px) { .contact-cards-grid { grid-template-columns: repeat(2, 1fr); } .contact-form-grid { grid-template-columns: 1fr; } .contact-hero-title { font-size: 2rem; } }
@media (max-width: 580px) { .contact-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .contact-form-row { grid-template-columns: 1fr; } .contact-form-wrap { padding: 22px 16px; } .contact-hero-title { font-size: 1.7rem; } }

.contact-map-card { padding: 22px 20px; }
.contact-map-wrap { height: 220px; border-radius: 10px; overflow: hidden; }

.contact-map-section { padding: 0 0 80px; }
.full-width-map-card { padding: 0; text-align: center; border-radius: 16px; overflow: hidden; }
.full-width-map-card h3 { padding: 24px 24px 16px; }
.full-width-map-wrap { height: 600px; width: 100%; border-radius: 0 0 16px 16px; overflow: hidden; margin-top: 0; }
@media (max-width: 768px) { .full-width-map-wrap { height: 400px; } }
/* AboutBetaSource component styling */

.about-beta-section {
  margin-top: 25px;
  padding: 48px 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 5;
}

.about-beta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.about-beta-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-beta-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(2, 144, 225, 0.08);
  border: 1px solid rgba(2, 144, 225, 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  color: #0290E1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: -5px;
}

.about-beta-title {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: left;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.5px;
}

.about-beta-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

.about-beta-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 8px 0;
}

.about-beta-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-beta-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 144, 225, 0.06);
  border-color: rgba(2, 144, 225, 0.3);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(2, 144, 225, 0.1) 0%, rgba(0, 210, 255, 0.1) 100%);
  border: 1px solid rgba(2, 144, 225, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon {
  font-size: 1.25rem;
}

.feature-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  text-align: left;
}

.feature-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.about-beta-btn {
  align-self: flex-start;
  margin-top: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.about-beta-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.about-beta-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15, 43, 92, 0.06);
  transition: transform 0.4s ease;
}

.about-beta-right:hover .about-beta-image {
  transform: translateY(-4px) scale(1.01);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .about-beta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .about-beta-section {
    padding: 24px 0 12px 0;
  }

  .about-beta-left {
    align-items: center;
    text-align: center;
  }

  .about-beta-badge {
    align-self: center;
  }

  .about-beta-title {
    text-align: center;
    font-size: 2.2rem;
  }

  .about-beta-desc {
    text-align: center;
  }

  .about-beta-btn {
    align-self: center;
  }

  .about-beta-feature-item {
    text-align: left;
  }

  .about-beta-right {
    margin-top: 8px;
  }

  .about-beta-image {
    max-height: 280px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
  }
}
/* PaymentSolutions.css */

.payment-solutions-section {
  margin-top: 30px;
  padding: 48px 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.payment-solutions-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.payment-solutions-left {
  display: flex;
  justify-content: center;
  position: relative;
}

.payment-solutions-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15, 43, 92, 0.06);
  transition: transform 0.4s ease;
}

.payment-solutions-left:hover .payment-solutions-image {
  transform: translateY(-4px) scale(1.01);
}

.payment-solutions-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment-solutions-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(2, 144, 225, 0.08);
  border: 1px solid rgba(2, 144, 225, 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  color: #0290E1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: -5px;
}

.payment-solutions-title {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: left;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.5px;
}

.payment-solutions-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

/* Stats Layout */
.payment-solutions-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0;
}

.payment-solutions-stat-item {
  padding: 16px;
  border-radius: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-align: left;
}

.solutions-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.solutions-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Bullets */
.payment-solutions-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.solutions-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
}

.solutions-bullet p {
  font-size: 0.92rem;
  color: var(--text-primary);
  margin: 0;
  text-align: left;
}

.payment-solutions-btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* Custom Scroll Reveal Animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px) !important;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px) !important;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .payment-solutions-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .payment-solutions-section {
    padding: 50px 0;
  }

  .payment-solutions-right {
    align-items: center;
    text-align: center;
  }

  .payment-solutions-badge {
    align-self: center;
  }

  .payment-solutions-title {
    text-align: center;
    font-size: 2.2rem;
  }

  .payment-solutions-desc {
    text-align: center;
  }

  .payment-solutions-btn {
    align-self: center;
  }

  .solutions-bullet p {
    text-align: left;
  }
}

/* Extra Mobile Spacing & Layout tweaks for small viewports */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-btns button,
  .hero-btns a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .contact-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}
