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

:root {
  /* Brand */
  --brand:      #2563eb;
  --brand-2:    #1d4ed8;
  --brand-3:    #1e40af;
  --brand-bg:   #eff6ff;
  --brand-mid:  #60a5fa;

  /* Neutral */
  --text:       #0f0f0f;
  --text-2:     #525252;
  --text-3:     #a3a3a3;
  --bg:         #fafaf9;
  --surface:    #f5f4f2;
  --border:     #e5e5e5;

  /* Layout */
  --nav-h:      64px;
  --r:          8px;
  --r-lg:       12px;
  --ease:       cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); font-weight: 800; line-height: 1.06; letter-spacing: -.03em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.875rem); font-weight: 700; line-height: 1.12; letter-spacing: -.025em; }
h3 { font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }

.accent { color: var(--brand); }

/* ── Layout helpers ────────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
section    { padding: clamp(4rem, 7vw, 7rem) 0; }

.tag {
  display: inline-block;
  font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 1rem;
}

.sh           { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.sh p         { color: var(--text-2); font-size: 1rem; line-height: 1.75; max-width: 680px; margin-top: .75rem; }
.sh.center    { text-align: center; }
.sh.center p  { margin-inline: auto; }

/* ── Skip link ─────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--brand); color: #fff; padding: .5rem 1rem;
  border-radius: var(--r); font-size: .875rem; font-weight: 600;
  text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: .75rem; }

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

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: inherit; font-size: .8125rem; font-weight: 600;
  letter-spacing: .01em; text-decoration: none; border: none; cursor: pointer;
  border-radius: var(--r); transition: all .2s var(--ease);
}
.btn-primary {
  background: var(--brand); color: #fff; padding: .75rem 1.375rem;
}
.btn-primary:hover { background: var(--brand-2); }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border); padding: .6875rem 1.25rem;
}
.btn-outline:hover { border-color: var(--text); }

/* ── Nav ───────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,249,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
nav.scrolled { border-color: var(--border); }

.nav-logo {
  font-size: .9375rem; font-weight: 700; color: var(--text);
  text-decoration: none; letter-spacing: -.01em;
}

.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: .125rem;
}
.nav-links a {
  font-size: .8125rem; font-weight: 500; color: var(--text-2);
  text-decoration: none; padding: .375rem .75rem; border-radius: 5px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-sw { display: flex; gap: .125rem; }
.lang-sw button {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: .75rem; font-weight: 600; color: var(--text-3);
  padding: .25rem .5rem; border-radius: 4px;
  transition: color .15s, background .15s;
}
.lang-sw button.active { color: var(--brand); background: var(--brand-bg); }

.hamburger {
  display: none; flex-direction: column; gap: 4px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); border-radius: 1px; transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; min-height: 100dvh;
  padding-top: var(--nav-h);
  display: flex; align-items: center;
}
#hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding-top: 3rem; padding-bottom: 3rem;
}

.hero-eyebrow {
  font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .625rem;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--brand); }

.hero-text h1    { margin-bottom: 1.25rem; }
.hero-sub        { font-size: 1rem; color: var(--text-2); line-height: 1.8; max-width: 420px; margin-bottom: 2rem; }
.hero-actions    { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── Dashboard mockup ──────────────────────────────────────────────────────── */
.terminal {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.05), 0 16px 40px rgba(0,0,0,.07);
  overflow: hidden;
}
.t-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6875rem 1rem; border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.t-bar-dots { display: flex; gap: 5px; }
.t-bar-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.t-title    { font-size: .75rem; font-weight: 600; color: var(--text); letter-spacing: -.01em; position: absolute; left: 50%; transform: translateX(-50%); }
.t-date     { font-size: .625rem; color: var(--text-3); font-weight: 500; }
.t-bar      { position: relative; }
.t-body     { padding: 1.125rem; }

.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .625rem; margin-bottom: .75rem; }
.kpi     { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: .75rem; }
.kpi-l   { font-size: .5625rem; font-weight: 600; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .2rem; }
.kpi-v   { font-size: 1.25rem; font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.kpi-d   { font-size: .625rem; font-weight: 600; margin-top: .1rem; }
.kpi-d.up { color: #16a34a; }
.kpi-d.dn { color: #dc2626; }

.chart-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: .875rem; margin-bottom: .625rem; }
.chart-hdr   { display: flex; justify-content: space-between; margin-bottom: .625rem; }
.chart-lbl   { font-size: .5625rem; font-weight: 600; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; }
.chart-stat  { font-size: .625rem; font-weight: 700; color: #16a34a; }
.bar-chart   { display: flex; align-items: flex-end; gap: 3px; height: 52px; }
.bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: linear-gradient(0deg, var(--brand) 0%, rgba(37,99,235,.25) 100%);
  transform-origin: bottom;
  animation: barUp .8s var(--ease) both;
}
@keyframes barUp { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.data-tbl   { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.dt         { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: .4375rem .875rem; border-bottom: 1px solid var(--border); font-size: .625rem; }
.dt:last-child { border-bottom: none; }
.dt.hdr span { color: var(--text-3); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.dt span     { color: var(--text-2); }
.dt .up { color: #16a34a; font-weight: 700; }
.dt .dn { color: #dc2626; font-weight: 700; }

/* ── Services ──────────────────────────────────────────────────────────────── */
#services { background: var(--surface); }

.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.svc-card {
  background: var(--bg); padding: 2rem 1.75rem;
  transition: background .2s;
}
.svc-card:hover { background: #fefefe; }

.svc-icon {
  width: 40px; height: 40px;
  background: var(--brand-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--brand);
}
.svc-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.svc-card h3 { margin-bottom: .5rem; }
.svc-card p  { color: var(--text-2); font-size: .875rem; line-height: 1.7; }

/* ── For Whom ──────────────────────────────────────────────────────────────── */
.pain-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1rem; margin-bottom: 1.75rem;
}
.pain-card {
  background: var(--bg);
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 1.625rem 1.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.pain-card:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 20px rgba(37,99,235,.08);
}
.pain-icon {
  width: 40px; height: 40px;
  background: var(--brand-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--brand);
}
.pain-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.pain-card h3 { font-size: .9375rem; margin-bottom: .375rem; }
.pain-card p  { font-size: .875rem; color: var(--text-2); line-height: 1.65; }

.whom-callout {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--brand); background: var(--brand-bg);
  border-radius: 0 var(--r) var(--r) 0;
}
.whom-callout p { font-size: .9rem; color: var(--brand-3); font-weight: 500; line-height: 1.6; margin: 0; }

/* ── How It Works ──────────────────────────────────────────────────────────── */
.section-how { background: var(--surface); }

.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.step {
  background: var(--bg);
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 2rem 1.75rem; position: relative; overflow: hidden;
  transition: border-color .2s;
}
.step:hover { border-color: var(--brand-mid); }

.step-num-bg {
  position: absolute; top: -.25rem; right: .75rem;
  font-size: 5.5rem; font-weight: 900; line-height: 1;
  color: var(--brand-bg); letter-spacing: -.04em;
  pointer-events: none; user-select: none;
}
.step-dot {
  width: 32px; height: 32px;
  background: var(--brand-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--brand);
  margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.step h3 { font-size: 1rem; margin-bottom: .5rem; position: relative; z-index: 1; }
.step p  { color: var(--text-2); font-size: .875rem; line-height: 1.7; position: relative; z-index: 1; }

/* ── Pricing ───────────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.pricing-card {
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 2.25rem; transition: border-color .2s;
}
.pricing-card:hover { border-color: var(--brand); }

/* Featured card — brand blue */
.pricing-card.featured {
  background: var(--brand);
  border-color: var(--brand);
}
.pricing-card.featured:hover { border-color: var(--brand-2); }
.pricing-card.featured h3              { color: #fff; }
.pricing-card.featured > p             { color: rgba(255,255,255,.65); }
.pricing-card.featured .price          { color: #fff; }
.pricing-card.featured .price-sub      { color: rgba(255,255,255,.5); }
.pricing-card.featured .p-badge        { color: var(--brand); background: #fff; }
.pricing-card.featured .p-features li  { color: rgba(255,255,255,.7); }
.pricing-card.featured .p-features li::before { color: rgba(255,255,255,.9); }
.pricing-card.featured .btn-primary {
  background: #fff; color: var(--brand);
}
.pricing-card.featured .btn-primary:hover { background: rgba(255,255,255,.9); }

.p-badge {
  display: inline-block; font-size: .625rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-bg);
  padding: .25rem .625rem; border-radius: 4px; margin-bottom: 1.25rem;
}
.pricing-card h3      { font-size: 1.25rem; margin-bottom: .5rem; }
.pricing-card > p     { font-size: .875rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.75rem; }
.price                { font-size: 2.25rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; line-height: 1; margin-bottom: .3rem; }
.price-sub            { font-size: .75rem; color: var(--text-3); font-weight: 400; }
.pricing-note         { text-align: center; color: var(--text-3); font-size: .8125rem; margin-top: 1.5rem; line-height: 1.7; }

.p-features           { list-style: none; margin: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: .4rem; }
.p-features li        { font-size: .8125rem; color: var(--text-2); display: flex; align-items: flex-start; gap: .5rem; line-height: 1.45; }
.p-features li::before { content: '–'; color: var(--brand); font-weight: 700; flex-shrink: 0; }

.p-cta .btn { width: 100%; justify-content: center; }

/* ── About ─────────────────────────────────────────────────────────────────── */
#about { background: var(--surface); }

/* Top two-column row */
.about-grid {
  display: grid; grid-template-columns: 1fr 300px;
  gap: clamp(3rem, 5vw, 5rem); align-items: start;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.about-main h2     { margin-bottom: 1.25rem; }
.about-main p      { font-size: .9rem; color: var(--text-2); line-height: 1.8; margin-bottom: .75rem; }
.about-main p.lead { color: var(--text); font-size: .9375rem; font-weight: 600; }

.about-cta        { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.about-tools-line { font-size: .75rem; color: var(--text-3); margin-top: 1.25rem; letter-spacing: .02em; }

/* Photo placeholder */
.about-photo {
  aspect-ratio: 4 / 5;
  background: var(--bg);
  border: 1.5px dashed var(--border);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .875rem;
  color: var(--text-3);
  margin-top: 3.75rem;
}
.about-photo svg  { width: 56px; height: 56px; opacity: .3; }
.about-photo span { font-size: .75rem; font-weight: 500; letter-spacing: .04em; }

/* Mini section: standalone philosophy statement */
.about-mini {
  border-top: 1px solid var(--border);
  padding-top: clamp(2rem, 3vw, 2.5rem);
  max-width: 640px;
}

.about-hl {
  padding: 1.125rem 1.375rem;
  border-left: 3px solid var(--brand);
  background: var(--brand-bg);
  border-radius: 0 var(--r) var(--r) 0;
}
.about-hl p { color: var(--brand-3) !important; font-weight: 500 !important; font-size: .9375rem !important; margin: 0 !important; line-height: 1.7 !important; }

/* Quote above pricing cards */
.pricing-quote {
  margin: 0 0 2rem;
  padding: 1.125rem 1.5rem;
  border-left: 3px solid var(--brand);
  background: var(--brand-bg);
  border-radius: 0 var(--r) var(--r) 0;
  max-width: 600px;
}
.pricing-quote p {
  font-size: .9375rem; font-style: italic; color: var(--brand-3);
  line-height: 1.7; margin: 0; font-weight: 500;
}
.pricing-quote p::before { content: '"'; font-style: normal; font-weight: 700; margin-right: .05em; }
.pricing-quote p::after  { content: '"'; font-style: normal; font-weight: 700; margin-left: .05em; }

/* ── Capacity strip (between How It Works and Pricing) ─────────────────────── */
.cap-strip {
  background: var(--brand-bg);
  border-top: 1px solid rgba(37,99,235,.12);
  border-bottom: 1px solid rgba(37,99,235,.12);
  padding: 2.5rem 0;
}
.cap-strip-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; }
.cap-strip-inner p { font-size: 1rem; font-weight: 600; color: var(--text); margin: 0; }

.cap-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .5rem;
}
.cap-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--brand); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.cap-block p       { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.5; margin-bottom: .25rem; }
.cap-block .cap-sub { font-size: .8125rem; font-weight: 400; color: var(--text-3); }

/* ── Contact ───────────────────────────────────────────────────────────────── */
#contact { background: var(--brand-bg); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem); align-items: start;
}
.contact-left h2       { margin-bottom: 1.125rem; }
.contact-left > p      { color: var(--text-2); font-size: .9rem; line-height: 1.8; margin-bottom: .625rem; }

.c-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.25rem; }
.c-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 500; color: var(--text-2);
  background: var(--bg); border: 1px solid var(--border);
  padding: .3rem .75rem; border-radius: 4px;
}
.c-badge svg { width: 12px; height: 12px; stroke: var(--brand); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.form         { display: flex; flex-direction: column; gap: .875rem; }
.form-row     { display: flex; flex-direction: column; gap: .3rem; }
.form-row label {
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-3);
}
.form-row input,
.form-row textarea {
  font-family: inherit; font-size: .9rem;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: .6875rem .875rem;
  color: var(--text); transition: border-color .15s, box-shadow .15s; resize: none;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-row textarea   { min-height: 120px; }
.form-row input.invalid,
.form-row textarea.invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.field-error         { font-size: .6875rem; color: #ef4444; font-weight: 500; }
.form-submit .btn    { width: 100%; justify-content: center; padding: .875rem; margin-top: .125rem; }
.form-note           { font-size: .6875rem; color: var(--text-3); text-align: center; margin-top: .5rem; }
.form-status         { font-size: .8125rem; font-weight: 500; text-align: center; border-radius: var(--r); padding: .625rem 1rem; display: none; }
.form-status.success { display: block; background: #dcfce7; color: #166534; }
.form-status.error   { display: block; background: #fee2e2; color: #991b1b; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer {
  max-width: 1120px; margin: 0 auto;
  padding: 1.75rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8125rem; color: var(--text-3);
}
.footer-links     { display: flex; gap: 1.25rem; }
.footer-links a   { color: var(--text-3); text-decoration: none; font-weight: 500; transition: color .15s; }
.footer-links a:hover { color: var(--brand); }

/* ── Scroll animations ─────────────────────────────────────────────────────── */
.fade { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade.d1 { transition-delay: .08s; }
.fade.d2 { transition-delay: .16s; }
.fade.d3 { transition-delay: .24s; }
.fade.visible { opacity: 1; transform: none; }

/* ── Reduced motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html  { scroll-behavior: auto; }
  .fade { opacity: 1; transform: none; transition: none; }
  .bar  { animation: none; }
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  #hero .container  { grid-template-columns: 1fr; }
  .hero-sub         { max-width: 100%; }
  .svc-grid         { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-photo      { aspect-ratio: 3 / 2; max-width: 360px; }
  .about-mini       { max-width: 100%; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links {
    display: none;
    position: fixed; top: var(--nav-h); left: .75rem; right: .75rem;
    transform: none; flex-direction: column; gap: 0;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--r); padding: .5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav-links.open   { display: flex; }
  .nav-links a      { padding: .625rem .875rem; font-size: .9rem; }
  .hamburger        { display: flex; }
  .nav-cta          { display: none; }
  section           { padding: 3.5rem 0; }
  footer            { flex-direction: column; gap: .875rem; text-align: center; }
}

@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
}
