/* ============================================================
   ГрантКонтроль — style.css
   Дизайн-концепция: тёплая кремовая «карточка», Playfair Display
   + Inter, тёмно-коричневые кнопки, золотые акценты, фирменный
   градиентный блок с точечной сеткой (наследование site.html).
   ============================================================ */

:root{
  /* Палитра (наследована из site.html) */
  --page-1:#f4e4d2;
  --page-2:#e7ceb5;
  --page-3:#d9bda2;
  --card:#fbf4ea;
  --alt:#f5ebdc;

  --ink:#33261a;          /* заголовки */
  --ink-strong:#241a10;  /* логотип */
  --nav:#43331f;
  --nav-hover:#241a0e;
  --sub:#9c8871;
  --muted:#8d7a66;
  --gold:#c9a06a;

  --btn-dark:#3e2818;
  --btn-dark-hover:#2c1c0f;
  --btn-text:#f6efe4;
  --btn-light:#f4e9d8;
  --btn-light-hover:#efe2cd;
  --btn-light-text:#3a2b1c;

  --line:#ece0cb;
  --field-border:#e2d4bd;

  /* Функциональные статус-маркеры (используются точечно) */
  --ok:#10b981;
  --crit:#ef4444;
  --warn:#f59e0b;

  --shadow:0 40px 90px rgba(112,82,52,.18);
  --r-lg:28px;
}

*{margin:0;padding:0;box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  font-family:'Inter',sans-serif;
  background:linear-gradient(180deg,var(--page-1) 0%,var(--page-2) 50%,var(--page-3) 100%);
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
  color:var(--ink);
}

.page{min-height:100vh;padding:40px;}

.card{
  width:100%;
  max-width:1160px;
  margin:0 auto;
  background:var(--card);
  border-radius:var(--r-lg);
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* ---------- Типографика ---------- */
h1{
  font-family:'Playfair Display',serif;
  font-weight:500;
  font-size:50px;
  line-height:1.15;
  color:var(--ink);
  margin:16px 0 18px;
  letter-spacing:.5px;
}
h2{
  font-family:'Playfair Display',serif;
  font-weight:500;
  font-size:34px;
  line-height:1.2;
  color:var(--ink);
  margin:12px 0 14px;
  letter-spacing:.3px;
}
h3{
  font-family:'Inter',sans-serif;
  font-size:16px;
  font-weight:600;
  color:var(--ink);
  line-height:1.35;
}
.eyebrow{
  font-size:12px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
}
.lead{font-size:14.5px;line-height:1.65;color:var(--sub);}

/* ---------- HEADER / NAV ---------- */
.site-header{position:relative;}
.nav{
  position:relative;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
  padding:26px 44px;
}
.nav-cta{justify-self:start;white-space:normal;}
.nav-links{justify-self:end;display:flex;gap:26px;flex-wrap:wrap;}
.nav-links a{
  font-size:13px;
  font-weight:500;
  color:var(--nav);
  text-decoration:none;
  letter-spacing:.2px;
  white-space:normal;
  transition:color .2s ease;
}
.nav-links a:hover{color:var(--nav-hover);}

/* ---------- Логотип (SVG + двухцветное написание) ---------- */
.logo{
  justify-self:center;
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  line-height:1;
  transition:transform .25s ease;
}
.logo:hover{transform:translateY(-1px);}
.logo-mark{
  flex:0 0 auto;
  display:block;
  filter:drop-shadow(0 4px 10px rgba(62,40,24,.18));
  transition:transform .35s cubic-bezier(.22,.61,.36,1);
}
.logo:hover .logo-mark{transform:rotate(-6deg) scale(1.04);}
.logo-text{
  font-family:'Playfair Display',serif;
  font-size:25px;
  font-weight:600;
  color:var(--ink-strong);
  letter-spacing:.4px;
}
.logo-accent{
  color:var(--gold);
  font-weight:500;
  position:relative;
}
.logo-accent::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-3px;
  height:2px;
  background:linear-gradient(90deg,var(--gold),rgba(201,160,106,0));
  border-radius:2px;
}

.burger{
  display:none;
  flex-direction:column;
  gap:4px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
  justify-self:end;
}
.burger span{display:block;width:22px;height:2px;background:var(--btn-dark);border-radius:2px;transition:transform .25s,opacity .25s;}
.burger.active span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.burger.active span:nth-child(2){opacity:0;}
.burger.active span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}

/* ---------- Кнопки ---------- */
.btn-dark{
  background:var(--btn-dark);
  color:var(--btn-text);
  border:none;
  font-family:inherit;
  font-size:13px;
  font-weight:500;
  padding:11px 18px;
  border-radius:10px;
  cursor:pointer;
  white-space:nowrap;
  transition:background .2s ease,transform .15s ease;
}
.btn-dark:hover{background:var(--btn-dark-hover);}
.btn-white{
  background:#fff;
  color:var(--btn-dark);
  border:none;
  font-family:inherit;
  font-size:13px;
  font-weight:600;
  padding:11px 18px;
  border-radius:10px;
  cursor:pointer;
  white-space:nowrap;
  transition:transform .15s ease;
}
.btn-white:hover{transform:translateY(-1px);}
.btn-light{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:var(--btn-light);
  color:var(--btn-light-text);
  border:none;
  font-family:inherit;
  font-size:13px;
  font-weight:500;
  padding:11px 18px;
  border-radius:10px;
  cursor:pointer;
  text-decoration:none;
  transition:background .2s ease;
}
.btn-light:hover{background:var(--btn-light-hover);}
.btn-block{width:100%;}
.btn-on-visual{
  background:#fff;
  color:var(--btn-dark);
  border:none;
  font-family:inherit;
  font-size:14px;
  font-weight:600;
  padding:13px 24px;
  border-radius:12px;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  transition:transform .15s ease;
}
.btn-on-visual:hover{transform:translateY(-2px);}
.arrow{
  width:19px;height:19px;border-radius:50%;
  background:var(--btn-dark);
  display:inline-flex;align-items:center;justify-content:center;
  flex:0 0 auto;
}

/* ---------- HERO ---------- */
.hero{text-align:center;padding:46px 40px 56px;}
.stars{color:var(--gold);font-size:13px;letter-spacing:5px;opacity:.85;line-height:1;}
.helped{margin-top:8px;font-size:12px;font-weight:500;color:var(--muted);letter-spacing:.2px;max-width:520px;margin-left:auto;margin-right:auto;}
.cta-row{margin-top:27px;display:flex;justify-content:center;gap:12px;flex-wrap:wrap;}

/* ---------- Фирменный градиентный блок ---------- */
.band{
  position:relative;
  overflow:hidden;
  background:linear-gradient(92deg,
    #f3a761 0%,
    #ef9058 20%,
    #e57a68 40%,
    #8f7fb0 58%,
    #5d88c2 75%,
    #4d7fb8 100%);
}
.band::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(ellipse 22% 34% at 50% 38%,
      rgba(255,240,170,.95) 0%,
      rgba(255,190,90,.9) 30%,
      rgba(244,110,90,.8) 55%,
      rgba(226,70,120,.5) 75%,
      rgba(150,90,170,.2) 88%,
      transparent 100%),
    radial-gradient(ellipse 46% 70% at 47% 55%,
      rgba(240,120,90,.55) 0%,
      rgba(230,90,110,.3) 55%,
      transparent 82%);
  filter:saturate(1.1);
}
.band::after{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,.95) 3px,rgba(255,255,255,0) 4.5px);
  background-size:27px 27px;
  background-position:13.5px 13.5px;
  opacity:.8;
}
.band .band-fade{
  position:absolute;left:0;right:0;bottom:0;height:78%;
  background:linear-gradient(to top,var(--card) 10%,rgba(251,244,234,.85) 32%,rgba(251,244,234,0) 68%);
  z-index:2;pointer-events:none;
}
.band.hero-band{margin:0 44px;min-height:320px;border-radius:26px 26px 0 0;}
.band.final{margin:0 44px;min-height:380px;border-radius:26px 26px 0 0;display:flex;align-items:center;justify-content:center;}
.band.final::before{content:"";position:absolute;inset:0;background:rgba(36,26,16,.94);z-index:3;pointer-events:none;}
.band.final::after{display:none;}
.band.final .band-fade{height:55%;background:linear-gradient(to top,#241a10 0%,rgba(36,26,16,.92) 45%,rgba(36,26,16,0) 100%);z-index:2;}
.band.final .band-inner{position:relative;z-index:4;text-align:center;color:#fff;padding:48px 24px;}
.band.final .band-inner h2{color:#fff;font-size:36px;text-shadow:0 2px 16px rgba(0,0,0,.6);}
.band.final .band-inner p{color:rgba(255,255,255,.98);font-size:15px;line-height:1.65;max-width:480px;margin:0 auto 24px;text-shadow:0 1px 10px rgba(0,0,0,.5);}

/* ---------- Секции ---------- */
.section{padding:64px 44px;}
.section-alt{background:var(--alt);}
.section-head{max-width:660px;margin:0 auto 40px;text-align:center;}
.section-head .lead{margin:0 auto;}

/* ---------- Шаги ---------- */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.step{background:#fffdf8;border:1px solid var(--line);border-radius:18px;padding:26px;}
.step-num{font-family:'Playfair Display',serif;font-size:30px;font-weight:600;color:var(--gold);margin-bottom:12px;}
.step h3{margin-bottom:9px;}
.step p{font-size:13.5px;line-height:1.6;color:var(--sub);}

/* ---------- Чек-лист ---------- */
.ticks{list-style:none;display:flex;flex-direction:column;gap:12px;margin:18px 0 22px;}
.ticks li{display:flex;gap:11px;align-items:flex-start;font-size:14px;color:var(--nav);line-height:1.5;}
.ticks li::before{content:"✓";color:#0f9d6b;font-weight:700;flex:0 0 auto;}

/* ---------- Быстрая форма (загрузка) ---------- */
.quick-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:44px;align-items:center;}
.quick-img{position:relative;}
.quick-img img{width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:20px;box-shadow:0 24px 55px rgba(112,82,52,.18);}
.quick-img figcaption{position:absolute;left:16px;bottom:16px;background:rgba(251,244,234,.92);padding:8px 14px;border-radius:999px;font-size:12.5px;font-weight:600;color:var(--nav);}
.quick-form-wrap h2{margin-top:10px;}
.quick-form{display:flex;flex-direction:column;gap:13px;margin-top:20px;}
.quick-form input,.quick-form select,.quick-form textarea,
.modal-form input,.modal-form select,.modal-form textarea{
  width:100%;
  padding:12px 13px;
  border:1px solid var(--field-border);
  border-radius:10px;
  background:#fffdf8;
  font-family:inherit;
  font-size:14px;
  color:var(--ink);
  font-weight:400;
}
.quick-form textarea,.modal-form textarea{resize:vertical;min-height:70px;}
.quick-form select,.modal-form select{
  appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239c8871' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 13px center;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.drop{
  display:flex;flex-direction:column;align-items:center;gap:6px;
  text-align:center;border:1.5px dashed #d9c6a8;border-radius:14px;
  padding:22px;background:#faf3e6;cursor:pointer;
  transition:background .2s ease,border-color .2s ease;
}
.drop:hover{background:#f4e9d8;border-color:var(--gold);}
.drop input{display:none;}
.drop-ico{width:34px;height:34px;border-radius:50%;background:#f4e9d8;display:flex;align-items:center;justify-content:center;color:var(--btn-dark);font-size:18px;}
.drop-label{font-size:13.5px;font-weight:600;color:var(--nav);}
.drop-hint{font-size:12px;color:var(--muted);}
.form-note{font-size:11.5px;color:var(--muted);line-height:1.6;margin-top:2px;}

/* ---------- Аудит-дашборд ---------- */
.audit-grid{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:center;}
.audit-copy h2{margin-top:10px;}
.audit-panel{background:#fffdf8;border:1px solid var(--line);border-radius:22px;padding:30px 28px;}
.gauge{position:relative;width:150px;height:150px;margin:0 auto 6px;}
.gauge-svg{width:100%;height:100%;transform:rotate(-90deg);}
.gauge-bg{stroke:#efe4d1;stroke-width:12;}
.gauge-fg{stroke:var(--warn);stroke-width:12;stroke-linecap:round;transition:stroke-dashoffset 1.2s cubic-bezier(.22,.61,.36,1),stroke .4s ease;}
.gauge-center{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;}
.gauge-num{font-family:'Playfair Display',serif;font-size:44px;font-weight:600;color:var(--ink);line-height:1;}
.gauge-max{font-size:13px;color:var(--muted);margin-top:2px;}
.gauge-caption{text-align:center;font-size:13px;color:var(--sub);margin-bottom:22px;}
.flags{display:flex;flex-direction:column;gap:12px;}
.flag{display:flex;gap:12px;align-items:flex-start;background:#faf2e4;border:1px solid var(--line);border-radius:12px;padding:13px 15px;}
.flag-dot{width:10px;height:10px;border-radius:50%;margin-top:5px;flex:0 0 auto;}
.flag.crit .flag-dot{background:var(--crit);}
.flag.warn .flag-dot{background:var(--warn);}
.flag-body strong{display:block;font-size:14px;color:var(--ink);font-weight:600;margin-bottom:3px;}
.flag-body span{font-size:13px;color:var(--sub);line-height:1.5;}
.flag.blurred{filter:blur(3.5px);user-select:none;}
.paywall{margin-top:18px;}

/* ---------- Карточки конкурсов ---------- */
.cards-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.grant-card{background:#fffdf8;border:1px solid var(--line);border-radius:16px;padding:22px;display:flex;flex-direction:column;}
.badge{align-self:flex-start;background:#f4e9d8;color:#7a5a34;font-size:12px;font-weight:600;padding:5px 11px;border-radius:999px;margin-bottom:14px;}
.grant-card h3{font-size:17px;margin-bottom:8px;}
.grant-card p{font-size:13.5px;color:var(--sub);line-height:1.6;flex:1;}
.card-link{margin-top:14px;font-size:13px;font-weight:600;color:var(--btn-dark);text-decoration:none;display:inline-flex;gap:6px;align-items:center;transition:color .2s;}
.card-link:hover{color:var(--gold);}

/* ---------- Направления ---------- */
.grid-6{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.dir-card{background:#fffdf8;border:1px solid var(--line);border-radius:16px;padding:20px;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;}
.dir-card:hover{transform:translateY(-3px);box-shadow:0 18px 40px rgba(112,82,52,.14);border-color:#e0cfb2;}
.dir-code{font-family:'Playfair Display',serif;font-size:14px;font-weight:600;color:var(--gold);letter-spacing:1px;}
.dir-card h3{font-size:16px;margin:10px 0 6px;}
.dir-card p{font-size:13px;color:var(--sub);line-height:1.55;}

/* ---------- База знаний ---------- */
.kb-grid{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:center;}
.kb-copy h2{margin-top:10px;}
.kb-copy .btn-light{margin-top:20px;}
.kb-img{position:relative;}
.kb-img img{width:100%;display:block;border-radius:20px;box-shadow:0 24px 55px rgba(112,82,52,.18);}
.kb-img figcaption{position:absolute;left:16px;bottom:16px;background:rgba(251,244,234,.92);padding:8px 14px;border-radius:999px;font-size:12.5px;font-weight:600;color:var(--nav);}

/* ---------- Тарифы ---------- */
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:start;}
.price-card{background:#fffdf8;border:1px solid var(--line);border-radius:20px;padding:28px;display:flex;flex-direction:column;}
.price-card.featured{background:var(--btn-dark);border-color:var(--btn-dark);transform:translateY(-8px);box-shadow:0 24px 60px rgba(62,40,24,.28);}
.price-name{font-size:13px;font-weight:600;letter-spacing:.4px;color:var(--muted);text-transform:uppercase;}
.price-card.featured .price-name{color:#c9b391;}
.price-val{font-family:'Playfair Display',serif;font-size:42px;font-weight:600;color:var(--ink);margin:10px 0 2px;}
.price-card.featured .price-val{color:#fff;}
.price-per{font-size:12.5px;color:var(--muted);margin-bottom:18px;}
.price-card.featured .price-per{color:#c9b391;}
.price-list{list-style:none;display:flex;flex-direction:column;gap:11px;margin-bottom:22px;flex:1;}
.price-list li{font-size:13.5px;color:var(--sub);display:flex;gap:9px;align-items:flex-start;line-height:1.45;}
.price-list li::before{content:"✓";color:#0f9d6b;font-weight:700;flex:0 0 auto;}
.price-card.featured .price-list li{color:#d8c6a8;}
.price-card.featured .price-list li::before{color:#7fd6ae;}

/* ---------- B2B ---------- */
.b2b-grid{display:grid;grid-template-columns:1fr 1fr;gap:44px;align-items:center;}
.b2b-img img{width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:20px;box-shadow:0 24px 55px rgba(112,82,52,.18);}
.b2b-copy h2{margin-top:10px;}

/* ---------- Доверие ---------- */
.trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:36px;}
.trust-item{background:#fffdf8;border:1px solid var(--line);border-radius:16px;padding:24px;}
.trust-ico{width:46px;height:46px;border-radius:12px;background:#f4e9d8;display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.trust-item h3{margin-bottom:8px;}
.trust-item p{font-size:13.5px;color:var(--sub);line-height:1.6;}
.disclaimer{background:#f4ece0;border:1px dashed #d9c6a8;border-radius:16px;padding:22px 26px;}
.disclaimer p{font-size:12.5px;color:var(--muted);line-height:1.75;}

/* ---------- FOOTER ---------- */
.site-footer{background:#241a10;color:#d8c8b0;padding:48px 44px 32px;}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:32px;padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.12);}
.site-footer .logo{position:static;transform:none;display:inline-block;color:#f4e9d8;font-size:22px;}
.footer-brand p{margin-top:12px;font-size:13px;color:#b7a488;line-height:1.6;max-width:280px;}
.footer-col h4{font-size:12px;text-transform:uppercase;letter-spacing:1px;color:#8f7a5c;margin-bottom:14px;font-weight:600;}
.footer-col a{display:block;font-size:13.5px;color:#d8c8b0;text-decoration:none;margin-bottom:10px;transition:color .2s ease;}
.footer-col a:hover{color:#fff;}
.footer-legal{padding-top:24px;}
.footer-legal p{font-size:12px;color:#9c8871;line-height:1.7;}
.footer-legal .copy{margin-top:14px;color:#8f7a5c;}

/* ---------- МОДАЛЬНОЕ ОКНО ---------- */
.modal{position:fixed;inset:0;z-index:1000;display:none;}
.modal.open{display:grid;place-items:center;padding:20px;}
.modal-backdrop{position:absolute;inset:0;background:rgba(36,26,16,.55);backdrop-filter:blur(2px);}
.modal-card{position:relative;width:100%;max-width:460px;max-height:90vh;overflow:auto;background:var(--card);border-radius:20px;padding:32px;box-shadow:0 40px 90px rgba(112,82,52,.35);}
.modal-close{position:absolute;top:16px;right:16px;width:34px;height:34px;border-radius:50%;border:none;background:#f4e9d8;color:var(--btn-dark);cursor:pointer;font-size:15px;}
.modal-card h3{font-family:'Playfair Display',serif;font-size:26px;color:var(--ink);margin-bottom:8px;font-weight:500;}
.modal-sub{font-size:13.5px;color:var(--sub);margin-bottom:20px;line-height:1.6;}
.modal-form{display:flex;flex-direction:column;gap:14px;}
.modal-form label{display:block;font-size:12.5px;font-weight:600;color:var(--nav);}
.form-success{text-align:center;padding:24px 0;}
.form-success h4{font-family:'Playfair Display',serif;font-size:24px;color:var(--ink);margin-bottom:10px;font-weight:500;}
.form-success p{font-size:14px;color:var(--sub);line-height:1.6;}

/* ---------- Плавное появление (только с JS) ---------- */
.js .reveal{opacity:0;transform:translateY(14px);transition:opacity .6s ease,transform .6s ease;}
.js .reveal.in{opacity:1;transform:none;}

/* ---------- Адаптив ---------- */
  .nav{grid-template-columns:auto 1fr auto;padding:22px 30px;gap:14px;}
  .nav-cta{font-size:12px;padding:10px 14px;}
  .logo{justify-self:center;}
  .logo-text{font-size:22px;}
  .logo-mark{width:27px;height:27px;}
  .nav-links{gap:16px;}
}
@media (max-width:820px){
  .card{border-radius:22px;}
  .nav{grid-template-columns:1fr auto 1fr;padding:18px 24px;gap:12px;}
  .nav-cta{justify-self:start;font-size:12px;padding:10px 14px;}
  .burger{display:flex;justify-self:end;}
  .logo{grid-column:1 / -1;grid-row:1;justify-self:center;order:-1;margin-top:4px;}
  .logo-text{font-size:21px;}
  .logo-mark{width:26px;height:26px;}
  .nav-links{grid-column:1 / -1;grid-row:2;justify-self:stretch;width:100%;flex-direction:column;gap:14px;display:none;padding:14px 0 4px;}
  .nav.nav-open .nav-links{display:flex;}

  .hero{padding:34px 24px 44px;}
  h1{font-size:34px;}
  .sub,.lead{font-size:14px;}

  .band.hero-band{margin:0 24px;min-height:260px;border-radius:22px 22px 0 0;}
  .band.final{margin:0 24px;border-radius:22px 22px 0 0;}

  .section{padding:48px 24px;}
  .section-head h2{font-size:28px;}

  .steps{grid-template-columns:1fr;}
  .quick-grid,.audit-grid,.kb-grid,.b2b-grid{grid-template-columns:1fr;gap:30px;}
  .cards-4{grid-template-columns:repeat(2,1fr);}
  .grid-6{grid-template-columns:repeat(2,1fr);}
  .price-grid,.trust-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}

  .footer-grid{grid-template-columns:1fr 1fr;gap:24px;}
  .site-footer{padding:40px 24px 28px;}
}
@media (max-width:520px){
  h1{font-size:29px;}
  .cta-row{flex-direction:column;align-items:center;}
  .cards-4,.grid-6{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
}