.dtc-solution-section {
  margin-top: 120px;
  padding: 155px 0 115px;
  background: url(../img/solutions/pet_bg.webp) no-repeat;
  background-size: 100% 100%;
}

.dtc-solution-section .solution-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 132px;
  align-items: center;
}

.dtc-solution-section .solution-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.dtc-solution-section .solution-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin: 0;
}

.dtc-solution-section .solution-description {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin: 0;
  max-width: 564px;
}

.dtc-solution-section .btn-learn-more {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 160px;
  padding: 12px 24px;
  color: #111;
  border-radius: 25px;
  background: #FFDA2C;
  backdrop-filter: blur(5px);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.dtc-solution-section .btn-learn-more svg {
  transition: transform 0.3s ease;
}

.dtc-solution-section .solution-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.dtc-solution-section .solution-image:hover {
  transform: translateY(-4px);
}

.dtc-solution-section .solution-image .office-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .dtc-solution-section {
    padding: 60px 0;
  }
  .dtc-solution-section .solution-wrapper {
    gap: 60px;
  }
  .dtc-solution-section .solution-title {
    font-size: 32px;
  }
  .dtc-solution-section .solution-description {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .dtc-solution-section {
    padding: 40px 0;
  }
  .dtc-solution-section .container {
    padding: 0 16px;
  }
  .dtc-solution-section .solution-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dtc-solution-section .solution-content {
    gap: 20px;
  }
  .dtc-solution-section .solution-title {
    font-size: 24px;
  }
  .dtc-solution-section .solution-description {
    font-size: 14px;
    max-width: 100%;
  }
  .dtc-solution-section .btn-learn-more {
    padding: 10px 24px;
    font-size: 13px;
  }
  .dtc-solution-section .solution-image {
    border-radius: 12px;
  }
  .dtc-solution-section .solution-image .office-image {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .dtc-solution-section .solution-title {
    font-size: 20px;
  }
  .dtc-solution-section .solution-description {
    font-size: 13px;
  }
  .dtc-solution-section .solution-image .office-image {
    height: 200px;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dtc-solution-section.animate .solution-content {
  animation: fadeInLeft 0.8s ease forwards;
}

.dtc-solution-section.animate .solution-image {
  animation: fadeInRight 0.8s ease forwards;
  animation-delay: 0.2s;
}

.theme-features-section {
  padding: 140px 0;
}

.theme-features-section .features-layout {
  display: grid;
  grid-template-columns: 544px 1fr;
  gap: 156px;
  align-items: center;
}

.theme-features-section .browser-mockup {
  width: 544px;
  height: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.theme-features-section .preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.theme-features-section .features-content {
  padding-left: 20px;
}

.theme-features-section .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.theme-features-section .section-subtitle {
  font-size: 18px;
  color: #333;
  margin: 0 0 69px 0;
  line-height: 1.6;
}

.theme-features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 75px 136px;
}

.theme-features-section .feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.theme-features-section .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-features-section .feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: #2BA275;
}

.theme-features-section .feature-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin: 0;
  line-height: 1.4;
}

.theme-features-section .feature-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .theme-features-section {
    padding: 60px 0;
  }
  .theme-features-section .features-layout {
    gap: 40px;
  }
  .theme-features-section .section-title {
    font-size: 28px;
  }
  .theme-features-section .section-subtitle {
    margin-bottom: 40px;
  }
  .theme-features-section .features-grid {
    gap: 28px 32px;
  }
  .theme-features-section .feature-icon {
    width: 48px;
    height: 48px;
  }
  .theme-features-section .feature-icon svg {
    width: 24px;
    height: 24px;
  }
  .theme-features-section .feature-title {
    font-size: 17px;
  }
  .theme-features-section .feature-description {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .theme-features-section {
    padding: 40px 0;
  }
  .theme-features-section .container {
    padding: 0 16px;
  }
  .theme-features-section .features-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .theme-features-section .features-content {
    padding-left: 0;
  }
  .theme-features-section .browser-content {
    min-height: 280px;
  }
  .theme-features-section .section-title {
    font-size: 24px;
  }
  .theme-features-section .section-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .theme-features-section .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .theme-features-section .feature-card {
    gap: 12px;
  }
  .theme-features-section .feature-title {
    font-size: 17px;
  }
  .theme-features-section .feature-description {
    font-size: 13px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .theme-features-section .section-title {
    font-size: 20px;
  }
  .theme-features-section .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .theme-features-section .feature-icon svg {
    width: 22px;
    height: 22px;
  }
  .theme-features-section .feature-title {
    font-size: 16px;
  }
  .theme-features-section .feature-description {
    font-size: 12px;
  }
}

.sell-steps-section {
  padding: 140px 0;
  background-color: #F8F8F8;
}

.sell-steps-section .steps-layout {
  display: grid;
  grid-template-columns: 1fr 790px;
  gap: 96px;
  align-items: start;
}

.sell-steps-section .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.sell-steps-section .section-subtitle {
  font-size: 18px;
  color: #333;
  margin: 0 0 86px 0;
  line-height: 1.6;
}

.sell-steps-section .steps-accordion {
  display: flex;
  flex-direction: column;
}

.sell-steps-section .step-item {
  border-bottom: 1px solid #A3ACB1;
}

.sell-steps-section .step-item[open] .step-icon {
  transform: rotate(-90deg);
}

.sell-steps-section .step-item[open] .step-icon svg {
  stroke: #111;
  fill: #111;
}

.sell-steps-section .step-item[open] .step-title {
  text-decoration: underline;
}

.sell-steps-section .step-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 22px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.sell-steps-section .step-title::-webkit-details-marker {
  display: none;
}

.sell-steps-section .step-icon {
  font-size: 14px;
  color: #999;
  transition: transform 0.3s ease;
}

.sell-steps-section .step-icon svg {
  stroke: #A3ACB1;
  fill: #A3ACB1;
}

.sell-steps-section .step-description {
  padding: 0 0 24px 0;
}

.sell-steps-section .step-description p {
  font-size: 16px;
  color: #656565;
  line-height: 1.8;
  margin: 0;
}

.sell-steps-section .browser-mockup {
  width: 790px;
  height: 790px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.sell-steps-section .browser-bar {
  background-color: #e8e8e8;
  padding: 12px 16px;
  display: flex;
  gap: 8px;
}

.sell-steps-section .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
}

.sell-steps-section .browser-content {
  background-color: #1a1a1a;
  min-height: 500px;
}

.sell-steps-section .preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .sell-steps-section {
    padding: 60px 0;
  }
  .sell-steps-section .steps-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sell-steps-section .section-title {
    font-size: 28px;
  }
  .sell-steps-section .section-subtitle {
    margin-bottom: 40px;
  }
  .sell-steps-section .step-title {
    padding: 16px 0;
    font-size: 17px;
  }
  .sell-steps-section .browser-content {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .sell-steps-section {
    padding: 40px 0;
  }
  .sell-steps-section .container {
    padding: 0 16px;
  }
  .sell-steps-section .section-title {
    font-size: 24px;
  }
  .sell-steps-section .section-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .sell-steps-section .step-title {
    padding: 14px 0;
    font-size: 16px;
  }
  .sell-steps-section .step-description p {
    font-size: 13px;
  }
  .sell-steps-section .browser-content {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .sell-steps-section .section-title {
    font-size: 20px;
  }
  .sell-steps-section .step-title {
    font-size: 15px;
  }
}

.more-features-section {
  padding: 140px 0 70px;
  background-color: #FFFFFF;
}

.more-features-section .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin: 0 0 57px 0;
  text-align: center;
}

.more-features-section .tab-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 48px;
}

.more-features-section .tab-btn {
  padding: 14px 43px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #111;
  color: #111;
  cursor: pointer;
  transition: all 0.3s ease;
}

.more-features-section .tab-btn.active {
  background-color: #111;
  border-color: #111;
  color: #FFFFFF;
}

.more-features-section .tab-btn.hover {
  background-color: #111;
  border-color: #111;
  color: #FFFFFF;
}

.more-features-section .tab-btn:hover:not(.active) {
  background-color: #111;
  border-color: #111;
  color: #FFFFFF;
}

.more-features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.more-features-section .feature-card {
  min-height: 282px;
  border: 1px solid #ECE6FF;
  background: #FFF;
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.more-features-section .feature-card:hover {
  background-color: #28a745;
}

.more-features-section .feature-card:hover .card-icon {
  background: #fff;
}

.more-features-section .feature-card:hover .card-title {
  color: #fff;
}

.more-features-section .feature-card:hover .card-subtitle {
  color: #fff;
}

.more-features-section .card-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.more-features-section .card-icon svg {
  max-width: 58px;
  width: 40px;
  height: auto;
}

.more-features-section .card-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.more-features-section .card-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .more-features-section {
    padding: 60px 0;
  }
  .more-features-section .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .more-features-section .tab-nav {
    margin-bottom: 40px;
  }
  .more-features-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .more-features-section .feature-card {
    padding: 28px 20px;
  }
  .more-features-section .card-title {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .more-features-section {
    padding: 40px 0;
  }
  .more-features-section .container {
    padding: 0 16px;
  }
  .more-features-section .section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .more-features-section .tab-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
  }
  .more-features-section .tab-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .more-features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .more-features-section .feature-card {
    padding: 24px 16px;
  }
  .more-features-section .card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }
  .more-features-section .card-icon svg {
    width: 24px;
    height: 24px;
  }
  .more-features-section .card-title {
    font-size: 16px;
  }
  .more-features-section .card-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .more-features-section .features-grid {
    grid-template-columns: 1fr;
  }
  .more-features-section .section-title {
    font-size: 20px;
  }
}

.viewpoint-insights-section {
  padding: 70px 0 140px;
}

.viewpoint-insights-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.viewpoint-insights-section .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

.viewpoint-insights-section .btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  border-radius: 25px;
  background: #000;
  backdrop-filter: blur(5px);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  transition: all 0.3s ease;
}

.viewpoint-insights-section .insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.viewpoint-insights-section .insight-card {
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.viewpoint-insights-section .insight-card:hover .card-image {
  transform: scale(1.05);
}

.viewpoint-insights-section .insight-card:hover .card-title {
  text-decoration: underline;
}

.viewpoint-insights-section .card-image-wrapper {
  position: relative;
  width: 100%;
  height: 326px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.viewpoint-insights-section .card-image-wrapper .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.viewpoint-insights-section .card-tag {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 8px 10px;
  background-color: #2BA275;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.viewpoint-insights-section .card-tag::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #2BA275 transparent transparent;
}

.viewpoint-insights-section .card-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin: 34px 0 12px 0;
  line-height: 1.5;
}

.viewpoint-insights-section .card-description {
  font-size: 14px;
  color: #656565;
  margin: 0;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .viewpoint-insights-section {
    padding: 60px 0;
  }
  .viewpoint-insights-section .section-header {
    margin-bottom: 40px;
  }
  .viewpoint-insights-section .section-title {
    font-size: 28px;
  }
  .viewpoint-insights-section .insights-grid {
    gap: 20px;
  }
  .viewpoint-insights-section .card-image-wrapper {
    height: 200px;
  }
  .viewpoint-insights-section .card-title {
    font-size: 17px;
    padding: 16px 16px 10px;
  }
  .viewpoint-insights-section .card-description {
    font-size: 13px;
    padding: 0 16px 16px;
  }
}

@media (max-width: 767px) {
  .viewpoint-insights-section {
    padding: 40px 0;
  }
  .viewpoint-insights-section .container {
    padding: 0 16px;
  }
  .viewpoint-insights-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .viewpoint-insights-section .section-title {
    font-size: 24px;
  }
  .viewpoint-insights-section .btn-detail {
    align-self: flex-end;
  }
  .viewpoint-insights-section .insights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .viewpoint-insights-section .card-image-wrapper {
    height: 220px;
  }
  .viewpoint-insights-section .card-title {
    font-size: 17px;
    padding: 16px 16px 10px;
  }
  .viewpoint-insights-section .card-description {
    font-size: 13px;
    padding: 0 16px 16px;
  }
}

@media (max-width: 480px) {
  .viewpoint-insights-section .section-title {
    font-size: 20px;
  }
  .viewpoint-insights-section .card-image-wrapper {
    height: 200px;
  }
  .viewpoint-insights-section .card-title {
    font-size: 16px;
  }
}

.faq-section {
  padding: 130px 0;
  background-color: #FAFAFB;
}

.faq-section .faq-layout {
  display: grid;
  grid-template-columns: 370px 1120px;
  gap: 110px;
  align-items: start;
}

.faq-section .main-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.faq-section .sub-title {
  font-size: 18px;
  font-weight: 600;
  color: #656565;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.faq-section .category-label {
  font-size: 18px;
  color: #656565;
  margin: 0 0 77px 0;
}

.faq-section .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  border-radius: 25px;
  background: #000;
  backdrop-filter: blur(5px);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  transition: all 0.3s ease;
}

.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-section .faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-section .faq-item:first-child {
  border-top: 1px solid #e5e5e5;
}

.faq-section .faq-question {
  display: flex;
  align-items: center;
  padding: 40px 0 27px;
  font-size: 22px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-section .faq-question::-webkit-details-marker {
  display: none;
}

.faq-section .q-prefix {
  flex-shrink: 0;
  margin-right: 8px;
  color: #111;
}

.faq-section .q-text {
  flex-grow: 1;
}

.faq-section .faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-section .faq-icon::before {
  content: "";
  width: 24px;
  height: 4px;
  background: #A3ACB1;
  border-radius: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-section .faq-icon::after {
  transition: all 0.3s ease;
  content: "";
  width: 24px;
  height: 4px;
  background: #A3ACB1;
  border-radius: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-section .faq-item[open] .faq-icon::after {
  background: #111;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-section .faq-item[open] .faq-question {
  text-decoration: underline;
}

.faq-section .faq-answer {
  padding: 0 0 40px 0;
}

.faq-section .faq-answer p {
  font-size: 16px;
  color: #656565;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .faq-layout {
    gap: 60px;
  }
  .faq-section .main-title {
    font-size: 28px;
  }
  .faq-section .sub-title {
    font-size: 18px;
  }
  .faq-section .faq-question {
    padding: 18px 0;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-section .container {
    padding: 0 16px;
  }
  .faq-section .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-section .main-title {
    font-size: 24px;
  }
  .faq-section .sub-title {
    font-size: 17px;
  }
  .faq-section .category-label {
    margin-bottom: 20px;
  }
  .faq-section .faq-question {
    padding: 16px 0;
    font-size: 15px;
  }
  .faq-section .faq-answer p {
    font-size: 13px;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .faq-section .main-title {
    font-size: 20px;
  }
  .faq-section .sub-title {
    font-size: 16px;
  }
}
