* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin-top: 75px;
  font-family: 'Poppins', system-ui, sans-serif;
  background: #f9fbff;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------------------------------------------------------
   BUZZWORD ROTATION
----------------------------------------------------------*/
.buzzword {
  font-family: 'Poppins', system-ui, sans-serif;
  color: #1939d7;
  /* purple highlight */
  font-weight: 400;
  display: inline-block;
  opacity: 0;
  margin-top: 10px;
  font-size: 20px;
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ---------------------------------------------------------
   HERO SECTION LAYOUT
----------------------------------------------------------*/
span {
  font-size: 14px;
  font-weight: 600;
}

.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  display: flex;
  justify-content: flex-start;
  /* left align horizontally */
  align-items: flex-start;
  /* top align vertically */
  text-align: left;
}

.hero {
  width: 100%;
  /* adjust image height */
  background-size: cover;
  /* makes the image fill the space */
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px 0;
  /* optional */
}


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* float text above overlay */
}

.hero-content {
  margin: 0 auto;
  text-align: left;
  padding: 20px;
}

.hero-text {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1.2rem;
  margin-top: 10px;
  color: #0d1b2a;
  line-height: 1.6;
  text-align: left;
  width: 80%;
  font-family: 'poppins', system-ui, sans-serif;
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 550;
  color: #4e5a67;
  margin: 0 auto 10px auto;
}

h3 {
  font-size: 16px;
  line-height: 2.2;
  font-weight: 501;
  color: #0052cc;
  margin: 0 auto 10px auto;
}

/* ---------------------------------------------------------
   OPEXINTEL HOMEPAGE BANNER SLIDER
----------------------------------------------------------*/
.opexintel-banner-section {
  width: 100%;
  background: transparent;
  overflow: hidden;
}

.opexintel-banner-title {
  margin: 0;
  padding: 28px 20px 18px;
  font-size: 18px;
  font-weight: 501;
  color: rgb(37, 99, 235);
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.opexintel-banner-swiper {
  width: 100%;
  aspect-ratio: 1920 / 500;
}

.opexintel-banner-slide {
  width: 100%;
  height: 100%;
}

.opexintel-banner-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 40px;
 
}

.opexintel-banner-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.opexintel-banner-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ---------------------------------------------------------
   WATCH DEMO BUTTON
----------------------------------------------------------*/
.hero-watch-btn {

  font-family: 'Poppins', system-ui, sans-serif;
  position: absolute;
  bottom: 12px;
  right: -2%;
  transform: translateX(-50%);
  background: #3561a3;
  color: white;
  font-weight: 500;
  padding: 5px 20px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  z-index: 20;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: 0.2s;

}

.dropdown {
  position: relative;
}

.hero-watch-btn:hover {
  background: #0052cc;
  transform: translateX(-50%) scale(1.05);
}



/* ---------------------------------------------------------
   VIDEO SECTION
----------------------------------------------------------*/
.video-container {
  position: relative;
}

.demo-video-box video {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 500px;
  border-radius: 22px;
  background: rgb(0, 0, 0);
}

.demo-video-preview {
  width: 80%;
  max-width: 900px;
  margin: 30px auto 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  background: #000;
  position: relative;
  z-index: 1;
}

.demo-video-preview video {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.close-preview-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: white;
  color: black;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
}


.hero-video {
  margin: 1rem auto;
  width: 100%;
  max-width: 1400px;
  height: auto;
  object-fit: cover;
  display: block;
}


.badge {
  display: inline-block;
  background: #e0ecff;
  color: var(--black);
  padding: 6px 12px;
  font-size: 1.2rem;
  border-radius: 20px;
  font-weight: 550;
}

.strategic-message {
  padding: 20px 20px;
  font-family: 'Poppins', system-ui, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Strategic Header */
.strategic-header {
  text-align: center;
  margin-bottom: 20px;
}

.strategic-header h2 {
  font-size: 18px;
  font-weight: 501;
  color: #2563eb;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Poppins', system-ui, sans-serif;
}

.strategic-header p {
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  color: #333;
}

.capability-section h2 {
  text-align: center;
  font-size: 18px;
  font-weight: 501;
  color: #2563eb;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Poppins', system-ui, sans-serif;
}

.capability-box {
  background: linear-gradient(135deg, rgba(205, 201, 237, 0.35), rgba(191, 228, 245, 0.30));
  border-radius: 28px;
  padding: 30px;
  width:80%;
  text-align: left;
  margin: 0px auto;
}

.capability-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.capability-list li {
  position: relative;
  background: linear-gradient(90deg, rgb(205 201 237 / 62%), rgb(191 228 245 / 77%));
  ;
  border-radius: 18px;
  padding: 10px;
  font-size: 14px;
  color: #0f172a;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.capability-list li {
  position: relative;
  overflow: hidden;
}

.capability-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #6366f1, #2563eb);
}

/* Responsive */

@media (max-width: 768px) {

  .strategic-header h2,
  .capability-section h2 {
    font-size: 30px;
  }

  .strategic-header p {
    font-size: 16px;
  }

  .capability-box {
    padding: 25px;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }
}
/* Wrapper */
.trusted-section {
  font-family: 'Poppins', system-ui, sans-serif;
  background: #f9fbff;
  text-align: left;
}

/* Title */
.trusted-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  width: 80%;
  margin: 1rem auto;
  color: #0f172a;
  margin-top: 0px;
  font-family: 'Poppins', system-ui, sans-serif;
  text-align: left;
}

/* Subtitle */
.trusted-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 700px;
  margin: 10px auto;
  text-align: center;
}

/* Grid */
.trusted-grid {
  font-family: 'Poppins', system-ui, sans-serif;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 80%;
  margin: 0 auto;
}

/* Card */
.trusted-card {
  background: linear-gradient(90deg, rgb(205 201 237 / 62%), rgb(191 228 245 / 77%));
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  /* ensures all cards same height */
}

/* Icon */
.trusted-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 12px;
}

.trusted-card-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.5;
  stroke: #7069f4;
}

/* Title — fixed height */
.trusted-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;

  min-height: 28px;
  /* uniform title height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Description — grows but stays aligned */
.trusted-card-text {
  font-size: 0.82rem;
  color: #0f172a;
  text-align: left;
  margin: 0px 0;
  margin-top: 10px;
  margin-bottom: 10px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tag — always bottom */
.trusted-card-tag {
  display: inline-block;
  font-size: 0.9rem;
  background: linear-gradient(90deg, rgb(205 201 237 / 62%), rgb(191 228 245 / 77%));
  padding: 4px 20px;
  border-radius: 10px;
  font-weight: 500;
  margin-top: 10px;
}


/* 🌟 Quick Access Section */
.quick-access {
  align-items: center;
  display: block;
  margin: 2rem auto;
  padding: 10px;
  border-radius: 1.2rem;
  /* background: linear-gradient(90deg, rgba(205, 201, 237, 0.62), rgba(191, 228, 245, 0.77)); */
  text-align: center;
  scroll-behavior: smooth;
}

.quick-access .qa-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
  padding: 0 16px;
  box-sizing: border-box;
}


/* Title inside each section */
.qa-section-title {
  font-size: 18px;
  font-weight: 501;
  color: #2563eb;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', system-ui, sans-serif;
}

.qa-divider {
  margin: 1rem auto;
}

.unified-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  align-items: stretch;
}

/* 🌟 Shared Card Styles */
.qa-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  height: 440px;
  overflow: hidden;
  box-sizing: border-box;
}

.qa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* 🌟 Video Cards */
.video-card {
  width: 100%;
}

.qa-thumb {
  position: relative;
  width: 100%;
  height: 290px;
  flex: 0 0 290px;
  overflow: hidden;
  background: #000;
  border-radius: 12px 12px 0 0;
}

.qa-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .qa-thumb img {
  transform: scale(1.05);
}

.qa-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  color: #ffffffdd;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

/* 🌟 Video & Prompt Card Info Wrapper */
.qa-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 16px 14px 12px;
  box-sizing: border-box;
}

.qa-info h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
  text-align: center;
}

/* 🌟 Prompt Cards (scrollable content) */
.prompt-card {
  width: 100%;
  height: 440px;
  padding: 0;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.prompt-type-title {
  font-size: 0.8rem;
  font-weight: 550;
  color: #0f172a;
  margin-bottom: 6px;
  text-align: center;
}

.prompt-subtype {
  font-size: 0.8rem;
}

.prompt-card > .qa-info {
  flex: 1;
  overflow: hidden;
  padding: 20px 16px 12px;
}

.qa-prompt-content {
  flex: 1;
  min-height: 0;
  margin: 14px 0 8px;
  padding-right: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

.prompt-card p {
  text-align: left;
  font-size: 0.8rem;
  color: #0a0a0a;
  line-height: 1.5;
  margin: 0;
}

/* Scrollbar */
.qa-prompt-content::-webkit-scrollbar {
  width: 6px;
}

.qa-prompt-content::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 3px;
}

.qa-prompt-content::-webkit-scrollbar-track {
  background-color: #f1f5f9;
  border-radius: 3px;
}

/* Footer inside cards */
.qa-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 10px;
  margin-top: auto;
  flex: 0 0 auto;
  gap: 12px;
  border-top: 1px solid #e5e7eb;
}

.qa-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qa-btn {
  padding: 6px 14px;
  background: #2563ebc9;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.qa-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}


/* Why Choose Section */
.why-choose {
  font-family: 'Poppins', system-ui, sans-serif;
  padding: 40px 10px;
  background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
}

.why-choose .why-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.why-choose .why-text {
  flex: 1 1 480px;
  color: #0f172a;
}

.why-choose .why-heading {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 25px;
  font-family: 'Poppins', system-ui, sans-serif;
  text-align: center;
}

.why-choose .why-subheading {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 24px;
}

.why-choose .why-list {
  font-family: 'Poppins', system-ui, sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
}

.why-choose .why-list li {
  margin-bottom: 10px;
  display: flex;
  font-size: 14px;
  align-items: center;
}

.why-choose .why-list li span {
  color: #f9fafb;
  font-size: 14px;
  margin-right: 10px;
}

/* Image + Badge */
.why-choose .why-image {
  flex: 1 1 400px;
  position: relative;
}

.why-choose .why-img-box {
  background: #f9fafb;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-choose .why-img-box img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.why-choose .why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #bfd1f5ed;
  color: black;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.why-choose .why-badge span {
  font-weight: 400;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  font-family: 'Poppins', system-ui, sans-serif;
  background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
  padding: 10px 10px 40px;
  text-align: center;
  color: #0f0f0f;
}

.cta-section .cta-wrapper {
  max-width: 1000px;
  margin: auto;
}

.cta-section .cta-heading {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Poppins', system-ui, sans-serif;
}

.cta-section .cta-subheading {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 10px 0px;
}

.cta-section .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-section .cta-btn {
  padding: 14px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-section .cta-btn.primary {
  background: rgba(124, 58, 237, 0.42);
  color: #0d0d0d;
}

.cta-section .cta-btn.primary:hover {
  background: rgba(124, 58, 237, 0.55);
}

.cta-section .cta-btn.secondary {
  border: 2px solid #0f0f0f;
  color: #0f0f0f;
}

.cta-section .cta-btn.secondary:hover {
  background: #0f0f0f;
  color: #ffffff;
}

/* SECTION TITLE */
.avatar-placeholder {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 0 0 70px;
  user-select: none;
}


.thrive-section,
.faq-section {
  text-align: center;
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 10px;
}


.thrive-title,
.faq-title {
  font-size: 18px;
  font-weight: 501;
  color: #2563eb;
}

/* .thrive-underline {
  width: 80px;
  height: 3px;
  margin: 10px auto 30px;
} */

/* TESTIMONIAL SLIDER */
.thrive-slide {
  padding: 20px 40px;
  min-height: 280px;
}

.thrive-text {
  font-size: 14px;
  line-height: 1.8;
  max-width: 900px;
  margin: auto;
  color: #0f172a;
  text-align: left;
  }


.thrive-profile {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.thrive-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.thrive-name {
  font-size: 1rem;
  font-weight: 600;
}

.thrive-role {
  font-size: 1rem;
  color: #777;
}



/* FAQ */
.faq-item {
  max-width: 900px;
  margin: 10px auto;
  background: #eef2ff;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 10px;
  background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
  border: none;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  font-family: 'Poppins', system-ui, sans-serif;
}

.faq-answer {
  text-align: left;
  padding: 18px;
  display: none;
  color: #444;
}

/* OPEN STATE */
.faq-active .faq-answer {
  display: block;
}

/* Swiper Arrows */
.thrive-prev,
.thrive-next {
  color: #000;
}

.swiper-horizontal .swiper-button-next,
.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev {
  font-size: 1rem;
  font-weight: 550;
}

.engagement-models {
  padding: 40px 8%;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 18px;
  font-weight: 501;
  color: #2563eb;
}

.section-header p {
  max-width: 850px;
  font-size: 16px;
  margin: auto;
  color: #0f172a;
  line-height: 1.8;
  text-align: left;
}

.engagement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.engagement-card {
  background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
  border-radius: 20px;
  padding: 35px;
  color: #0f172a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.engagement-card:hover {
  transform: translateY(-8px);
}

.featured {
  transform: scale(1.03);
}

.card-price {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.engagement-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
  text-align: left;
  margin-left: 0px;
}

.engagement-card ul {
  list-style: none;
  font-size: 14px;
  padding: 0;
  margin: 0 0 25px;
}

.engagement-card ul li {
  padding: 5px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #0f172a;
}

.engagement-card ul li:last-child {
  border-bottom: none;
}

.card-description {
  margin-top: auto;
  font-size: 14px;
  color: #0f172a;
  line-height: 1.7;
  margin-bottom: 25px;
}

.card-btn {
  background: rgba(37, 99, 235, 0.79);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.transformation-cta {
    padding: 40px 10%;
    text-align: center;
    color: #0f172a;
    width: 80%;
    border-radius: 20px;
    margin: 0px auto;
    margin-top: 20px;
    background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
}

.transformation-cta h2 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #2563eb;
  text-align: left;
}

.transformation-cta p {
  max-width: 1000px;
  margin: 0 auto 20px;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
  color: #0f172a;
  text-align: left;
}

.cta-box {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 35px;
  background: linear-gradient(87deg, rgb(205 201 237 / 73%), rgb(191 228 245 / 74%));
  border-radius: 18px;
}

.cta-btn {
  margin-top: 20px;
  background: rgba(37, 99, 235, 0.79);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 992px) {
  .engagement-cards {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 1200px) {
  .unified-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .quick-access {
    padding-inline: 0;
  }

  .quick-access .qa-wrapper {
    padding-inline: 12px;
  }

  .unified-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .qa-card,
  .prompt-card {
    height: auto;
    min-height: 420px;
  }

  .qa-thumb {
    height: 240px;
    flex-basis: 240px;
  }

  .qa-prompt-content {
    max-height: 270px;
  }
}
