.h2 {
  color: var(--tertiary-900);
  margin-bottom: 12px;
}
.product-hero {
  padding: 48px 0;
  text-align: center;
}
.product-hero h1 {
  font-size: 34px;
  margin: 0 0 8px;
}
.product-hero p {
  color: var(--tertiary-900);
  margin: 0 0 18px;
}
.product-hero .hero-cta-button {
  display: inline-block;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}
.product-content {
  padding: 36px 0;
  text-align: center;
}
.product-overview {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}
.product-card p {
  color: var(--tertiary-900);
  text-align: justify;
}
.product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.product-meta {
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}
.product-bullets {
  margin-top: 12px;
}
.product-bullets li {
  margin: 8px 0;
  color: var(--tertiary-900);
}
.product-benefits {
  margin-top: 48px;
}
.product-benefits p {
  color: var(--tertiary-900);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.benefit-item {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}
.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--tertiary-900);
}
.faq-section {
  margin-top: 48px;
  padding-bottom: 48px;
}
.faq-list {
  max-width: 800px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
details.faq-item {
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.04);
  transition: box-shadow 0.2s ease;
}
details.faq-item:hover {
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}
details.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  cursor: pointer;
  font-weight: 600;
  color: #101828;
  background: 0 0;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: var(--primary-900);
  transition: transform 0.2s ease;
  font-weight: 400;
}
details.faq-item[open] summary::after {
  content: "−";
}
.faq-answer {
  padding: 0 22px;
  color: var(--tertiary-900);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.28s ease,
    padding 0.22s ease;
}
details.faq-item[open] .faq-answer {
  padding: 4px 22px 18px;
  max-height: 800px;
}
@media (max-width: 900px) {
  .product-overview {
    grid-template-columns: 1fr;
  }
}
.cities-section {
  margin-top: 48px;
  text-align: center;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
  text-align: left;
}
.city-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.1);
}
.city-image {
  width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
}
.city-name {
  padding: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--tertiary-900);
}
.city-key {
  padding: 0 16px 16px;
  color: var(--tertiary-900);
  font-size: 14px;
  text-align: center;
}
.cta-section {
  margin-top: 48px;
}
.cta-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(16, 24, 40, 0.08);
  text-align: center;
  margin: 0 auto;
}
.cta-card h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.cta-card p {
  color: var(--tertiary-900);
  margin-bottom: 24px;
}
.cta-card .hero-cta-button {
  background: var(--primary-900);
  padding: 14px 28px;
  border-radius: 50px;
}
.features-section {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 60px 40px;
  margin: 40px 0 0 0;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
}
.features-image-side {
  flex: 0 0 420px;
  position: relative;
}
.features-image-side .img-wrapper {
  border-radius: 16px;
  overflow: hidden;
}
.features-image-side .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.features-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}
.features-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
@media (max-width: 480px) {
  .features-list {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .features-list li {
    margin-top: 24px;
    align-items: center;
    text-align: center;
    padding-left: 50px !important;
  }
}
.features-content {
  flex: 1;
  min-width: 0;
}
.features-list li {
  margin-top: 24px;
  align-items: center;
  text-align: center;
  padding-left: 100px;
}
.features-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.features-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.3;
}
.features-subtext {
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 28px;
  line-height: 1.6;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.feature-card:hover {
  border-color: #e0e7ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.feature-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.icon-purple {
  background: #eeedfe;
}
.icon-teal {
  background: #e1f5ee;
}
.icon-blue {
  background: #e6f1fb;
}
.icon-amber {
  background: #faeeda;
}
.icon-coral {
  background: #faece7;
}
.icon-pink {
  background: #fbeaf0;
}
.feature-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px;
  line-height: 1.4;
}
.feature-desc {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .features-section {
    flex-direction: column;
    padding: 40px 20px;
  }
  .features-image-side {
    flex: unset;
    width: 100%;
  }
  .features-badge {
    bottom: -12px;
    right: 12px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
