/* Home Page Styles
--------------------------------------------- */

/* Hero Section */
.dfstudio-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.dfstudio-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.12) 0, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.1) 0, transparent 50%);
  animation: dfstudio-glow-pulse 8s ease-in-out infinite;
}

@keyframes dfstudio-glow-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.dfstudio-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.dfstudio-hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin: 1.5rem 0;
  line-height: 1.1;
}

.dfstudio-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.dfstudio-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.dfstudio-hero-image {
  margin-top: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(59, 130, 246, 0.3);
  animation: dfstudio-float 6s ease-in-out infinite;
}

@keyframes dfstudio-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.dfstudio-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
}

/* Section Base */
.dfstudio-section {
  padding: 5rem 0;
  position: relative;
}

.dfstudio-section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.dfstudio-section-header .dfstudio-section-subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}

/* Gallery Section */
.dfstudio-gallery {
  padding-left: 0;
  padding-right: 0;
}

.dfstudio-gallery .dfstudio-container {
  max-width: 1900px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.dfstudio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
}

.dfstudio-gallery-item {
  position: relative;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: 16/9;
  background: transparent;
  border: none;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.dfstudio-gallery-item:hover {
  transform: translateY(-4px);
}

.dfstudio-gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.dfstudio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.dfstudio-gallery-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dfstudio-gallery-item:hover .dfstudio-gallery-overlay {
  opacity: 1;
}

.dfstudio-gallery-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.dfstudio-gallery-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

/* Features Section */
.dfstudio-features {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 6rem;
}

.dfstudio-features-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://oss.digitfold.com/img/2025/12/20251208152151777.jpg');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  z-index: 0;
}

.dfstudio-features .dfstudio-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0 1.5rem;
}

.dfstudio-features .dfstudio-section-header {
  text-align: center;
  margin-bottom: 5.5rem;
}

.dfstudio-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9rem;
  max-width: 1200px;
  margin: 0 auto -3rem; /* 控制四个图标距离底部的距离：修改这里的 2rem */
}

.dfstudio-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 170px;
  padding: 0;
  background: none;
  border: none;
  transition: none;
}

.dfstudio-feature-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.dfstudio-feature-icon {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dfstudio-feature-icon img {
  width: auto;
  height: 70px;
  max-width: 100%;
  object-fit: contain;
}

.dfstudio-feature-card:hover .dfstudio-feature-icon {
  transform: none;
}

.dfstudio-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dfstudio-feature-desc {
  font-size: 0.9rem;
  color: #e5e7eb;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Industries Section */
.dfstudio-industries {
  position: relative;
}

.dfstudio-industries .dfstudio-container {
  max-width: 1900px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.dfstudio-industries .dfstudio-section-header {
  margin-bottom: 4.5rem;
}

.dfstudio-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4rem;
  max-width: 100%;
  margin: 0 auto;
}

.dfstudio-industry-card {
  position: relative;
}

.dfstudio-industry-media {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
}

.dfstudio-industry-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dfstudio-industry-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(15, 23, 42, 0.1));
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.dfstudio-industry-overlay {
  position: absolute;
  inset: 0;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.dfstudio-industry-index {
  align-self: flex-end;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.dfstudio-industry-text {
  max-width: 100%;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.dfstudio-industry-title {
  margin: 0 0 0.25rem;
  font-size: 1.65rem;
  font-weight: 600;
  color: #f9fafb;
}

.dfstudio-industry-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e5e7eb;
  opacity: 0.9;
}

.dfstudio-industry-card:hover .dfstudio-industry-media img {
  transform: scale(1.04);
}

.dfstudio-industry-card:hover .dfstudio-industry-media::after {
  opacity: 0.9;
}

.dfstudio-industry-card:hover .dfstudio-industry-text {
  transform: translateY(-6px);
}

/* Workflow Library Section */
.dfstudio-workflow {
  position: relative;
  background: transparent;
  padding: 0;
  margin-top: 4rem;
}

.dfstudio-workflow-inner {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.dfstudio-workflow-left,
.dfstudio-workflow-right {
  flex: 0 0 50%;
  max-width: 50%;      /* 桌面端左右各占一半宽度 */
  min-width: 0;
}

.dfstudio-workflow-left {
  background: #020617;
  padding: 3.25rem 6vw 3.25rem 6vw; /* 略微收紧上下高度 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* 整个文字块在左侧区域水平居中 */
}

.dfstudio-workflow-title {
  margin: 0 0 2.25rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: #e5e7eb;
  text-align: left; /* 标题左对齐 */
  width: 100%;
  max-width: 640px; /* 标题区域更宽，减少换行 */
}

.dfstudio-workflow-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 640px;
}

.dfstudio-faq-item {
  padding-bottom: 0.4rem;
  position: relative;
}

.dfstudio-faq-item::after {
  content: "";
  display: block;
  width: 100%; /* 灰线覆盖整个文字区域宽度 */
  border-bottom: 1px solid rgba(75, 85, 99, 0.9);
  margin-top: 0.25rem;
}

.dfstudio-faq-question {
  width: 100%;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 0.98rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.dfstudio-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.9rem;
  line-height: 1;
  color: #e5e7eb;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dfstudio-faq-question-text {
  flex: 1;
}

.dfstudio-faq-answer {
  padding: 0.2rem 0 0.45rem;
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, padding-bottom 0.25s ease;
}

.dfstudio-faq-answer p {
  margin: 0 0 0.75rem;
}

.dfstudio-faq-item.is-open .dfstudio-faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 0.75rem;
}

.dfstudio-faq-item.is-open .dfstudio-faq-icon {
  transform: rotate(45deg);
  background: rgba(31, 41, 55, 0.95);
}

.dfstudio-workflow-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 640px;
}

.dfstudio-workflow-right {
  display: flex;
  align-items: stretch;
  padding: 0;
}

.dfstudio-workflow-slider {
  width: 100%;
  overflow: hidden;
  background: #020617;
  aspect-ratio: 4 / 3; /* 更宽一些，降低整体高度 */
}

.dfstudio-workflow-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tutorial Section */
.dfstudio-tutorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.dfstudio-tutorial-card {
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.dfstudio-tutorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.dfstudio-tutorial-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.dfstudio-tutorial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dfstudio-tutorial-card:hover .dfstudio-tutorial-thumb img {
  transform: scale(1.05);
}

.dfstudio-tutorial-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  padding-left: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dfstudio-tutorial-card:hover .dfstudio-tutorial-play {
  background: rgba(59, 130, 246, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.dfstudio-tutorial-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 1.5rem 0.5rem;
  color: #e5e7eb;
}

.dfstudio-tutorial-desc {
  font-size: 0.9rem;
  color: #9ca3af;
  margin: 0 1.5rem 1.5rem;
}

/* Testimonials Section */
.dfstudio-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.dfstudio-testimonial-card {
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 64, 175, 0.3));
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.dfstudio-testimonial-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.dfstudio-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dfstudio-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  font-size: 1.2rem;
}

.dfstudio-testimonial-name {
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.25rem;
}

.dfstudio-testimonial-role {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Pricing Section */
.dfstudio-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.dfstudio-pricing-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 64, 175, 0.3));
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* 价格卡整体文字居中 */
}

.dfstudio-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.dfstudio-pricing-card-featured {
  border-color: rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4), rgba(15, 23, 42, 0.9));
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.dfstudio-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #a855f7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dfstudio-pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.dfstudio-pricing-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: #e5e7eb;
}

/* 不同版本标题色彩区分 */
.dfstudio-pricing-card:nth-child(1) .dfstudio-pricing-name {
  border-color: rgba(45, 212, 191, 0.9); /* 青绿：个人版 */
  color: #a5f3fc;
}

.dfstudio-pricing-card:nth-child(2) .dfstudio-pricing-name {
  border-color: rgba(59, 130, 246, 0.9); /* 蓝色：团队版 */
  color: #bfdbfe;
}

.dfstudio-pricing-card:nth-child(3) .dfstudio-pricing-name {
  border-color: rgba(249, 115, 22, 0.9); /* 橙色：定制版 */
  color: #fed7aa;
}

.dfstudio-pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.dfstudio-pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e5e7eb;
}

.dfstudio-pricing-period {
  font-size: 1rem;
  color: #9ca3af;
}

.dfstudio-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.dfstudio-pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  color: #d1d5db;
  font-size: 0.95rem;
  text-align: center; /* 每条特性文字居中 */
}

.dfstudio-pricing-features li:last-child {
  border-bottom: none;
}

.dfstudio-pricing-cta {
  width: 100%;
  justify-content: center;
}

/* Pricing Modal */
.dfstudio-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.dfstudio-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.dfstudio-modal-backdrop {
  position: absolute;
  inset: 0;
}

.dfstudio-modal-content {
  position: relative;
  z-index: 1;
  background: #020617;
  border-radius: 1rem;
  padding: 1.75rem 1.75rem 1.5rem;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.dfstudio-modal-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
  text-align: center;
}

.dfstudio-modal-body img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  display: block;
}

.dfstudio-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

/* News Section */
.dfstudio-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.dfstudio-news-card {
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.dfstudio-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.dfstudio-news-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
}

.dfstudio-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dfstudio-news-card:hover .dfstudio-news-thumb img {
  transform: scale(1.05);
}

.dfstudio-news-content {
  padding: 1.5rem;
}

.dfstudio-news-date {
  font-size: 0.8rem;
  color: #6b7280;
  display: block;
  margin-bottom: 0.5rem;
}

.dfstudio-news-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #e5e7eb;
}

.dfstudio-news-title a {
  color: inherit;
  transition: color 0.2s ease;
}

.dfstudio-news-title a:hover {
  color: #60a5fa;
}

.dfstudio-news-excerpt {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .dfstudio-features .dfstudio-container {
    padding-top: 1rem;
    padding-bottom: 0;
  }

  .dfstudio-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .dfstudio-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .dfstudio-workflow-inner {
    flex-direction: column;
  }

  .dfstudio-workflow-left,
  .dfstudio-workflow-right {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 2rem 2rem;
  }

  .dfstudio-workflow-slider {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .dfstudio-hero {
    min-height: 70vh;
    padding: 2rem 0 4rem;
  }

  .dfstudio-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .dfstudio-hero-actions .dfstudio-btn {
    width: 100%;
    max-width: 300px;
  }

  .dfstudio-section {
    padding: 3rem 0;
  }

  .dfstudio-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dfstudio-features .dfstudio-container {
    padding-top: 1rem;
    padding-bottom: 0;
  }

  .dfstudio-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .dfstudio-feature-card {
    min-height: 140px;
  }

  .dfstudio-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .dfstudio-workflow-inner {
    flex-direction: column;
  }

  .dfstudio-workflow-left,
  .dfstudio-workflow-right {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 1.75rem 1.75rem;
  }

  .dfstudio-tutorial-grid,
  .dfstudio-testimonials-grid,
  .dfstudio-pricing-grid,
  .dfstudio-news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .dfstudio-features .dfstudio-container {
    padding-top: 0.75rem;
    padding-bottom: 0;
  }

  .dfstudio-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dfstudio-feature-card {
    min-height: 0;
  }

  .dfstudio-industries-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .dfstudio-workflow-inner {
    flex-direction: column;
    gap: 1.75rem;
  }

  .dfstudio-workflow-left {
    padding: 1.5rem 1.25rem;
  }

  .dfstudio-workflow-slider {
    aspect-ratio: 4 / 3;
  }

  .dfstudio-feature-icon img {
    height: 55px;
  }
}
