/* ==========================================================================
   BRAINIAC SaaS Blueprint — Cyberpunk Neon Theme
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --bg-color: #091421;
  --surface-color: rgba(9, 20, 33, 0.85);
  --brand-red: #3ce8ec;
  --brand-red-dark: #1d3d5f;
  --brand-cyan: #40e0cf;
  --text-main: #ffffff;
  --text-muted: #768b9a;
  --border-color: rgba(29, 61, 95, 0.6);

  --font-headings: 'Clash Display', system-ui, sans-serif;
  --font-body: 'Satoshi', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- Base ---------- */
::selection {
  background-color: var(--brand-cyan);
  color: var(--bg-color);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Cyberpunk Grid Background ---------- */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
}

/* ---------- Grid Dots at Intersections ---------- */
body::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0px 0px, var(--brand-cyan) 2px, transparent 3px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
  filter: drop-shadow(0 0 4px var(--brand-cyan));
}

/* ---------- Radial Glow ---------- */
.glow-bg {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vh;
  background: radial-gradient(circle, rgba(64, 224, 207, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* ---------- Utilities ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.highlight-red {
  color: var(--brand-red);
}

.highlight-cyan {
  color: var(--brand-cyan);
  text-shadow: 0 0 10px rgba(64, 224, 207, 0.4), 0 0 20px rgba(64, 224, 207, 0.2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
}

/* ---------- Nav ---------- */
nav {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(9, 20, 33, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29, 61, 95, 0.4);
}

.logo {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0px 4px 12px rgba(255, 77, 77, 0.3);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-main);
}

/* ---------- Hero ---------- */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(64, 224, 207, 0.3));
  transition: filter 0.3s ease;
}

@keyframes float {

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

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

.hero-logo:hover {
  filter: drop-shadow(0 0 30px rgba(64, 224, 207, 0.6));
}

.badge-new {
  background: rgba(255, 77, 77, 0.1);
  color: var(--brand-red);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 77, 77, 0.2);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
  cursor: pointer;
}

.badge-new:hover {
  transform: scale(1.02);
  background: rgba(255, 77, 77, 0.15);
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--brand-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-red);
}

.hero h1 {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 850px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

/* ---------- Terminal Quick Start ---------- */
.quick-start-title {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  color: var(--brand-cyan);
  margin-bottom: 1rem;
  text-align: left;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(64, 224, 207, 0.3);
}

.terminal-cta {
  background-color: #111827;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.4rem 1.4rem;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  /* Added to keep text inside on small screens */
}

.terminal-cta:hover {
  border-color: rgba(64, 224, 207, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 4px 25px rgba(64, 224, 207, 0.15);
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

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

.dot.close {
  background-color: #ff5f56;
}

.dot.min {
  background-color: #ffbd2e;
}

.dot.max {
  background-color: #27c93f;
}

.terminal-body {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.terminal-content-wrapper {
  flex: 1;
}

.terminal-tabs {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.terminal-tab {
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.terminal-tab:hover {
  color: var(--text-main);
}

.terminal-tab.active {
  color: var(--text-main);
  font-weight: 700;
  position: relative;
}

.terminal-tab.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-cyan);
  box-shadow: 0 0 8px var(--brand-cyan);
}

.cmd-panel {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.cmd-panel.active {
  display: flex;
}

.prompt {
  color: var(--brand-cyan);
  margin-right: 0.75rem;
  font-weight: 700;
}

.command {
  color: #d1d5db;
}

.comment {
  color: #4b5563;
  font-style: italic;
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background-color: var(--brand-cyan);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border-color: rgba(64, 224, 207, 0.4);
  box-shadow: 0 0 10px rgba(64, 224, 207, 0.2);
}

/* ---------- Benefits Section ---------- */
.benefits {
  padding: 6rem 0 3rem;
  position: relative;
  z-index: 10;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
}

.section-title::before {
  content: "⟩";
  color: var(--brand-red);
  font-weight: 600;
}

/* ---------- SaaS Lifecycle (Marquee Banner) ---------- */
.marquee-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
  background: rgba(10, 15, 25, 0.8);
  border-top: 1px solid rgba(64, 224, 207, 0.15);
  border-bottom: 1px solid rgba(64, 224, 207, 0.15);
  overflow: hidden;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
  display: flex;
  width: fit-content;
  animation: scroll-marquee 40s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  gap: 4rem;
  padding: 1.25rem 2rem;
  align-items: center;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  /* Similar to full-stack dev text color */
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: var(--text-main);
}

.marquee-item svg {
  color: var(--brand-cyan);
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-content {
    gap: 2.5rem;
    padding: 1rem 1.5rem;
  }

  .marquee-item {
    font-size: 0.85rem;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.benefits-grid:has(.benefit-card:hover) .benefit-card:not(:hover) {
  opacity: 0.5;
  transform: scale(0.98);
}

.section-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.section-description strong {
  color: var(--text-main);
}

.benefit-card {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(29, 61, 95, 0.4);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.benefit-card:hover {
  background: rgba(17, 24, 39, 0.9);
  border-color: rgba(64, 224, 207, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(64, 224, 207, 0.15);
}

.benefit-icon {
  margin-bottom: 1.5rem;
  color: var(--brand-red);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 77, 0.05);
  border: 1px solid rgba(255, 77, 77, 0.1);
  border-radius: 50%;
  box-shadow: inset 0 0 15px rgba(255, 77, 77, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: rgba(255, 77, 77, 0.1);
  box-shadow: inset 0 0 20px rgba(255, 77, 77, 0.15), 0 0 15px rgba(255, 77, 77, 0.1);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---------- Feature Stack ---------- */
.feature-stack {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  position: relative;
  z-index: 10;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 5rem;
  justify-content: space-between;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  max-width: 500px;
}

.feature-text h3 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-text h3::before {
  content: "⟩";
  color: var(--brand-red);
  font-weight: 600;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--brand-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-cyan);
}

.feature-visual {
  flex: 1.2;
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.feature-visual::before {
  content: "Terminal_";
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  color: #4b5563;
  font-weight: bold;
  font-size: 0.75rem;
}

.code-line {
  margin-bottom: 0.6rem;
  display: flex;
  line-height: 1.5;
}

.code-num {
  color: #4b5563;
  width: 2.5rem;
  user-select: none;
  text-align: right;
  padding-right: 1rem;
}

.code-content {
  color: #d1d5db;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 5rem 0;
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.faq-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(64, 224, 207, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(64, 224, 207, 0.4);
  box-shadow: 0 4px 20px rgba(64, 224, 207, 0.05);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  /* Hide default arrow */
  display: flex;
  /* Flexbox works on summary in modern browsers, but we need an explicit flex container to ensure consistent alignment */
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item:hover summary {
  color: var(--brand-cyan);
}

.faq-item summary::after {
  content: "+";
  color: var(--brand-cyan);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  border-top: 1px solid rgba(64, 224, 207, 0.08);
  margin-top: 0.5rem;
  padding-top: 1rem;
  /* Add animation for opening details smoothly */
  animation: details-show 0.3s ease-in-out forwards;
}

@keyframes details-show {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 3rem 0 1rem;
  position: relative;
  z-index: 10;
}

.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, rgba(9, 20, 33, 0.9), rgba(17, 24, 39, 0.95));
  border: 1px solid rgba(64, 224, 207, 0.15);
  border-radius: 16px;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(64, 224, 207, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #40e0cf;
  color: #fff;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(64, 224, 207, 0.3);
}

.cta-button:hover {
  background: #40e0cf;
  box-shadow: 0 6px 30px rgba(64, 224, 207, 0.45);
  transform: translateY(-2px);
}

.cta-button svg {
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(64, 224, 207, 0.15);
  background: linear-gradient(135deg, rgba(9, 20, 33, 0.9), rgba(17, 24, 39, 0.95));
  padding: 2rem 0 1rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  color: var(--text-main);
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.footer-social a {
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--brand-cyan);
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-main);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--brand-cyan);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--text-main);
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--brand-red);
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(150%);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
  box-shadow: 0 10px 30px rgba(255, 77, 77, 0.3);
}

.toast.show {
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 3rem;
  }

  .feature-visual {
    width: 100%;
  }

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

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .benefits {
    padding: 3rem 0;
  }

  .feature-stack {
    padding: 3rem 0;
    gap: 4rem;
  }

  .faq-section {
    padding: 3rem 0;
  }

  .marquee-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}