:root {
  --primary: #0f4c81;
  --accent: #1e88e5;
  --dark: #0e1726;
  --bg: #f6f9fc;
  --shadow-sm: 0 4px 20px rgba(15, 76, 129, 0.05);
  --shadow-lg: 0 20px 40px rgba(15, 76, 129, 0.12);
  --glass: rgba(255, 255, 255, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: Vazirmatn, sans-serif;
  background-color: var(--bg);
  color: #394150;
  overflow-x: hidden;
}

.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background:
    radial-gradient(at 0% 0%, rgba(30, 136, 229, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(30, 136, 229, 0.08) 0px, transparent 50%);
}

.container {
  width: min(1280px, 92%);
  margin: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 {
  transition-delay: 0.1s;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--glass);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.nav {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu {
  display: flex;
  gap: 35px;
  list-style: none;
}
.menu a {
  text-decoration: none;
  color: #394150;
  font-weight: 500;
  transition: 0.3s;
}
.menu a:hover {
  color: var(--accent);
}

/* استایل‌های دراپ‌داون محصولات */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0; /* راست‌چین برای زبان فارسی */
  background-color: #ffffff;
  min-width: 280px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  border-radius: 12px;
  border-top: 3px solid var(--accent);
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* انیمیشن نرم و زیبا */
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 5px;
}

/* نمایش دراپ‌داون هنگام هاور */
.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  gap: 15px;
}

.dropdown-item:hover {
  background-color: var(--bg);
}

.dropdown-item .icon {
  font-size: 24px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f0f7ff;
  border-radius: 8px;
}

.dropdown-item-text {
  display: flex;
  flex-direction: column;
}

.dropdown-item-text h4 {
  margin: 0;
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  transition: color 0.3s;
}

.dropdown-item:hover .dropdown-item-text h4 {
  color: var(--accent);
}

.dropdown-item-text p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #64748b;
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 12px 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  box-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
  transition: 0.3s;
  font-family: inherit;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(30, 136, 229, 0.3);
  color: white;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(15, 76, 129, 0.2);
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(15, 76, 129, 0.05);
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 80px 0;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: 3.2rem;
  line-height: 1.4;
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--accent);
}
.hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 15px;
}

.dashboard-wrapper {
  position: relative;
  perspective: 1000px;
}
.dashboard-ui {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid white;
  border-radius: 32px;
  padding: 25px;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dashboard-wrapper:hover .dashboard-ui {
  transform: rotateY(0deg) rotateX(0deg);
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.dash-title {
  font-weight: bold;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}
.dash-body {
  background: white;
  border-radius: 20px;
  height: 260px;
  padding: 20px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.floating-widget {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}
.fw-1 {
  top: -20px;
  right: -30px;
  color: #27c93f;
  animation-delay: 0s;
}
.fw-2 {
  bottom: 40px;
  left: -40px;
  color: var(--primary);
  animation-delay: 3s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.section {
  padding: 90px 0;
}
.title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.title h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 800;
}
.title p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Industries Section */
.industries-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.industries-badge {
  display: inline-block;
  background: rgba(30, 136, 229, 0.1);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.industries-header h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 800;
}
.industries-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry {
  background: white;
  border-radius: 28px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-align: center;
  transition: 0.3s;
}
.industry:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 136, 229, 0.2);
}
.industry-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.1),
    rgba(15, 76, 129, 0.05)
  );
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry h3 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: bold;
}
.industry p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Bento Layout */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bento-card {
  background: white;
  border-radius: 32px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 18px;
  background: rgba(30, 136, 229, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bento-card h3 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.bento-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color: white;
}
.bento-large h3,
.bento-large p {
  color: white;
}
.bento-large .icon-box {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.bento-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.bento-features span {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.bento-wide {
  grid-column: span 2;
}

/* Animated Decor */
@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(39, 201, 63, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(39, 201, 63, 0);
  }
}
@keyframes eq-bar {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}
.live-status {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.live-dot {
  width: 10px;
  height: 10px;
  background: #27c93f;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.eq-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 25px;
}
.eq-bar {
  width: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transform-origin: bottom;
}
.eq-bar:nth-child(1) {
  height: 15px;
  animation: eq-bar 1.2s infinite ease-in-out;
}
.eq-bar:nth-child(2) {
  height: 25px;
  animation: eq-bar 1s infinite ease-in-out 0.2s;
}
.eq-bar:nth-child(3) {
  height: 10px;
  animation: eq-bar 1.4s infinite ease-in-out 0.4s;
}
.eq-bar:nth-child(4) {
  height: 20px;
  animation: eq-bar 1.1s infinite ease-in-out 0.1s;
}

/* Trust & Stats */
.stats-bento {
  background: linear-gradient(135deg, white, #f8fafc);
  border-radius: 40px;
  padding: 60px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.stats-info h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 15px;
}
.stats-info p {
  color: #555;
  line-height: 1.7;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.stat-item {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 5px;
  font-family: sans-serif;
}
.stat-label {
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Clients Logos Section */
.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.logo-box {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}
.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  color: var(--accent);
}

/* FAQ Section */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: 0.3s;
}
.faq-question {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: var(--dark);
  font-size: 1.1rem;
  transition: 0.3s;
}
.faq-question i {
  transition: transform 0.4s ease;
  color: #888;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq-answer-inner {
  overflow: hidden;
  padding: 0 30px;
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}
.faq-item.active {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.faq-item.active .faq-question {
  color: var(--primary);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.active .faq-answer-inner {
  padding-bottom: 25px;
}

/* Why Us Section */
.why-us {
  background: var(--dark);
  border-radius: 40px;
  padding: 80px 60px;
  color: white;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
  align-items: center;
}
.why-us h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
  line-height: 1.4;
}
.why-us p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.why-circle {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

/* Swiper Projects */
.swiper {
  padding: 20px 10px !important;
}
.swiper-slide {
  background: white;
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.swiper-slide h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.swiper-controls-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.swiper-btn-custom {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  color: var(--primary);
  transition: 0.3s;
  border: 1px solid #eee;
}
.swiper-btn-custom:hover {
  background: var(--primary);
  color: white;
}
.swiper-pagination-custom {
  position: static !important;
  width: auto !important;
}
.swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

/* Compact CTA & Form */
.cta-section {
  background: white;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin: 50px auto;
  max-width: 950px;
}
.cta-content {
  padding: 45px;
  background: linear-gradient(135deg, var(--bg), white);
}
.cta-content h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 15px;
}
.cta-list {
  list-style: none;
  margin: 25px 0;
}
.cta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #444;
}
.cta-list i {
  color: #27c93f;
}
.cta-form {
  padding: 45px;
  background: white;
}
.form-group {
  margin-bottom: 16px;
  width: 100%;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: 0.3s;
  background: #fafafa;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}
.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  margin-top: 5px;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 30px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: white;
}
.footer-desc {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--accent);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: white;
  transform: translateX(-5px);
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #ccc;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: #ffffff;
  /* padding: 35px 25px; */
  border-radius: 16px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04); */
  text-align: center;
  /* border: 1px solid #f1f5f9; */
  /* transition: all 0.3s ease; */
  display: flex;
  flex-direction: column;
  align-items: center;
}


.card-icon {
  font-size: 50px;
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7ff;
  border-radius: 50%;
  color: var(--accent);
}

.card-title {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.card-desc {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.card-btn {
  display: inline-block;
  padding: 10px 24px;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s;
  width: 100%;
}

.card-btn:hover {
  background-color: var(--accent);
  color: #ffffff;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
  .hero,
  .stats-bento,
  .why-us-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-btns {
    justify-content: center;
  }
  .hero {
    text-align: center;
    padding: 60px 0;
  }
  .floating-widget {
    display: none;
  }
}

/* Mobile Specific Fixes */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  /* Navbar Mobile Fix */
  .nav .btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  .logo {
    font-size: 1.2rem;
  }
  .logo i {
    width: 22px;
    height: 22px;
  }
  .menu {
    display: none;
  }

  /* Hero Mobile Fix */
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .hero p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* Typography & Layout adjustments */
  .title h2,
  .industries-header h2 {
    font-size: 1.7rem;
  }
  .industries-header p {
    font-size: 1rem;
  }
  .stats-info h2 {
    font-size: 1.8rem;
  }
  .stat-num {
    font-size: 2.2rem;
  }
  .why-us h2 {
    font-size: 1.8rem;
  }

  .bento {
    grid-template-columns: 1fr;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .bento-large,
  .bento-wide {
    grid-column: span 1;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stats-bento {
    padding: 30px 20px;
  }
  .why-us {
    padding: 40px 20px;
    border-radius: 24px;
  }
  .industry {
    padding: 25px;
  }
  .bento-card {
    padding: 25px;
  }

  .cta-content,
  .cta-form {
    padding: 30px 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .dash-body {
    height: 200px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .faq-answer-inner {
    padding: 0 20px;
  }
}
