:root {
  --ink: #333333;
  --muted: #607d8b;
  --line: #dce4e8;
  --paper: #f5f8fa;
  --surface: #ffffff;
  --lime: #76ff03;
  --lime-dark: #5fd600;
  --navy: #0a192f;
  --shadow: 0 18px 50px rgba(10, 25, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 228, 232, 0.85);
  backdrop-filter: blur(14px);
}

.brand-link img {
  display: block;
  width: 190px;
  max-width: 38vw;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.login-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--navy);
  border-radius: 8px;
  padding: 0 13px;
}

.commercial-logout {
  background: white;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 128px clamp(18px, 6vw, 84px) 72px;
  color: var(--navy);
  background:
    radial-gradient(circle at 78% 28%, rgba(118, 255, 3, 0.2), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f5f8fa 46%, #eaf1f4 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero-logo {
  width: min(360px, 74vw);
  height: auto;
  display: block;
  margin-bottom: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(10, 25, 47, 0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.52;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.primary-action,
.secondary-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.primary-action {
  background: var(--lime);
  color: var(--navy);
}

.secondary-action {
  border: 1px solid var(--navy);
  color: var(--navy);
}

.device-showcase {
  position: relative;
  min-height: 560px;
}

.laptop-device,
.tablet-device {
  position: absolute;
  background: #101820;
  box-shadow: 0 28px 70px rgba(10, 25, 47, 0.26);
}

.laptop-device {
  right: 0;
  top: 22px;
  width: min(760px, 100%);
  border-radius: 18px 18px 10px 10px;
  padding: 12px;
}

.device-bar {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
}

.device-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #607d8b;
}

.device-bar span:first-child {
  background: #76ff03;
}

.laptop-screen,
.tablet-device {
  overflow: hidden;
}

.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: white;
}

.laptop-screen img,
.tablet-device img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.laptop-base {
  width: 58%;
  height: 16px;
  margin: 12px auto -24px;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(90deg, #9ca8b0, #f4f7f8 45%, #8b99a2);
}

.tablet-device {
  right: min(430px, 48%);
  bottom: 26px;
  width: min(520px, 45vw);
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  padding: 14px 18px;
  transform: rotate(-3deg);
}

.tablet-device img {
  border-radius: 10px;
  object-position: top center;
}

.tablet-camera {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 7px;
  width: 4px;
  height: 42px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #2b3943;
}

.proof-band {
  width: min(1120px, calc(100% - 36px));
  margin: -38px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-band div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
}

.proof-band span {
  color: var(--muted);
  font-size: 14px;
}

.section,
.workflow-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 76px auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 24px;
}

h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.module-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.module-groups article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
  box-shadow: 0 6px 22px rgba(10, 25, 47, 0.06);
}

.module-groups strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.module-grid article,
.audience-grid,
.pain-grid article,
.whatsapp-grid article,
.onboarding-steps article,
.faq-grid article,
.plan-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(10, 25, 47, 0.06);
}

.module-grid article {
  min-height: 210px;
  padding: 20px;
}

.module-grid span {
  color: var(--lime-dark);
  font-weight: 900;
}

.module-grid h3,
.plan-card h3 {
  color: var(--navy);
  font-size: 21px;
  margin: 16px 0 10px;
}

.module-grid p,
.module-groups p,
.audience-section p,
.pain-section p,
.whatsapp-section p,
.onboarding-section p,
.faq-section p,
.efficiency-section p,
.workflow-section p,
.contact-section p {
  color: var(--muted);
  line-height: 1.58;
}

.audience-section {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 34px rgba(10, 25, 47, 0.06);
}

.audience-section .section-head,
.pain-section .section-head,
.whatsapp-section .section-head {
  max-width: 920px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  background: #fbfdfe;
}

.audience-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}

.audience-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--lime);
  border-radius: 8px;
  background: #f7fafb;
  color: var(--navy);
  font-weight: 800;
}

.pain-section {
  padding: 34px;
  border-radius: 8px;
  background: #eef4f6;
}

.pain-grid,
.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid article,
.whatsapp-grid article {
  min-height: 150px;
  padding: 22px;
}

.pain-grid strong,
.whatsapp-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.whatsapp-section {
  padding: 34px;
  border: 1px solid #cfe7d6;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 18%, rgba(118, 255, 3, 0.18), transparent 28%),
    #ffffff;
  box-shadow: 0 10px 34px rgba(10, 25, 47, 0.06);
}

.onboarding-section,
.faq-section {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 34px rgba(10, 25, 47, 0.06);
}

.onboarding-section .section-head,
.faq-section .section-head {
  max-width: 900px;
}

.onboarding-steps,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.onboarding-steps article,
.faq-grid article {
  min-height: 170px;
  padding: 20px;
}

.onboarding-steps span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--lime-dark);
  font-weight: 900;
}

.onboarding-steps strong,
.faq-grid strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 10px;
}

.efficiency-section {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(10, 25, 47, 0.06);
}

.efficiency-section .section-head {
  max-width: 900px;
}

.efficiency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.efficiency-grid article {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafb;
}

.efficiency-grid strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 10px;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: center;
  padding: 38px;
  background: var(--navy);
  border-radius: 8px;
  color: white;
}

.workflow-section h2 {
  color: white;
}

.workflow-section .eyebrow {
  background: rgba(118, 255, 3, 0.16);
  color: #dfffcc;
}

.workflow-section p {
  color: rgba(255, 255, 255, 0.78);
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.workflow-strip span {
  min-height: 82px;
  display: flex;
  align-items: end;
  border-radius: 8px;
  padding: 12px;
  color: #071418;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.cyan {
  background: #22c2df;
}

.red {
  background: #ff1c22;
}

.yellow {
  background: #ffe300;
}

.magenta {
  background: #d51de6;
}

.orange {
  background: #ff9518;
}

.green {
  background: #09c73d;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  position: relative;
  padding: 24px;
}

.plan-card.featured {
  border-color: var(--lime);
  box-shadow: 0 14px 36px rgba(118, 255, 3, 0.16);
}

.plan-badge {
  width: max-content;
  border-radius: 999px;
  background: var(--lime);
  color: var(--navy);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.plan-position {
  min-height: 44px;
  margin: -6px 0 12px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.price {
  color: var(--navy);
  font-size: 42px;
  font-weight: 900;
  margin: 0 0 14px;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  min-height: 220px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.plan-note {
  min-height: 70px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.plan-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.plan-card a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-weight: 900;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-section > div:first-child {
  max-width: 650px;
}

.contact-section .secondary-action {
  color: var(--navy);
  border-color: var(--line);
}

.legal-page {
  width: min(980px, calc(100% - 36px));
  margin: 86px auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 34px rgba(10, 25, 47, 0.06);
}

.legal-page h1 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.legal-updated {
  color: var(--muted);
  margin-bottom: 28px;
}

.legal-page article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.legal-page article h2 {
  font-size: 23px;
  margin-bottom: 10px;
}

.legal-page article p {
  color: var(--muted);
  line-height: 1.64;
  margin: 0;
}

.legal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.sales-admin-page {
  width: min(1320px, calc(100% - 36px));
  margin: 116px auto 76px;
}

.sales-hero {
  max-width: 900px;
  margin-bottom: 22px;
}

.sales-hero h1 {
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 10px;
}

.sales-hero p {
  color: var(--muted);
  line-height: 1.58;
}

.sales-status {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid #cfe7d6;
  border-radius: 8px;
  background: #effaf2;
  color: #0c6b2e;
  font-weight: 800;
}

.sales-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.sales-stats article {
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 26px rgba(10, 25, 47, 0.06);
}

.sales-stats strong {
  display: block;
  color: var(--navy);
  font-size: 32px;
}

.sales-stats span {
  color: var(--muted);
}

.sales-panel {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 34px rgba(10, 25, 47, 0.06);
}

.sales-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sales-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sales-form input,
.sales-form select,
.sales-form textarea {
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fbfdfe;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.sales-form textarea {
  resize: vertical;
}

.sales-wide {
  grid-column: span 4;
}

.sales-form-actions {
  grid-column: span 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sales-form-actions button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.sales-form-actions .secondary-action {
  background: white;
}

.sales-clients-list {
  display: grid;
  gap: 12px;
}

.operational-accounts-list {
  display: grid;
  gap: 12px;
}

.operational-account-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}

.operational-account-card.linked {
  background: #f7fafb;
}

.operational-account-card h3 {
  margin: 8px 0 6px;
  color: var(--navy);
  font-size: 20px;
}

.operational-account-card p {
  margin: 0;
  color: var(--muted);
}

.operational-account-card button {
  min-height: 42px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  padding: 0 14px;
  background: white;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.operational-account-card button:disabled {
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}

.sales-client-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}

.sales-client-card h3 {
  margin: 8px 0 6px;
  color: var(--navy);
  font-size: 21px;
}

.sales-client-card p,
.sales-client-meta {
  color: var(--muted);
  line-height: 1.48;
}

.sales-client-meta {
  display: grid;
  gap: 4px;
}

.temporary-password-line {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff4c2;
  color: #6d4c00;
  font-weight: 900;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.status-pill.active {
  background: #dff8e6;
  color: #0c6b2e;
}

.status-pill.paused {
  background: #fff0d8;
  color: #9a5a00;
}

.status-pill.warning {
  margin-left: 6px;
  background: #ffe8e8;
  color: #9b111e;
}

.sales-modal-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 25, 47, 0.58);
}

.sales-modal-backdrop[hidden] {
  display: none;
}

.sales-modal-card {
  width: min(720px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.modal-head h2 {
  margin-bottom: 0;
  font-size: 32px;
}

.icon-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-weight: 900;
}

.support-summary {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #cfe7d6;
  border-radius: 8px;
  background: #effaf2;
  color: var(--muted);
}

.support-summary strong {
  color: var(--navy);
  font-size: 18px;
}

.sales-modal-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sales-modal-card input,
.sales-modal-card select,
.sales-modal-card textarea {
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fbfdfe;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.modal-actions button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.sales-card-actions {
  display: grid;
  gap: 8px;
}

.sales-card-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: white;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.empty-state {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fbfdfe;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer img {
  width: 180px;
  height: auto;
}

footer div {
  display: grid;
  gap: 4px;
  text-align: right;
}

footer strong {
  color: var(--navy);
}

footer span {
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 70px;
  }

  .device-showcase {
    min-height: 520px;
  }

  .laptop-device {
    width: 100%;
    right: auto;
    left: 0;
    top: 0;
  }

  .tablet-device {
    right: 4%;
    bottom: 0;
    width: min(420px, 58vw);
  }

  .proof-band,
  .module-groups,
  .module-grid,
  .onboarding-steps,
  .faq-grid,
  .efficiency-grid,
  .plans-grid,
  .workflow-section,
  .sales-stats,
  .sales-form,
  .sales-client-card {
    grid-template-columns: 1fr;
  }

  .sales-wide,
  .sales-form-actions {
    grid-column: span 1;
  }

  .operational-account-card {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-band div:last-child {
    border-bottom: 0;
  }

  .contact-section,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer div {
    text-align: left;
  }

  .workflow-section {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .brand-link img {
    width: 170px;
    max-width: 82vw;
  }

  nav {
    gap: 10px;
    font-size: 13px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .device-showcase {
    min-height: 390px;
  }

  .tablet-device {
    width: 58vw;
    min-width: 220px;
    padding: 8px 10px;
    border-radius: 16px;
  }

  .laptop-device {
    padding: 8px;
    border-radius: 14px;
  }

  .device-bar {
    height: 20px;
  }

  .hero-actions a,
  .contact-actions a {
    width: 100%;
  }

  .workflow-strip {
    grid-template-columns: 1fr;
  }
}
