/*
 * index.css — Deviz Zugrav v4.4.0
 * Stiluri specifice homepage (index.php).
 * Importat DUPĂ _global.css și _hero-home.css.
 */

/* ============================================================
   STATS BAR
   ============================================================ */
.sbar {
  border-bottom: 1px solid var(--g2);
  padding: 32px 0;
}
.sg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.si {
  position: relative;
  padding: 0 16px;
}
.si + .si::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--g3);
  opacity: .5;
}
.si .n {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--b5);
  line-height: 1;
}
.si .l {
  font-size: 14px;
  color: var(--g5);
  margin-top: 7px;
  font-weight: 500;
}

/* ============================================================
   PROBLEMA — grid 50/50
   ============================================================ */
.pgr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.ptxt p {
  font-size: 15px;
  color: var(--g7);
  line-height: 1.85;
  margin-bottom: 18px;
}
.ptxt p:last-child { margin-bottom: 0; }
.ptxt strong { color: var(--dk); font-weight: 700; }

/* Carduri bad/good */
.scs { display: flex; flex-direction: column; gap: 14px; }
.sc {
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sc.bad  { background: #fff1f1; border: 1px solid #fecaca; }
.sc.good { background: #f0fdf4; border: 1px solid #bbf7d0; }
.sc .ic {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.sc.bad  .ic { background: #dc2626; }
.sc.good .ic { background: #16a34a; }
.sc h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.sc.bad  h4 { color: #991b1b; }
.sc.good h4 { color: #166534; }
.sc p { font-size: 13px; line-height: 1.6; }
.sc.bad  p { color: #7f1d1d; }
.sc.good p { color: #14532d; }

/* ============================================================
   QUOTE BAND — mesaj mare cu blockquote
   ============================================================ */
.qband {
  padding: 60px 0;
  background: var(--b9);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.qband::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(33,150,243,.12), transparent 55%);
  pointer-events: none;
}
.qband blockquote {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  font-style: normal;
  line-height: 1.28;
  max-width: 820px;
  margin: 0 auto;
  letter-spacing: -.025em;
}
.qband blockquote em { font-style: normal; color: var(--o5); }
.qband .qsub {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FEATURES — grid 3 coloane
   ============================================================ */
.fg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.fc {
  background: var(--w);
  border: 1px solid var(--g2);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--b5), var(--b4));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.fc:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
  border-color: var(--b2);
}
.fc:hover::before { transform: scaleX(1); }
.fi {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.fi.b  { background: var(--b1);  color: var(--b7);  }
.fi.o  { background: var(--o1);  color: var(--o6);  }
.fi.g  { background: var(--gr1); color: var(--gr6); }
.fi.pu { background: var(--pu1); color: var(--pu6); }
.fc h3 { font-size: 16px; font-weight: 700; color: var(--dk); margin-bottom: 10px; }
.fc p  { font-size: 13px; color: var(--g5); line-height: 1.72; flex: 1; }

/* ============================================================
   DOMENII — grid 4 coloane
   ============================================================ */
.dom-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.dom-c {
  background: var(--w);
  border: 1px solid var(--g2);
  border-radius: var(--r);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .25s, transform .25s;
}
.dom-c:hover { border-color: var(--b4); transform: translateY(-3px); }
.dom-ic {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dom-c h4 { font-size: 13px; font-weight: 700; color: var(--dk); margin-bottom: 2px; }
.dom-c p  { font-size: 11px; color: var(--g5); line-height: 1.4; }

/* ============================================================
   CUM FUNCȚIONEAZĂ — timeline 3 pași
   ============================================================ */
.stp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}
.stp::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.7% + 8px);
  right: calc(16.7% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--o6), var(--b4));
  opacity: .22;
}
.step { text-align: center; position: relative; z-index: 1; }
.snum {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 18px;
  border: 2px solid var(--b2);
  color: var(--b5);
  background: #fff;
  transition: all .35s;
}
.step.act .snum {
  background: var(--o6);
  color: #fff;
  border-color: var(--o6);
  box-shadow: 0 6px 20px rgba(232,117,44,.32);
}
.step h3 { font-size: 16px; font-weight: 700; color: var(--dk); margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--g5); line-height: 1.65; max-width: 240px; margin: 0 auto; }

/* ============================================================
   MESAJE MARI (big-accent)
   ============================================================ */
.big-accent {
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.big-accent--blue {
  background: var(--b9);
}
.big-accent--blue::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(232,117,44,.08), transparent 50%);
}
.big-accent--mid {
  background: var(--b7);
}
.big-accent--mid::before {
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.06), transparent 50%);
}
.big-accent__text {
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #fff;
  position: relative;
  z-index: 1;
}
.big-accent__text em { font-style: normal; color: var(--o5); }
.big-accent__sub {
  font-size: 16px;
  color: rgba(255,255,255,.45);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.big-accent .bp,
.big-accent .bs {
  margin-top: 28px;
  display: inline-flex;
  position: relative;
  z-index: 1;
}

/* ============================================================
   AI SECTION
   ============================================================ */
.aigr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 52px;
}
.aichat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.am2 { display: flex; gap: 8px; align-items: flex-start; }
.am2.u { flex-direction: row-reverse; }
.av2 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.av2.b { background: var(--b5); color: #fff; }
.av2.o { background: var(--o6); color: #fff; }
.ab2 {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
  max-width: 280px;
}
.ab2.b { background: rgba(33,150,243,.18); color: rgba(255,255,255,.86); }
.ab2.o { background: rgba(232,117,44,.18); color: rgba(255,255,255,.86); }

.aifs { display: flex; flex-direction: column; gap: 20px; }
.aif  { display: flex; gap: 14px; align-items: flex-start; }
.afic {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.afic.b { background: rgba(33,150,243,.15); color: var(--b5); }
.afic.o { background: rgba(232,117,44,.15); color: var(--o6); }
.afic.g { background: rgba(22,163,74,.15);  color: var(--gr6); }
.aif h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.aif p  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

.ai-levels { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; }
.ai-lv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
}
.ai-lv.lv1 { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.ai-lv.lv2 { background: rgba(232,117,44,.12); border: 1px solid rgba(232,117,44,.25); }
.ai-lv.lv3 { background: rgba(33,150,243,.1);  border: 1px solid rgba(33,150,243,.2);  }
.ai-lv span:first-child { color: rgba(255,255,255,.75); font-weight: 500; }
.ai-lv span:last-child  { color: rgba(255,255,255,.5);  font-size: 12px; }

/* ============================================================
   COMPARISON — bare animate
   ============================================================ */
.cmg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.cmc {
  border-radius: var(--r);
  padding: 32px;
  position: relative;
  z-index: 1;
}
.cmc.bad  { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); }
.cmc.good { background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.2); }
.cmc h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cmc.bad  h3 { color: #ef4444; }
.cmc.good h3 { color: #16a34a; }
.cmi {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.75);
}
.ci {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cmpbars {
  max-width: 600px;
  margin: 48px auto 0;
  position: relative;
  z-index: 1;
}
.cmpbars__title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
.cmpbar-row   { margin-bottom: 16px; }
.cmpbar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.cmpbar-track {
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  height: 9px;
  overflow: hidden;
}
.cbar {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}

/* ============================================================
   PRICING
   ============================================================ */
.pgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border-radius: var(--r);
  padding: 28px 22px;
  border: 1px solid var(--g2);
  transition: box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.plan:hover { box-shadow: 0 12px 40px rgba(0,0,0,.09); }
.plan.feat {
  border: 2px solid var(--o6);
  position: relative;
  box-shadow: 0 16px 48px rgba(232,117,44,.15);
}
.plan.feat::before {
  content: 'Recomandat';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--o6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 6px;
  white-space: nowrap;
}
.pt2   { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.tf    { color: var(--g5); }
.tp    { color: var(--b7); }
.tb    { color: var(--o6); }
.tbu   { color: var(--pu6); }
.pname { font-size: 19px; font-weight: 800; color: var(--dk); margin-bottom: 4px; }
.ppr   { font-size: 28px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.ppr sub { font-size: 13px; font-weight: 500; color: var(--g5); }
.pf  { color: var(--b5); }
.pp  { color: var(--o6); }
.pb3 { color: var(--dk); }
.pnote { font-size: 12px; color: var(--g5); margin-bottom: 12px; min-height: 18px; }
.pdesc { font-size: 13px; color: var(--g5); line-height: 1.6; margin-bottom: 16px; }
.pfts  { list-style: none; flex: 1; margin-bottom: 20px; }
.pfts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--g7);
  padding: 4px 0;
  line-height: 1.4;
}
.pfts li.dm { opacity: .4; }
.ck {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan:not(.feat) .pfts li .ck { background: var(--b1); color: var(--b7); }
.plan.feat        .pfts li .ck { background: var(--o1); color: var(--o6); }
.pbtn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all .22s;
  margin-top: auto;
  font-family: var(--f);
}
.pbo { background: var(--g1); color: var(--g7); }
.pbo:hover { background: var(--g2); }
.pbf { background: var(--o6); color: #fff; }
.pbf:hover { background: #cf6420; }

/* Hibernare */
.hib-card {
  background: var(--pu1);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hib-ic {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(124,58,237,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pu6);
}
.hib-card h4 { font-size: 16px; font-weight: 700; color: var(--pu6); margin-bottom: 4px; }
.hib-card p  { font-size: 14px; color: var(--g7); line-height: 1.6; }
.prix-note   { font-size: 13px; color: var(--g5); text-align: center; margin-top: 16px; }

/* ============================================================
   PERCENTS — cercuri animate
   ============================================================ */
.perc {
  padding: 88px 0;
  background: var(--dk);
  position: relative;
  overflow: hidden;
}
.perc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,117,44,.06), transparent 55%);
  pointer-events: none;
}
.percg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  align-items: center;
}
.perci { text-align: center; position: relative; z-index: 1; }
.prw   { position: relative; display: inline-block; margin-bottom: 20px; }
.prw svg { display: block; }
.pval {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: #fff;
}
.rbg { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 8; }
.rfg {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 0 1000;
  transition: stroke-dasharray 1.4s cubic-bezier(.22,1,.36,1) .3s;
  transform: rotate(-90deg);
  transform-origin: center;
}
.perci h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.perci p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 220px; margin: 0 auto; }

/* ============================================================
   COMPETITORI
   ============================================================ */
.comp-g {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.comp-c {
  background: var(--w);
  border: 1px solid var(--g2);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  transition: box-shadow .25s;
}
.comp-c:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.comp-name  { font-size: 14px; font-weight: 700; color: var(--dk); margin-bottom: 4px; }
.comp-url   { font-size: 11px; color: var(--b5); margin-bottom: 8px; }
.comp-price { font-size: 12px; color: var(--g5); margin-bottom: 10px; }
.comp-tag   { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.comp-tag.generic { background: var(--g1); color: var(--g5); }
.comp-tag.partial { background: var(--o1); color: #92400E; }

/* Tabel comparativ */
.vs-tbl-wrap { overflow-x: auto; margin-top: 32px; }
.vs-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.vs-tbl th {
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  border-bottom: 2px solid var(--g2);
}
.vs-tbl th:first-child { text-align: left; }
.vs-tbl th.dz-col { background: var(--o1); color: var(--o6); }
.vs-tbl td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--g2);
  text-align: center;
  color: var(--g5);
}
.vs-tbl td:first-child { text-align: left; color: var(--dk); font-weight: 500; }
.vs-tbl tr:nth-child(even) { background: var(--g0); }
.vs-tbl .yes { color: var(--gr6); font-weight: 700; }
.vs-tbl .no  { color: #ef4444;    font-weight: 700; }
.vs-tbl .par { color: var(--o6); }

/* ============================================================
   PENTRU CINE
   ============================================================ */
.fwcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}
.fwc {
  background: var(--w);
  border: 1px solid var(--g2);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fwc:hover { border-color: var(--b4); transform: translateY(-4px); }
.fwic {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--b1);
  color: var(--b7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.fwc h3 { font-size: 17px; font-weight: 700; color: var(--dk); margin-bottom: 10px; }
.fwc p  { font-size: 14px; color: var(--g5); line-height: 1.7; flex: 1; }
.fwc .fw-plan {
  font-size: 12px;
  font-weight: 600;
  color: var(--o6);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--g2);
  width: 100%;
}
.forw-txt { font-size: 15px; color: var(--g7); line-height: 1.85; margin-bottom: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--g2);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--w);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dk);
  cursor: pointer;
  transition: background .2s;
  user-select: none;
}
.faq-q:hover { background: var(--g0); }
.faq-q svg { flex-shrink: 0; transition: transform .3s; color: var(--g5); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 22px;
  font-size: 14px;
  color: var(--g5);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,1,.36,1), padding .3s;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }

/* ============================================================
   RESPONSIVE HOMEPAGE
   ============================================================ */
@media (max-width: 1200px) {
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .comp-g { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .fg     { grid-template-columns: 1fr 1fr; }
  .aigr   { grid-template-columns: 1fr; }
  .percg  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 959px) {
  .pgr    { grid-template-columns: 1fr; }
  .cmg    { grid-template-columns: 1fr; }
  .fwcards{ grid-template-columns: 1fr 1fr; }
  .stp    { grid-template-columns: 1fr; }
  .stp::before { display: none; }
  .percg  { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .sg     { grid-template-columns: repeat(2, 1fr); }
  .si + .si::before { display: none; }
  .fg     { grid-template-columns: 1fr; }
  .dom-g  { grid-template-columns: 1fr 1fr; }
  .pgrid  { grid-template-columns: 1fr 1fr; }
  .comp-g { grid-template-columns: 1fr 1fr; }
  .fwcards{ grid-template-columns: 1fr; }
  .percg  { grid-template-columns: 1fr; }
  .hib-card { flex-direction: column; align-items: flex-start; }
  .big-accent { padding: 52px 0; }
  .big-accent__text { font-size: clamp(24px, 8vw, 38px); }
  .aigr   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sg     { grid-template-columns: repeat(2, 1fr); }
  .pgrid  { grid-template-columns: 1fr; }
  .comp-g { grid-template-columns: 1fr 1fr; }
  .dom-g  { grid-template-columns: 1fr; }
}
