/* ==========================================================================
   Lyricalle Landing Page Stylesheet (landing.css)
   ========================================================================== */

/* ── Hero Section Layout ────────────────────────────────────────────── */
.hero-section {
  position: relative;
  width: 100%;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 48px;
  box-sizing: border-box;
}

.hero-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-info h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.hero-info h1 .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-info p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 0 32px;
  line-height: 1.65;
}

/* Hero Actions & Buttons */
.hero-actions-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.hero-btn-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--accent-gradient);
  color: #000000 !important;
  font-weight: 700;
  font-size: 15.5px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(255, 183, 3, 0.35);
  height: 46px;
  box-sizing: border-box;
}

.hero-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 183, 3, 0.55);
}

.hero-store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(19, 19, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #FFF;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  height: 46px;
  box-sizing: border-box;
}

.store-btn:hover {
  background: rgba(30, 30, 38, 0.95);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 183, 3, 0.2);
  color: #FFF;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.store-small-text {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.store-large-text {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
}

/* Trust Badges Row (Single Crisp Row on Desktop) */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 6px;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .hero-trust-row {
    flex-wrap: nowrap;
  }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: #C7C7CC;
  white-space: nowrap;
  letter-spacing: 0.1px;
  transition: color 0.2s ease;
}

.trust-item:hover {
  color: #FFFFFF;
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  filter: drop-shadow(0 0 4px rgba(255, 183, 3, 0.4));
}

/* ── Hero Tablet Device & Native UI Frame ───────────────────────────── */
.hero-mockup-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tablet-frame {
  position: relative;
  width: 380px;
  height: 615px;
  background: #000000;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 50px rgba(255, 183, 3, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-tablet-frame:hover {
  border-color: rgba(255, 183, 3, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9), 0 0 60px rgba(255, 183, 3, 0.15);
}

/* 1:1 App UI Layout Container (Exact Pixel Replica of Live App) */
.app-screen-container {
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  flex-direction: column;
  padding: 0 14px;
  box-sizing: border-box;
  position: relative;
  user-select: none;
  pointer-events: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #FFFFFF;
}

/* 1. Edge-to-Edge Top Status Bar */
.app-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0D0D12;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  margin: 0 -14px 10px -14px;
}

.app-brand-logo {
  height: 24px;
  width: auto;
}

.app-pill-tabs {
  display: inline-flex;
  background: #181820;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2px 3px;
  gap: 2px;
}

.app-pill-btn {
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #8E8E93;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.app-pill-btn.active {
  background: #2C2C36;
  color: #FFFFFF;
}

.app-pill-btn .gold-count {
  color: #FFB703;
  font-weight: 700;
}

.app-top-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-icon-badge-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.app-header-badge {
  position: absolute;
  top: -5px;
  right: -6px;
  background: #E63946;
  color: #FFFFFF;
  font-size: 8.5px;
  font-weight: 800;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
}

/* 2. Song Title Bar */
.app-song-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 6px;
  position: relative;
}

.app-nav-sq-btn {
  width: 24px;
  height: 24px;
  background: #14141A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8E8E93;
  font-size: 10px;
}

.app-song-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.app-song-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}

.app-song-subline {
  font-size: 10px;
  font-weight: 600;
  color: #8E8E93;
  margin-top: 1px;
}

.app-song-right-col {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-key-tag {
  color: #FFB703;
  font-size: 11.5px;
  font-weight: 700;
}

.app-close-btn {
  color: #FFFFFF;
  font-size: 11.5px;
  cursor: default;
}

/* 3. Chords & Lyrics Sheet Body */
.app-lyrics-scroll-body {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 2px 0;
  position: relative;
}

.app-intro-row {
  font-size: 12px;
  font-weight: 700;
  color: #FFB703;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.app-chord-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  column-gap: 6px;
  row-gap: 1px;
  line-height: 1.15;
}

.app-chord-pair {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-chord-pair .c-chord {
  font-size: 12px;
  font-weight: 700;
  color: #FFB703;
  margin-bottom: 2px;
  letter-spacing: -0.1px;
}

.app-chord-pair .c-lyric {
  font-size: 12.5px;
  color: #FFFFFF;
  font-weight: 500;
  white-space: pre;
}

/* Floating Queue FAB Button */
.app-floating-fab {
  position: absolute;
  top: 36%;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFB703;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.app-floating-fab svg {
  width: 20px;
  height: 20px;
}

.app-fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #E63946;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #000000;
}

/* Floating Queue Drawer Card */
.app-queue-drawer {
  position: absolute;
  top: 42%;
  right: 8px;
  width: 175px;
  background: rgba(22, 22, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 10px 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8);
  z-index: 9;
  backdrop-filter: blur(10px);
}

.app-queue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.queue-title {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
}

.queue-close {
  font-size: 10px;
  color: #8E8E93;
  cursor: default;
}

.app-queue-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}

.queue-num {
  font-size: 10px;
  color: #8E8E93;
  font-weight: 600;
  width: 10px;
}

.queue-info {
  flex: 1;
  overflow: hidden;
}

.queue-song-name {
  font-size: 10.5px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-artist {
  font-size: 8.5px;
  color: #8E8E93;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-key-chip {
  font-size: 9px;
  font-weight: 700;
  color: #FFB703;
}

/* 4. Edge-to-Edge Bottom Control Toolbar */
.app-bottom-toolbar {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #0D0D12;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  margin: auto -14px 0 -14px;
  width: calc(100% + 28px);
  box-sizing: border-box;
  flex-shrink: 0;
}

.toolbar-left,
.toolbar-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 4px;
}

.tb-btn {
  width: 32px;
  height: 32px;
  background: #181822;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  box-sizing: border-box;
  flex-shrink: 0;
}

.tb-btn.tb-play {
  background: #242430;
}

.tb-speed-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #FFFFFF;
  padding: 0 3px;
}

/* ── Common Section Headers ─────────────────────────────────────────── */
.section-wrapper {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header-center h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-header-center p {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Act I & Act II Feature Showcase Split Rows ─────────────────────── */
.feature-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.companion-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 56px;
}

.companion-showcase-grid .feature-card-list {
  order: 1;
}

.companion-showcase-grid .desktop-browser-frame {
  order: 2;
}

.feature-card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(19, 19, 23, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.feature-item-card:hover {
  border-color: rgba(255, 183, 3, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.25);
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text-wrap h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.feature-text-wrap p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Stage Essentials Ribbon (4 Mini-Feature Highlights) */
.stage-essentials-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

@media (max-width: 992px) {
  .stage-essentials-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stage-essentials-ribbon {
    grid-template-columns: 1fr;
  }
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  height: 48px;
  flex-shrink: 0;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-badge-link img {
  height: 48px;
  width: auto;
  display: block;
}

.essential-pill {
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.25s ease;
}

.essential-pill:hover {
  background: #16161D;
  border-color: rgba(255, 183, 3, 0.28);
  transform: translateY(-2px);
}

.essential-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.essential-text h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  letter-spacing: -0.1px;
}

.essential-text p {
  font-size: 12.5px;
  color: #8E8E93;
  line-height: 1.45;
  margin: 0;
}

/* Feature Image Frames */
.feature-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #09090C;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

.feature-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Desktop Window Frame for Web Companion */
.desktop-browser-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #141418;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.desktop-browser-header {
  height: 36px;
  background: #0E0E12;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 14px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot.red { background: #FF5F56; }
.browser-dot.yellow { background: #FFBD2E; }
.browser-dot.green { background: #27C93F; }

.browser-url-bar {
  flex: 1;
  height: 22px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0 12px;
  max-width: 400px;
}

.desktop-browser-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ── Musician Specs Bar (Confidence Grid) ───────────────────────────── */
.specs-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.spec-card {
  background: rgba(19, 19, 23, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.spec-card:hover {
  border-color: rgba(255, 183, 3, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.spec-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.spec-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.spec-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ── FAQ Section Accordion ──────────────────────────────────────────── */
.faq-accordion-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-card {
  background: rgba(19, 19, 23, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-card:hover {
  border-color: rgba(255, 183, 3, 0.3);
}

.faq-card.open {
  border-color: rgba(255, 183, 3, 0.4);
  background: rgba(25, 25, 32, 0.85);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 16.5px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  font-family: inherit;
}

.faq-trigger svg {
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-card.open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
}

.faq-card.open .faq-answer {
  max-height: 250px;
  padding-bottom: 20px;
}

.faq-answer code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
  font-family: monospace;
  font-size: 13px;
}

/* ── Closing CTA Section ────────────────────────────────────────────── */
.cta-section-wrap {
  padding: 60px 24px 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-banner-card {
  background: linear-gradient(135deg, rgba(25, 25, 32, 0.9), rgba(10, 10, 14, 0.95));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 183, 3, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-banner-card h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner-card p {
  font-size: 17.5px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Responsive Breakpoints ─────────────────────────────────────────── */
@media (max-width: 990px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    gap: 40px;
  }
  .hero-info {
    align-items: center;
    text-align: center;
  }
  .hero-actions-wrap {
    align-items: center;
  }
  .hero-btn-row,
  .hero-trust-row {
    justify-content: center;
  }
  .feature-showcase-grid,
  .companion-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .companion-showcase-grid .desktop-browser-frame {
    order: 1;
  }
  .companion-showcase-grid .feature-card-list {
    order: 2;
  }
  .specs-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 95px 16px 40px;
  }
  .hero-info h1 {
    font-size: 36px;
  }
  .hero-info p {
    font-size: 15.5px;
  }
  .hero-btn-row {
    flex-direction: column;
    width: 100%;
  }
  .hero-primary-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-store-buttons {
    width: 100%;
    justify-content: center;
  }
  .hero-tablet-frame {
    width: 100%;
    max-width: 340px;
    height: 520px;
  }
  .section-wrapper {
    padding: 60px 16px;
  }
  .section-header-center h2 {
    font-size: 28px;
  }
  .cta-banner-card {
    padding: 40px 20px;
  }
  .cta-banner-card h2 {
    font-size: 28px;
  }
  .specs-bar-grid {
    grid-template-columns: 1fr;
  }
}
