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

@font-face {
    font-family: 'Peyda';
    src: url('fonts/PEYDAFANUM-THIN.woff2') format('woff2'),
        url('fonts/PEYDAFANUM-THIN.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('fonts/PEYDAFANUM-LIGHT.woff2') format('woff2'),
        url('fonts/PEYDAFANUM-LIGHT.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('fonts/PEYDAFANUM-REGULAR.woff2') format('woff2'),
        url('fonts/PEYDAFANUM-REGULAR.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('fonts/PEYDAFANUM-MEDIUM.woff2') format('woff2'),
        url('fonts/PEYDAFANUM-MEDIUM.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('fonts/PEYDAFANUM-BOLD.woff2') format('woff2'),
        url('fonts/PEYDAFANUM-BOLD.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url('fonts/PEYDAFANUM-BLACK.woff2') format('woff2'),
        url('fonts/PEYDAFANUM-BLACK.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: 'Peyda', sans-serif;
    background: #06110d;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.8
}

input,
select,
textarea,
button,
option {
    font-family: 'Peyda', sans-serif;
}

input,
select,
textarea {
    direction: rtl;
}

::placeholder {
    font-family: 'Peyda', sans-serif;
}

a {
    text-decoration: none
}


.container {
    width: 90%;
    max-width: 1280px;
    margin: auto
}

.section {
    padding: 110px 0;
    position: relative
}

.dark {
    background: #081611
}

.dark .feature:hover,
.dark .metric:hover,
.dark .step:hover,
.dark .testimonial:hover,
.dark .cta-box:hover {
  border-color: #FFAA00;
  box-shadow: 0 0 15px rgba(255,170,0,.25), 0 0 40px rgba(255,170,0,.12);
}

.dark .feature:hover svg,
.dark .metric:hover svg,
.dark .step:hover svg,
.dark .cta-box:hover svg {
  stroke: #FFAA00;
}


.trust.section {
  min-height: auto;
  height: auto;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}


.header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, .2);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0
}

nav {
    display: flex;
    gap: 30px
}

nav a {
    color: #c7d4cd
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00ff9d
}

.btn {
    background: #00ff9d;
    color: #04110c;
    padding: 14px 24px;
    border-radius: 14px;
    display: inline-block;
    font-weight: bold
}

.secondary {
    background: transparent;
    border: 1px solid #FFAA00;
    color: #FFAA00
}

.secondary:hover {
    background: #FFAA00;
    color: #04110c;
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.3), 0 0 35px rgba(255, 170, 0, 0.15);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .05);
    margin-bottom: 25px;
    color: #FFAA00
}

h1 {
    font-size: 68px;
    line-height: 1.2;
    margin-bottom: 25px
}

p {
    color: #a4b6af
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin: 35px 0
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 40px
}

.card,
.service,
.feature,
.testimonial,
.metric,
.step,
.show-card,
.dash-box,
.workflow {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 24px;
    padding: 30px
}

.card h3,
.metric h3 {
    color: #00ff9d;
    font-size: 34px
}

.dashboard {
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 0 80px rgba(0, 255, 157, .08)
}

.dash-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0
}

.large {
    height: 220px
}

.workflow {
    text-align: center
}

.title {
    text-align: center;
    margin-bottom: 60px
}

.title span {
    color: #00ff9d
}

.dark .title span {
    color: #FFAA00
}

.title h2 {
    font-size: 48px;
    margin-top: 16px
}

.grid.three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.grid.four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px
}

.service{
display:flex;
align-items:center;
justify-content:center;
gap:12px;

font-size:18px;
font-weight:500;

padding:28px 24px;

background:#112A20;
border-radius:22px;

border:1px solid rgba(255,255,255,0.05);

transition:all .3s ease;
}

.service svg{
width:24px;
height:24px;
stroke:#FFAA00;
}

.service:hover{
transform:translateY(-4px);
border-color:#FFAA00;
box-shadow:0 0 15px rgba(255,170,0,.25), 0 0 40px rgba(255,170,0,.12);
}


.showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.workflow-big {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.workflow-big div {
    padding: 35px;
    border-radius: 22px;
    background: rgba(0, 255, 157, .08);
    text-align: center;
    border: 1px solid rgba(0, 255, 157, .25)
}

.panel-preview {
    height: 500px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0d1d18, #0f2e24);
    border: 1px solid rgba(255, 255, 255, .08)
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px
}

.metric,
.feature,
.tech-grid div,
.testimonial{

transition: all .35s ease;

border:1px solid rgba(255,255,255,0.06);

position:relative;
overflow:hidden;

}

/* =========================
GLOBAL BOX HOVER EFFECT
========================= */

.metric,
.feature,
.tech-grid div,
.testimonial,
.step,
.cta-box{

transition:
transform .35s ease,
border-color .35s ease,
box-shadow .35s ease,
background .35s ease;

border:1px solid rgba(255,255,255,0.06);

position:relative;
overflow:hidden;

}

/* hover */

.metric:hover,
.feature:hover,
.tech-grid div:hover,
.testimonial:hover,
.step:hover,
.cta-box:hover{

transform:translateY(-6px);

border-color:#00FF9D;

box-shadow:
0 0 15px rgba(0,255,157,.25),
0 0 40px rgba(0,255,157,.12);

background:rgba(0,255,157,.03);

}

/* titles */

.metric:hover h3,
.feature:hover h3,
.tech-grid div:hover h3,
.testimonial:hover h3,
.step:hover h3,
.cta-box:hover h3{

color:#00FF9D;

}

/* icons */

.metric:hover svg,
.feature:hover svg,
.tech-grid div:hover svg,
.step:hover svg,
.cta-box:hover svg{

stroke:#00FF9D;

}



/* =========================
NAVBAR HOVER
========================= */

nav a{

position:relative;

transition:
color .3s ease,
transform .3s ease;

}

/* text color */

nav a:hover{

color:#00FF9D;
transform:translateY(-2px);

}

/* animated underline */

nav a::after{

content:"";

position:absolute;

right:0;
bottom:-6px;

width:0%;
height:2px;

background:#00FF9D;

border-radius:10px;

transition:width .3s ease;

}

/* line animation */

nav a:hover::after{

width:100%;

}



/* =========================
BUTTON HOVER
========================= */

button:not(.clara-menu-item),
.btn:not(.clara-menu-item),
.cta-btn{

transition:
all .35s ease;

}

.feature{
transition:all .35s ease;
}

.feature:hover{
transform:translateY(-6px);
border-color:#00FF9D;
box-shadow:
0 0 15px rgba(0,255,157,.25),
0 0 40px rgba(0,255,157,.12);
background:rgba(0,255,157,.03);
}



.feature:hover svg{
stroke:#00FF9D;
}

.feature:hover span{
color:#00FF9D;
}


button:not(.clara-menu-item):hover,
.btn:not(.clara-menu-item):hover,
.cta-btn:hover{

transform:translateY(-3px);

box-shadow:
0 0 15px rgba(0,255,157,.3),
0 0 35px rgba(0,255,157,.15);

background:#00FF9D;
color:#0B1F17;

}


.features-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
margin-top:40px;
}

@media (max-width:1024px){
.features-grid{
grid-template-columns:repeat(2,1fr);
}
}

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


/* hover effect */

.metric:hover,
.feature:hover,
.tech-grid div:hover,
.testimonial:hover{

transform:translateY(-6px);

border-color:#00FF9D;

box-shadow:
0 0 12px rgba(0,255,157,.25),
0 0 35px rgba(0,255,157,.15);

}

/* متن داخل باکس */

.metric:hover h3,
.feature:hover h3,
.tech-grid div:hover h3,
.testimonial:hover h3{

color:#00FF9D;

}

/* آیکن ها */

.metric:hover svg,
.feature:hover svg,
.tech-grid div:hover svg{

stroke:#00FF9D;

}


.cta-box {
    text-align: center;
    padding: 90px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 255, 157, .15), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .08)
}

.cta-box h2 {
    font-size: 52px;
    margin-bottom: 20px
}

.footer {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .12;
    z-index: -1
}

.glow1 {
    width: 500px;
    height: 500px;
    background: #00ff9d;
    top: -100px;
    right: -100px
}

.glow2 {
    width: 400px;
    height: 400px;
    background: #00d084;
    bottom: -100px;
    left: -100px
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    opacity: .15
}

@media(max-width:992px) {

    .hero-grid,
    .grid.three,
    .grid.four,
    .showcase,
    .workflow-big,
    .metrics,
    .timeline {
        grid-template-columns: 1fr
    }

    .stats {
        flex-direction: column
    }

    h1 {
        font-size: 42px
    }

    .title h2,
    .cta-box h2 {
        font-size: 34px
    }

    nav {
        display: none
    }

    .glow {
        display: none;
    }
}

.feature{
display:flex;
align-items:center;
justify-content:center;

gap:12px;

text-align:center;

font-size:18px;
font-weight:500;

padding:26px 24px;
}

.feature svg{
width:22px;
height:22px;

flex-shrink:0;

position:relative;
top:1px; /* تراز دقیق با متن */
}

.feature span{
line-height:1;
display:flex;
align-items:center;
}


.feature,
.metric,
.step,
.testimonial,
.cta-box{

position:relative;

border-radius:20px;

border:1px solid rgba(255,255,255,0.06);

transition:
transform .35s ease,
box-shadow .35s ease,
border-color .35s ease;

overflow:hidden;

}


/* hover movement */

.feature:hover,
.metric:hover,
.step:hover,
.testimonial:hover,
.cta-box:hover{

transform:translateY(-6px);

border-color:#00FF9D;

box-shadow:
0 0 15px rgba(0,255,157,.25),
0 0 40px rgba(0,255,157,.12);

}


/* animated glow border */

.feature::before,
.metric::before,
.step::before,
.testimonial::before,
.cta-box::before{

content:"";

position:absolute;

inset:-2px;

border-radius:inherit;

background:linear-gradient(
120deg,
transparent,
rgba(0,255,157,.6),
transparent
);

opacity:0;

transition:opacity .35s ease;

animation:glowMove 3s linear infinite;

}

.dark .feature::before,
.dark .metric::before,
.dark .step::before,
.dark .testimonial::before,
.dark .cta-box::before {
  background: linear-gradient(120deg, transparent, rgba(255,170,0,.6), transparent);
}


/* show glow on hover */

.feature:hover::before,
.metric:hover::before,
.step:hover::before,
.testimonial:hover::before,
.cta-box:hover::before{

opacity:1;

}


@keyframes glowMove{

0%{
transform:translateX(-100%);
}

100%{
transform:translateX(100%);
}

}


.tech-section {
  padding: 80px 16px;
  overflow: hidden;
}

.tech-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.tech-carousel {
  margin-top: 40px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.tech-carousel .swiper-wrapper {
  transition-timing-function: linear !important;
}

.tech-carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  width: auto !important;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.tech-carousel-item:hover {
  border-color: #FFAA00;
  background: radial-gradient(circle at top, rgba(255,170,0,.14), #0b1f17);
  box-shadow: 0 0 25px rgba(255,170,0,.18);
}

.tech-scroll-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-scroll-icon img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(0.9);
  transition: filter .3s ease;
}

.tech-carousel-item:hover .tech-scroll-icon img {
  filter: drop-shadow(0 0 8px rgba(255,170,0,.6))
          brightness(0) invert(1) sepia(1) saturate(8) hue-rotate(30deg);
}

.tech-carousel-item span {
  font-size: 13px;
  color: #cdd6d2;
  white-space: nowrap;
}

.services-carousel-wrap {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  direction: ltr;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.services-carousel-row {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.services-carousel-row .swiper-wrapper {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  justify-content: space-around;
  gap: 20px;
}

.services-carousel-row[data-dir="left"] .swiper-wrapper {
  animation: marquee-left 30s linear infinite;
}

.services-carousel-row[data-dir="right"] .swiper-wrapper {
  animation: marquee-right 30s linear infinite;
}

.services-carousel-row:hover .swiper-wrapper {
  animation-play-state: paused;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.service-item.swiper-slide {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  width: auto !important;
  white-space: nowrap;
  font-size: 15px;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
  user-select: none;
}

.service-item:nth-child(even) {
  border-color: #00FF9D;
  background: radial-gradient(circle at top, rgba(0,255,157,.2), transparent);
  box-shadow: 0 0 25px rgba(0,255,157,.25);
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #00ff9d;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  mix-blend-mode: difference;
}

.cursor.cursor-active {
  width: 38px;
  height: 38px;
  background: rgba(0, 255, 157, 0.18);
  border-color: #00ff9d;
}

/* ==========================================
   PANEL SIDEBAR – Disable hover effect on menu buttons
   ========================================== */
.clara-menu-item.btn.secondary,
.clara-menu-item.btn.secondary:hover,
.clara-menu-item.btn.secondary:focus,
.clara-menu-item.btn.secondary:active {
  background: transparent !important;
  border: 1px solid #FFAA00 !important;
  color: #FFAA00 !important;
  box-shadow: none !important;
  transform: none !important;
}
.clara-menu-item.btn.secondary.active {
  background: rgba(255, 170, 0, 0.12) !important;
}

/* Panel form controls */
.clara-input {
  width: 100%;
  direction: rtl;
  text-align: right;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 20, 15, 0.75);
  color: #ecf6f1;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.clara-input-ltr {
  direction: ltr;
  text-align: end !important;
}

.clara-input:focus {
  border-color: #00ff9d;
  box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.14);
  background: rgba(7, 30, 22, 0.9);
}

select.clara-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #9ed8c1 50%),
    linear-gradient(135deg, #9ed8c1 50%, transparent 50%);
  background-position:
    calc(16px) calc(50% - 3px),
    calc(10px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-left: 34px;
}

select.clara-input option {
  background: #0d2018;
  color: #ecf6f1;
}

/* ==========================================
   FIX: Prevent horizontal scroll on mobile
   ========================================== */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

.glow {
    display: none !important;
}

.feature::before,
.metric::before,
.step::before,
.testimonial::before,
.cta-box::before {
    inset: -2px !important;
    pointer-events: none !important;
}

.tech-section {
    overflow-x: hidden !important;
}

.cursor {
    display: none !important;
}

@media(max-width:768px) {
    .cta-box {
        padding: 40px 20px !important;
    }
    .section {
        padding: 60px 0 !important;
    }
    .panel-preview {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
    }
    .panel-preview img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .tech-carousel {
        overflow: visible !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }
    .tech-carousel .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        transform: none !important;
        transition: none !important;
    }
    .tech-carousel-item {
        padding: 12px 10px !important;
        gap: 6px !important;
        border-radius: 12px !important;
    }
    .tech-scroll-icon {
        width: 28px !important;
        height: 28px !important;
    }
    .tech-scroll-icon img {
        width: 20px !important;
        height: 20px !important;
    }
    .tech-carousel-item span {
        font-size: 10px !important;
    }
}

@media(max-width:480px) {
    .tech-carousel .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .tech-scroll-icon {
        width: 24px !important;
        height: 24px !important;
    }
    .tech-scroll-icon img {
        width: 18px !important;
        height: 18px !important;
    }
    .services-carousel-row[data-dir="left"] .swiper-wrapper,
    .services-carousel-row[data-dir="right"] .swiper-wrapper {
        animation-duration: 10s !important;
    }
}

@media(max-width:768px) {
    .nav {
        justify-content: flex-start !important;
        gap: 10px !important;
    }
    .logo {
        margin-left: auto !important;
    }
    .btn {
        padding: 10px 16px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }
    .services-carousel-row[data-dir="left"] .swiper-wrapper {
        animation-duration: 15s !important;
    }
    .services-carousel-row[data-dir="right"] .swiper-wrapper {
        animation-duration: 15s !important;
    }
}

.faq-item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 24px;
    margin-bottom: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .3s ease;
}

.faq-item:hover {
    border-color: #FFAA00;
}

.faq-q {
    padding: 22px 28px;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-q::after {
    content: '+';
    font-size: 22px;
    color: #FFAA00;
    transition: transform .3s ease;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    padding: 0 28px;
    overflow: hidden;
    color: #a4b6af;
    line-height: 1.8;
    transition: max-height .4s ease, padding .4s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 28px 22px;
}

/* Panel grid - mobile full width sidebar */
.section-num {
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.15);
  letter-spacing: 3px;
  font-family: 'Courier New', monospace;
  direction: ltr;
  user-select: none;
  z-index: 2;
}

.section-reveal {
  position: relative;
}

.section-reveal .service,
.section-reveal .feature,
.section-reveal .testimonial,
.section-reveal .show-card,
.section-reveal .step {
  opacity: 1;
  transform: none;
}

.cta-num {
  position: relative;
  top: auto;
  left: auto;
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}

.panel-grid {
    display: grid !important;
    grid-template-columns: minmax(220px,280px) 1fr !important;
    gap: 14px !important;
    align-items: start !important;
}

@media(max-width:768px) {
    .panel-grid {
        grid-template-columns: 1fr !important;
    }
    .panel-grid aside {
        position: static !important;
        width: 100% !important;
    }
}


