.page-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.hero-section {
  padding-top: 112px;
  padding-bottom: 80px;
  background: #F9FAFB;
}
.dark .hero-section {
  background: #111827;
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 66px;
  }
}
.hero-section .hero-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media (min-width: 768px) {
  .hero-section .hero-row {
    flex-direction: row;
  }
}
.hero-section .hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .hero-section .hero-text {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .hero-section .hero-text {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
.hero-section .hero-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: bold;
  line-height: 1.25;
  color: #1F2937;
}
.dark .hero-section .hero-title {
  color: #fff;
}
.hero-section .text-gradient {
  background: linear-gradient(90deg, #0D9488, #14B8A6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-section .hero-desc {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #4B5563;
  line-height: 1.625;
}
.dark .hero-section .hero-desc {
  color: #9CA3AF;
}
.hero-section .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 700px) {
  .hero-section .hero-btns {
    justify-content: center;
  }
}
.hero-section .btn-primary-lg {
  padding: 14px 32px;
  border-radius: 8px;
  background: #0D9488;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.hero-section .btn-primary-lg:hover {
  background: #0F766E;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero-section .btn-outline-lg {
  padding: 14px 32px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #D1D5DB;
  color: #1F2937;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dark .hero-section .btn-outline-lg {
  border-color: #374151;
  color: #E5E7EB;
}
.hero-section .btn-outline-lg:hover {
  border-color: #0D9488;
  color: #0D9488;
}
.hero-section .hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-size: 0.875rem;
  color: #6B7280;
  padding-top: 16px;
}
.dark .hero-section .hero-trust {
  color: #9CA3AF;
}
.hero-section .hero-trust .fa-check {
  color: #0D9488;
  margin-right: 4px;
}
@media (max-width: 700px) {
  .hero-section .hero-trust {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .hero-section .hero-image {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .hero-section .hero-image {
    display: none;
  }
}
.hero-section .hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.dark .hero-section .hero-image img {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero-section {
    padding-top: 160px;
    padding-bottom: 128px;
  }
}
.platform-bar {
  padding: 24px 0;
  background: #fff;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}
.dark .platform-bar {
  background: #1F2937;
  border-color: #374151;
}
.platform-bar .platform-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  color: #9CA3AF;
}
.platform-bar .platform-list .platform-label {
  font-size: 0.875rem;
  font-weight: 500;
}
.platform-bar .platform-list i {
  font-size: 1.5rem;
}
.section {
  padding: 80px 0;
  background: #fff;
}
.dark .section {
  background: #1F2937;
}
.section.section-gray {
  background: #F9FAFB;
}
.dark .section.section-gray {
  background: #111827;
}
.section .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section .section-header .section-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: #1F2937;
}
.dark .section .section-header .section-title {
  color: #fff;
}
.section .section-header .section-desc {
  color: #4B5563;
  max-width: 672px;
  margin: 0 auto;
}
.dark .section .section-header .section-desc {
  color: #9CA3AF;
}
@media (min-width: 768px) {
  .section .section-header .section-title {
    font-size: 2.25rem;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  background: #F9FAFB;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.dark .feature-card {
  background: rgba(31, 41, 55, 0.5);
}
.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-card .feature-icon i {
  color: #0D9488;
  font-size: 1.5rem;
}
.feature-card .feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #1F2937;
}
.dark .feature-card .feature-title {
  color: #fff;
}
.feature-card .feature-desc {
  color: #4B5563;
  font-size: 0.9375rem;
}
.dark .feature-card .feature-desc {
  color: #9CA3AF;
}
.compare-table-wrap {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.compare-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.compare-table thead {
  background: #0D9488;
  color: #fff;
}
.compare-table thead th {
  padding: 16px;
  font-size: 1.125rem;
  font-weight: 600;
}
.compare-table tbody {
  background: #fff;
  border-top: none;
}
.dark .compare-table tbody {
  background: #1F2937;
}
.compare-table tbody td {
  padding: 16px;
}
.compare-table tbody tr {
  border-bottom: 1px solid #E5E7EB;
}
.dark .compare-table tbody tr {
  border-color: #374151;
}
.compare-table tbody tr:hover {
  background: #F9FAFB;
}
.dark .compare-table tbody tr:hover {
  background: #1F2937;
}
.compare-table tbody .td-label {
  font-weight: 500;
  color: #1F2937;
}
.dark .compare-table tbody .td-label {
  color: #fff;
}
.compare-table tbody .td-check {
  color: #22C55E;
}
.compare-table tbody .td-check .fa-check {
  margin-right: 4px;
}
.compare-table tbody .td-cross {
  color: #EF4444;
}
.compare-table tbody .td-cross .fa-times {
  margin-right: 4px;
}
.scenes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .scenes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .scenes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.scene-card {
  background: #F9FAFB;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.dark .scene-card {
  background: rgba(31, 41, 55, 0.5);
}
.scene-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.scene-card .scene-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-card .scene-icon i {
  color: #0D9488;
  font-size: 1.5rem;
}
.scene-card .scene-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1F2937;
}
.dark .scene-card .scene-title {
  color: #fff;
}
.scene-card .scene-desc {
  color: #4B5563;
  font-size: 0.9375rem;
}
.dark .scene-card .scene-desc {
  color: #9CA3AF;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.price-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.dark .price-card {
  background: #1F2937;
}
.price-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.price-card .price-card-body {
  padding: 32px;
}
.price-card .price-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1F2937;
}
.dark .price-card .price-name {
  color: #fff;
}
.price-card .price-desc {
  color: #6B7280;
  margin-bottom: 24px;
  font-size: 0.9375rem;
}
.dark .price-card .price-desc {
  color: #9CA3AF;
}
.price-card .price-amount {
  font-size: 2.25rem;
  font-weight: bold;
  color: #0D9488;
  margin-bottom: 24px;
}
.price-card .price-amount .price-period {
  font-size: 1.125rem;
  font-weight: normal;
  color: #6B7280;
}
.dark .price-card .price-amount .price-period {
  color: #9CA3AF;
}
.price-card .price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.price-card .price-features li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  color: #1F2937;
}
.dark .price-card .price-features li {
  color: #E5E7EB;
}
.price-card .price-features li .fa-check {
  color: #22C55E;
  margin-right: 8px;
  flex-shrink: 0;
}
.price-card .price-features li .fa-times {
  color: #9CA3AF;
  margin-right: 8px;
  flex-shrink: 0;
}
.price-card .price-features li.disabled {
  color: #9CA3AF;
}
.dark .price-card .price-features li.disabled {
  color: #6B7280;
}
.price-card .price-btn {
  width: 100%;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.price-card .price-btn.btn-outline {
  background: transparent;
  border: 1px solid #0D9488;
  color: #0D9488;
}
.price-card .price-btn.btn-outline:hover {
  background: #0D9488;
  color: #fff;
}
.price-card .price-btn.btn-solid {
  background: #0D9488;
  color: #fff;
}
.price-card .price-btn.btn-solid:hover {
  background: #0F766E;
}
.price-card.recommended {
  border: 2px solid #0D9488;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}
.price-card.recommended .recommended-badge {
  background: #0D9488;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 0.875rem;
  font-weight: 500;
}
.faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #F9FAFB;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.dark .faq-item {
  background: rgba(31, 41, 55, 0.5);
}
.faq-item .faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  color: #1F2937;
}
.dark .faq-item .faq-btn {
  color: #fff;
}
.faq-item .faq-btn .fa-chevron-down {
  transition: transform 0.3s ease;
  font-size: 1rem;
}
.faq-item .faq-content {
  margin-top: 16px;
  color: #4B5563;
  line-height: 1.625;
  display: none;
}
.dark .faq-item .faq-content {
  color: #9CA3AF;
}
.faq-item .faq-content.open {
  display: block;
}
.cta-section {
  padding: 64px 0;
  background: #0D9488;
  color: #fff;
}
.cta-section .cta-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .cta-section .cta-title {
    font-size: 2.25rem;
  }
}
.cta-section .cta-desc {
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
.cta-section .cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.cta-section .btn-white {
  padding: 16px 32px;
  border-radius: 8px;
  background: #fff;
  color: #0D9488;
  font-size: 1.125rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cta-section .btn-white:hover {
  background: #F3F4F6;
}
.cta-section .btn-white i {
  font-size: 1.25rem;
}
.text-center {
  text-align: center;
}

