.pricing-hero {
  background: linear-gradient(180deg, #F8FCFF 0%, #FFFFFF 100%);
  padding: 60px 40px 40px 40px;
  text-align: center;
  position: relative;
}

.pricing-hero-content {
  position: relative;
  z-index: 1;
}

.pricing-hero-content h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #002644;
}

.pricing-hero-content > p {
  font-size: 16px;
  font-weight: 400;
  color: #002644;
  max-width: 900px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.pricing-selectors {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.industry-selector,
.currency-selector {
  height: 48px;
  padding: 0 40px 0 20px;
  border: 1px solid #D0D0D0;
  border-radius: var(--border-radius);
  font-size: 16px;
  color: #002644;
  background: white;
  cursor: pointer;
  font-family: 'Noto Sans', sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23002644' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.industry-selector {
  min-width: 300px;
}

.currency-selector {
  min-width: 100px;
}

.pricing-cards {
  padding: 30px 40px 60px 40px;
  background: white;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #004E89;
  border-radius: var(--border-radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  color: white;
}

.pricing-card.featured {
  background: #004E89;
}

.pricing-card-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.pricing-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.5;
  min-height: 60px;
}

.pricing-card-price {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.starting-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 4px;
}

.currency-symbol {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-top: 6px;
  margin-right: 4px;
}

.amount {
  font-size: 48px;
  font-weight: 700;
  color: white;
}

.decimal {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-top: 6px;
}

.period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-btn {
  width: 100%;
  height: 48px;
  border: none;
  background: #30C5FF;
  color: #FFFFFF;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pricing-btn:hover {
  background: #28b0e6;
}

.pricing-btn.featured {
  background: #FFFFFF;
  color: #004E89;
}

.pricing-btn.featured:hover {
  background: #f0f0f0;
}

.pricing-comparison {
  padding: 60px 40px;
  background: #F5F5F5;
}

.comparison-container {
  max-width: 1400px;
  margin: 0 auto;
}

.comparison-container h2 {
  font-size: 32px;
  font-weight: 600;
  color: #002644;
  text-align: left;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 12px;
}

.comparison-container h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #30C5FF 0%, #004E89 100%);
  border-radius: 2px;
}

.comparison-table-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-table-wrapper h3 {
  font-size: 20px;
  font-weight: 600;
  color: #002644;
  margin: 16px 0 16px 0;
  padding-left: 16px;
  border-left: 4px solid #30C5FF;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  table-layout: fixed;
}

.comparison-table thead {
  background: #004E89;
}

.comparison-table th {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: white;
  border-bottom: 1px solid #004E89;
  width: 25%;
}

.comparison-table th.feature-column {
  width: 25%;
  border-right: 2px solid #004E89;
  text-align: left;
}

.comparison-table th.featured-column {
  background: #30C5FF;
  color: white;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #F0F0F0;
  font-size: 14px;
  color: #002644;
  width: 25%;
  text-align: center;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td.feature-column {
  font-weight: 500;
  color: #4A4A4A;
  width: 25%;
  border-right: 2px solid #004E89;
  position: relative;
  padding-right: 40px;
  text-align: left;
}

.comparison-table td.featured-column {
  background: #E6F7FF;
}

.hint-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #30C5FF;
}

.hint-icon:hover {
  color: #28b0e6;
}

.hint-icon svg {
  width: 16px;
  height: 16px;
}

.hint-icon[data-hint]:hover::after {
  content: attr(data-hint);
  position: absolute;
  left: 0;
  bottom: 100%;
  padding: 8px 12px;
  background: #002644;
  color: white;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  border-radius: var(--border-radius);
  margin-bottom: 8px;
  z-index: 10000;
  pointer-events: none;
}

.hint-icon[data-hint]:hover::before {
  content: '';
  position: absolute;
  left: 12px;
  bottom: 100%;
  border: 6px solid transparent;
  border-top-color: #002644;
  margin-bottom: 2px;
  z-index: 1000;
  pointer-events: none;
}

.industrial-sectors {
  padding: 80px 40px;
  background: white;
}

.sectors-container {
  max-width: 1400px;
  margin: 0 auto;
}

.sectors-container h2 {
  font-size: 32px;
  font-weight: 600;
  color: #002644;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 12px;
}

.sectors-container h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #30C5FF 0%, #004E89 100%);
  border-radius: 2px;
}

.sectors-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid #E5E7EB;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: white;
}

.sectors-sidebar {
  display: flex;
  flex-direction: column;
}

.sector-tab {
  padding: 20px 24px;
  background: white;
  border: none;
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #002644;
  cursor: pointer;
  font-family: 'Noto Sans', sans-serif;
  border-right: 1px solid #E5E7EB;
}

.sector-tab:last-child {
  border-bottom: none;
}

.sector-tab.active {
  border-left: 3px solid #30C5FF;
  font-weight: 600;
  border-right: none;
}

.sectors-content {
  padding: 24px 32px;
  position: relative;
}

.sector-description {
  display: none;
}

.sector-description.active {
  display: block;
}

.sector-description p {
  margin: 0;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
}

.pricing-faq {
  padding: 60px 40px;
  background: #F5F5F5;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-container h2 {
  font-size: 32px;
  font-weight: 600;
  color: #002644;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 12px;
}

.faq-container h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #30C5FF 0%, #004E89 100%);
  border-radius: 2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #002644;
  text-align: left;
  transition: background 0.3s ease;
  font-family: 'Noto Sans', sans-serif;
}

.faq-question:hover {
  background: #F9F9F9;
}

.faq-icon {
  color: #30C5FF;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  background: #F9FAFB;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 24px;
  opacity: 1;
  border-top: 1px solid #E9ECEF;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  color: #5A6C7D;
  line-height: 1.7;
}

.pricing-cta {
  padding: 80px 40px;
  background: linear-gradient(135deg, #002644 0%, #004E89 50%, #0066B3 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(48, 197, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.pricing-cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(48, 197, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-content h2 .highlight-text {
  color: #30C5FF;
  position: relative;
  display: inline-block;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-content p .emphasize {
  color: #30C5FF;
  font-weight: 600;
}

.cta-btn {
  background: white;
  color: #004E89;
  border: 2px solid white;
  border-radius: var(--border-radius);
  height: 56px;
  padding: 0 48px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: #30C5FF;
  color: white;
  border-color: #30C5FF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(48, 197, 255, 0.4);
}

@media (max-width: 1024px) {
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-hero-content h1 {
    font-size: 32px;
  }

  .pricing-selectors {
    flex-direction: column;
  }

  .industry-selector {
    width: 100%;
    max-width: 400px;
  }

  .currency-selector {
    width: 100%;
    max-width: 400px;
  }

  .comparison-container h2 {
    font-size: 28px;
  }

  .sectors-container h2 {
    font-size: 28px;
  }

  .sectors-layout {
    grid-template-columns: 1fr;
  }

  .sectors-sidebar {
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 40px 20px 30px 20px;
  }

  .pricing-hero-content h1 {
    font-size: 28px;
  }

  .pricing-hero-content > p {
    font-size: 14px;
  }

  .pricing-cards {
    padding: 40px 20px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card-header h3 {
    font-size: 24px;
  }

  .amount {
    font-size: 40px;
  }

  .pricing-comparison {
    padding: 40px 20px;
  }

  .comparison-container h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
    font-size: 13px;
  }

  .comparison-table th {
    font-size: 13px;
  }

  .industrial-sectors {
    padding: 40px 20px;
  }

  .sectors-container h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .sectors-layout {
    grid-template-columns: 1fr;
  }

  .sectors-sidebar {
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
  }

  .sector-tab {
    padding: 16px 20px;
    font-size: 14px;
  }

  .sectors-content {
    padding: 20px;
  }

  .sector-description p {
    font-size: 13px;
  }

  .pricing-faq {
    padding: 40px 20px;
  }

  .faq-container h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }

  .pricing-cta {
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .pricing-hero-content h1 {
    font-size: 24px;
  }

  .pricing-card-header h3 {
    font-size: 22px;
  }

  .amount {
    font-size: 36px;
  }

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 12px;
  }

  .comparison-table th.feature-column,
  .comparison-table td.feature-column {
    width: 50%;
  }
}
