/* =====================
   Cloud Bill Health-Check
   styles.css — refined typography + mobile drawer + reveals
   ===================== */

/* ========== Base + Variables ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

:root {
  /* Brand */
  --brand-700: #0052cc;
  --brand-600: #0b5bd3;
  --brand-500: #2563eb;
  /* darker end for contrast */
  --brand-400: #4d9aff;

  /* Typography */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, Helvetica, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --leading-tight: 1.15;
  --leading-snug: 1.25;
  --leading-normal: 1.6;

  /* Modular scale — body stays steady, headings are fluid */
  --fs-xxs: 0.75rem;
  /* 12px */
  --fs-xs: 0.875rem;
  /* 14px */
  --fs-sm: 0.9375rem;
  /* 15px */
  --fs-base: 1rem;
  /* 16px */
  --fs-lg: 1.125rem;
  /* 18px */
  --fs-xl: 1.25rem;
  /* 20px */
  --fs-2xl: 1.5rem;
  /* 24px */

  /* Fluid display sizes for headings */
  --fs-3xl: clamp(1.75rem, 1.6rem + 0.8vw, 2.25rem);
  /* 28 → 36 */
  --fs-4xl: clamp(2rem, 1.8rem + 1.5vw, 2.75rem);
  /* 32 → 44 */

  /* Neutrals */
  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-strong: #0d1b2a;
  --ink-muted: #4b5563;
  --line: #e2e8f0;

  /* UI */
  --accent-badge: #e7f6ff;
  --accent-badge-text: var(--ink-strong);
  --btn-secondary-bg: #e8f1ff;
  --btn-secondary-text: var(--brand-600);
  --focus: var(--brand-600);

  /* Motion */
  --reveal-duration: 0.6s;
  --reveal-ease: cubic-bezier(0.2, 0.65, 0.2, 1);
}

/* Base */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--leading-normal);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-variant-numeric: tabular-nums;
}

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

a {
  color: #0066ff;
  text-decoration: none;
}

a:hover {
  color: var(--brand-700);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4 {
  color: var(--ink-strong);
  margin: 0 0 0.5rem;
}

h1 {
  font-size: var(--fs-4xl);
  line-height: var(--leading-tight);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h2 {
  font-size: var(--fs-3xl);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.005em;
}

h3 {
  font-size: var(--fs-lg);
  line-height: 1.35;
  font-weight: 600;
}

h4 {
  font-size: var(--fs-3xl);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: white;
}

p,
li {
  font-size: var(--fs-base);
}

.small {
  font-size: var(--fs-xs);
  color: var(--ink-muted);
}

.muted {
  color: #6b7280;
  font-size: var(--fs-sm);
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.7rem 1.1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
}

.btn-primary {
  background: #0066ff;
  color: #fff;
}

.btn-primary:hover {
  background: #d6e8ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
}

.btn-secondary:hover {
  background: #d6e8ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.btn-ghost {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: var(--ink-strong);
}

.btn-ghost:hover {
  background: #f3f4f6;
}

.btn-xl {
  padding: 0.95rem 1.35rem;
  font-size: var(--fs-base);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  z-index: 1001;
}

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ========== Header & Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.site-header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  background: #fff;
  position: relative;
  z-index: 10;
}

.logo {
  font-weight: 800;
  color: var(--ink-strong);
  white-space: nowrap;
  font-size: var(--fs-lg);
  letter-spacing: -0.01em;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--ink-strong);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--primary, #1a73e8);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Menu toggle button (mobile only) */
.menu-toggle,
.menu-close {
  display: none;
  background: transparent;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.45rem;
  line-height: 0;
}

.menu-close {
  border: none;
}

/* Search badge */
.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-badge);
  border-radius: 10px;
  padding: 8px 12px;
}

.search-wrap input {
  border: 0;
  background: transparent;
  outline: 0;
  font-size: var(--fs-sm);
  width: 160px;
  color: var(--accent-badge-text);
}

/* Improve section anchors with sticky header & smooth scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

/* ========== Mobile Drawer ========== */
.nav-drawer[hidden] {
  display: none;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  grid-template-columns: 1fr;
}

.nav-backdrop {
  background: rgba(13, 27, 42, 0.45);
}

.nav-panel {
  background: #fff;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  min-height: 100vh;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.nav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

#menu-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink-strong);
  padding: 8px;
}

.nav-panel-links {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.nav-panel-links a {
  display: block;
  padding: 12px 8px;
  font-size: 16px;
  color: var(--ink-strong);
  font-weight: 600;
}

.nav-panel-actions {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.nav-panel-actions .btn {
  width: 100%;
  text-align: center;
}

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

.nav-panel-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.nav-panel-links a {
  display: block;
  padding: 0.6rem;
  border-radius: 8px;
  color: var(--ink-strong);
  font-weight: 600;
}

.nav-panel-links a:hover {
  background: #f3f4f6;
}

.nav-panel-actions {
  display: grid;
  gap: 10px;
}

.no-scroll {
  overflow: hidden;
}

/* Show drawer toggle & hide desktop nav on small screens */
@media (max-width: 920px) {
  .menu-toggle {
    display: inline-block;
  }

  #primary-nav {
    display: none;
  }

  .nav-actions {
    display: none;
  }
}

/* ========== Hero ========== */
/* .hero{
  background:linear-gradient(135deg,var(--brand-700) 0%,var(--brand-600) 50%,var(--brand-500) 100%);
  color:#fff;border-bottom-left-radius:60px;border-bottom-right-radius:60px;
  padding:56px 0 40px;
} */

.hero--image {
  background: var(--hero-img) center center/cover no-repeat;
  position: relative;
  color: #fff;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  padding: 56px 0 40px;
}

.hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
  pointer-events: none;
  /* <-- Add this line */
}

.hero--image .container > div {
  max-width: 700px;
  margin-left: 0;
  margin-right: auto;
}

.hero-grid {
  display: flex;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero h1,
.hero p {
  color: #fff;
}

.hero .hero-sub {
  color: rgba(255, 255, 255, 0.96);
  font-size: var(--fs-lg);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0.75rem 0 0;
}

.stripe-badge {
  height: 26px;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: var(--fs-sm);
}

/* ========== Sections ========== */
section {
  padding: 56px 0;
}

.bg-light {
  background: var(--surface);
}

/* Cards / grids */
.features-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--brand-600);
}

/* Logos */
.logo-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.trust-heading {
  text-align: center;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ink-strong);
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Guarantee */
.guarantee {
  background: #0066ff;
  color: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Testimonials */
.testimonial {
  display: flex;
  gap: 16px;
  align-items: center;
}

.avatar {
  border-radius: 50%;
  object-fit: cover;
}

/* Pricing clarity */
.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-weight: 700;
  color: var(--ink-strong);
  padding: 16px 0 16px 0;
  cursor: pointer;
  position: relative;
  font-size: var(--fs-base);
  transition: background 0.2s;
}

.faq-question:active,
.faq-question:focus {
  background: #f3f4f6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: var(--fs-base);
  padding: 0 0 12px 0;
}

/* JS will set max-height to scrollHeight for smooth open */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Footer */
footer {
  background: var(--ink-strong);
  color: #eaf2ff;
  padding: 28px 0;
}

.footer-grid a {
  color: #81b6ff;
}

/* Sticky mobile CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 780px) {
  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }
}

/* ROI Estimator */
.roi-wrap {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.roi-inline {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.roi-input {
  padding: 0.6rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
  width: 180px;
}

/* Backdrop-filter fallback */
@supports not (
  (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))
) {
  .site-header {
    background: #ffffffee;
  }
}

/* ===== Scroll Progress Bar ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1200;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, #4d9aff, #0066ff);
  will-change: transform;
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
}

.reveal[data-reveal="up"] {
  transform: translateY(14px);
}

.reveal[data-reveal="down"] {
  transform: translateY(-14px);
}

.reveal[data-reveal="left"] {
  transform: translateX(16px);
}

.reveal[data-reveal="right"] {
  transform: translateX(-16px);
}

.reveal[data-reveal="zoom"] {
  transform: scale(0.98);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal {
  transition-delay: var(--delay, 0ms);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== Header/logo/navigation refinements ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink-strong);
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

@media (max-width: 520px) {
  .logo-img {
    height: 32px;
  }

  .logo-text {
    display: none;
  }

  /* logo image only on very small screens */
}

/* Keep one clean row on desktop */
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  background: #fff;
  position: relative;
  z-index: 10;
}

.nav {
  flex: 1;
}

.nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

nav a {
  white-space: nowrap;
}

/* Action area aligned right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* Topbar simplification */
.topbar {
  background: #0d1b2a;
  color: #eaf2ff;
  font-size: var(--fs-sm);
}

.topbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  gap: 12px;
}

.status-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eaf2ff;
  text-decoration: none;
}

.status-link:hover {
  opacity: 0.9;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}

.topbar .topbar-left,
.topbar .topbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topbar .toplink {
  color: #81b6ff;
}

.topbar .topphone a {
  color: #eaf2ff;
}

/* Hide anything that crowds the bar on narrower screens */
@media (max-width: 1100px) {
  .topbar .topphone {
    display: none;
  }
}

/* Hamburger breakpoint */
@media (max-width: 980px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    transform-origin: top;
    transform: scaleY(0);
    transition: 0.2s;
  }

  .nav[data-open="true"] {
    transform: scaleY(1);
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 20px;
    justify-content: flex-start;
  }

  .nav a {
    display: block;
    padding: 10px 0;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: inline-block;
  }
}

/* Hamburger button defaults (ensure visible when used) */
.hamburger {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: transparent;
}

.hamburger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #0d1b2a;
  transition: 0.2s;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 18px;
}

.hamburger span:nth-child(3) {
  top: 24px;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.white-text {
  color: white;
}

.policy-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .policy-wrap {
    grid-template-columns: 1fr;
  }
}

/* FAQ: Make questions and answers more touch-friendly */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-weight: 700;
  color: var(--ink-strong);
  padding: 16px 0 16px 0;
  cursor: pointer;
  position: relative;
  font-size: var(--fs-base);
  transition: background 0.2s;
}

.faq-question:active,
.faq-question:focus {
  background: #f3f4f6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: var(--fs-base);
  padding: 0 0 12px 0;
}

/* Responsive grid for features, pricing, etc. */
@media (max-width: 780px) {
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 16px;
  }

  .guarantee {
    padding: 18px 8px;
    font-size: var(--fs-base);
  }

  section {
    padding: 32px 0;
  }

  .container {
    padding: 0 8px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.15rem;
  }

  .btn-xl {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
}

/* FAQ: Make answers more readable on mobile */
@media (max-width: 520px) {
  .faq-question {
    font-size: 1rem;
    padding: 14px 0 14px 0;
  }

  .faq-answer {
    font-size: 0.95rem;
    padding-bottom: 10px;
  }
}

/* ===== Mobile Typography System ===== */
@media (max-width: 780px) {
  /* Base typography */
  body {
    font-size: 16px;
    /* Keep standard base size */
    line-height: 1.5;
  }

  /* Heading hierarchy */
  h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
  }

  h2 {
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  h4 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  /* Remove redundant styles */
  .hero-sub {
    font-size: 1rem;
  }

  /* Content typography */
  p,
  li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .small {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  /* Component text */
  .btn {
    font-size: 1rem;
    font-weight: 600;
  }

  .btn-xl {
    font-size: 1.05rem;
  }

  /* Special components */
  .faq-question {
    font-size: 1.05rem;
    padding: 16px 12px;
  }

  .faq-answer {
    font-size: 1rem;
  }

  .guarantee h4 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .status-banner {
    font-size: 1rem;
  }

  /* Containers and layout */
  .container {
    padding: 0 16px;
  }

  /* Footer */
  .footer-grid {
    font-size: 0.9rem;
  }
}

/* Smaller phones - further refinements */
@media (max-width: 380px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .btn-xl {
    font-size: 1rem;
  }
}

/* Better card layout */
@media (max-width: 520px) {
  .feature-card {
    margin-bottom: 16px;
    padding: 20px 16px;
  }

  /* Cleaner typography */
  h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
  }

  h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  /* Fix the text alignment in status banner */
  .status-banner {
    padding: 8px 16px;
    font-size: 1rem;
  }

  /* Better grid spacing */
  .features-grid,
  .pricing-grid {
    gap: 16px;
  }
}

/* Better sticky CTA */
.mobile-cta {
  padding: 10px 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* Fix footer padding */
@media (max-width: 520px) {
  footer {
    padding: 24px 16px;
  }

  .footer-grid {
    gap: 12px;
  }
}
