/* ==========================================================================
   BGAUSS EV DIGITAL PLATFORM - MAIN LAYOUT & SECTIONS (NEPAL EDITION)
   Sticky Nav, Hero, Showcase, Savings Calculator in NPR, Responsive
   ========================================================================== */

/* --- RESET & BASE STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: transparent;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Video Styles */
.bg-video-loop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.bg-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--video-overlay, rgba(11, 15, 23, 0.75));
  z-index: -1;
  pointer-events: none;
}

/* Background Ambient Dynamic Lighting Glows */
body::before {
  content: '';
  position: fixed;
  top: -250px;
  left: 30%;
  width: 900px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.16) 0%, rgba(255, 126, 95, 0.08) 45%, rgba(0, 0, 0, 0) 75%);
  pointer-events: none;
  z-index: var(--z-negative);
  animation: ambient-float 12s ease-in-out infinite alternate;
}

@keyframes ambient-float {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(40px) scale(1.1);
  }
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
}

h2 {
  font-size: clamp(2rem, 3.5vw, var(--text-4xl));
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, var(--text-2xl));
}

p {
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

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

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

/* Container Utility */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.section-padding {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

/* Scroll Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.is-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger delays for multiple items */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-amber {
  color: var(--color-secondary);
}

/* Section Header Shared Component */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--space-16) auto;
}

.section-header .badge {
  margin-bottom: var(--space-3);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

/* --- 1. STICKY NAVIGATION BAR --- */
.navbar {
  position: fixed;
  top: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1280px;
  height: 72px;
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
  background: var(--glass-bg-primary);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled {
  background: var(--bg-dark-800);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 242, 254, 0.15);
  top: var(--space-2);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.brand-text span {
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Hamburger Toggle Button */
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: var(--text-2xl);
  cursor: pointer;
  padding: var(--space-2);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-dark-800);
  border-left: 1px solid var(--glass-border);
  z-index: var(--z-drawer);
  padding: var(--space-10) var(--space-6);
  transition: right var(--transition-base);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-nav-links .nav-link {
  font-size: var(--text-lg);
  display: block;
}

/* --- 2. HERO SECTION --- */
.hero-section {
  padding-top: 140px;
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-content .live-ticker-pill {
  margin-bottom: var(--space-4);
}

.hero-title {
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero-description {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 550px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero-quick-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--glass-border);
}

.stat-mini-item {
  display: flex;
  flex-direction: column;
}

.stat-mini-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-main);
}

.stat-mini-label {
  font-size: var(--text-xs);
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual Showcase */
.hero-visual-wrapper {
  position: relative;
}

.hero-main-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  transition: box-shadow var(--transition-base);
}

.hero-main-img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform var(--transition-slow);
}

.hero-main-img-card:hover .hero-main-img {
  transform: scale(1.03);
}

/* Floating Specs Badges on Hero */
.floating-badge {
  position: absolute;
  padding: var(--space-3) var(--space-5);
  background: var(--glass-bg-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  z-index: var(--z-card);
}

.floating-badge-top {
  top: var(--space-6);
  right: -20px;
}

.floating-badge-bottom {
  bottom: var(--space-6);
  left: -20px;
  animation-delay: 2s;
}

.floating-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* --- 3. SOCIAL PROOF & STATS COUNTER --- */
.stats-section {
  background: var(--bg-dark-800);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-12) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.stat-card {
  text-align: center;
  padding: var(--space-4);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Partners / Media Bar */
.partners-bar {
  margin-top: var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all var(--transition-base);
  flex-wrap: wrap;
  gap: var(--space-6);
}

.partners-bar:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-logo {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  color: var(--text-subtle);
}

/* --- 4. PRODUCT SHOWCASE SECTION --- */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.model-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.model-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-6);
  background: var(--bg-dark-700);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.model-card,
.feature-card,
.pricing-card,
.timeline-card,
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.model-card:hover,
.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary-glow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.15);
}

.model-card:hover .model-img {
  transform: scale(1.08) rotate(1deg);
}

.model-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.model-price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.model-subtitle {
  font-size: var(--text-sm);
  color: var(--text-subtle);
  margin-bottom: var(--space-6);
}

.model-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  padding: var(--space-4);
  background: transparent;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  border: none;
}

.spec-item {
  text-align: center;
}

.spec-val {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  color: var(--text-main);
}

.spec-lbl {
  font-size: 11px;
  color: var(--text-subtle);
  text-transform: uppercase;
}

.model-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--glass-border);
}

/* --- 5. FEATURES & ENGINEERING INNOVATION --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(255, 126, 95, 0.15) 100%);
  border: 1px solid var(--color-primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: var(--text-2xl);
}

.feature-title {
  font-size: var(--text-xl);
}

/* Highlight Featured Banner Card */
.feature-banner-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  margin-top: var(--space-6);
  background: var(--glass-bg-primary);
  border: 1px solid var(--glass-border-glow);
}

/* --- 6. SAVINGS & RANGE CALCULATOR SECTION --- */
.calculator-card {
  background: var(--bg-dark-800);
  border: 1px solid var(--glass-border-glow);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-12);
  align-items: center;
}

.calculator-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-val-display {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.calculator-results {
  background: var(--glass-bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.result-hero-amount {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary);
  text-shadow: 0 0 25px var(--color-primary-glow);
}

.result-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--glass-border);
}

/* --- 7. VEHICLE SPEC COMPARISON MATRIX --- */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
  background: var(--bg-dark-800);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
}

.comparison-table tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.comparison-feature-title {
  font-weight: var(--font-weight-semibold);
  color: var(--text-main);
}

.highlight-cell {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

/* --- 8. PROCESS / WORKFLOW TIMELINE --- */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  opacity: 0.35;
  z-index: var(--z-negative);
}

.timeline-card {
  text-align: center;
}

.timeline-step-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark-800);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin: 0 auto var(--space-6) auto;
  box-shadow: var(--shadow-glow);
}

/* --- 9. CUSTOMER TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

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

.testimonial-stars {
  color: #F59E0B;
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial-quote {
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-glow);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  border: 1px solid var(--color-primary);
}

.author-info h4 {
  font-size: var(--text-base);
}

.author-info p {
  font-size: var(--text-xs);
}

/* --- 10. PRICING & SUBSIDY SECTION --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.pricing-card.recommended {
  border-color: var(--color-primary);
  box-shadow: 0 0 35px var(--color-primary-glow);
}

.pricing-ribbon {
  position: absolute;
  top: -12px;
  right: var(--space-6);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--bg-dark-900);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: var(--space-6);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--text-main);
  margin-top: var(--space-2);
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.pricing-features-list li i {
  color: var(--color-success);
}

/* --- 11. FAQ ACCORDION --- */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

/* --- 12. FINAL CONVERSION CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.16) 0%, rgba(255, 126, 95, 0.16) 100%);
  border: 1px solid var(--color-primary-glow);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: var(--z-base);
}

.cta-banner h2 {
  margin-bottom: var(--space-4);
}

.cta-banner p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* --- 13. PREMIUM FOOTER --- */
.footer {
  background: var(--bg-dark-800);
  border-top: 1px solid var(--glass-border);
  padding-top: var(--space-16);
  padding-bottom: var(--space-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  margin-top: var(--space-4);
  max-width: 320px;
}

.footer-links-column h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-5);
  color: var(--text-main);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

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

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--text-subtle);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-accessibility-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-quick-stats {
    justify-content: center;
  }

  .models-grid,
  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-banner-card {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-menu,
  .nav-actions .btn {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

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

  .models-grid,
  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-banner-card {
    grid-column: span 1;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    display: none;
  }

  .section-padding {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
}