.pricing-container {
  margin: 0 auto;
  font-family: "Pretendard", sans-serif;
  color: #333;
}
@media (max-width: 768px) {
  .pricing-container {
    padding: 40px 16px 80px;
  }
}

.plan-guide {
  padding-top: 64px;
  color: #101828;
  background: #fff;
}
.plan-guide__hero {
  padding: 72px 20px 24px;
  text-align: center;
}
.plan-guide__hero h1 {
  margin: 0 0 18px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  color: #101828;
}
.plan-guide__hero p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #667085;
  line-height: 1.55;
}
.plan-guide__panel {
  padding: 28px 20px 68px;
  background: #f6f8fb;
  border-bottom: 1px solid #e5e7eb;
}
.plan-guide__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.plan-guide__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.plan-guide-card {
  display: flex;
  flex-direction: column;
  min-height: 392px;
  padding: 32px 32px 28px;
  border: 1px solid #dfe5ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}
.plan-guide-card--featured {
  border: 3px solid #1677ff;
  background: #edf6ff;
  box-shadow: 0 18px 32px rgba(22, 119, 255, 0.1);
}
.plan-guide-card__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e7eb;
}
.plan-guide-card__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #1677ff;
  line-height: 1;
}
.plan-guide-card h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  color: #101828;
}
.plan-guide-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 106px;
  color: #1677ff;
}
.plan-guide-card__price strong {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.plan-guide-card__price span {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: #101828;
}
.plan-guide-card__price small {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: #667085;
  white-space: nowrap;
}
.plan-guide-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 24px;
  padding: 0;
}
.plan-guide-card__stats div {
  min-width: 0;
  text-align: center;
}
.plan-guide-card__stats dt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  color: #667085;
  line-height: 1.2;
}
.plan-guide-card__stats img {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  box-sizing: border-box;
}
.plan-guide__token svg {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 12px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: #eef6ff;
  fill: none;
  stroke: #1677ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-sizing: border-box;
  overflow: visible;
}
.plan-guide__token svg path {
  vector-effect: non-scaling-stroke;
}
.plan-guide-card__stats dd {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #101828;
  line-height: 1.35;
}
.plan-guide-card__desc {
  flex: 1;
  margin: 0;
  padding: 24px 0 22px;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #667085;
}
.plan-guide-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  background: #fff;
  color: #101828;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.plan-guide-card__button:hover {
  border-color: #1677ff;
  color: #1677ff;
}
.plan-guide-card--featured .plan-guide-card__button {
  border-color: #1677ff;
  background: #1677ff;
  color: #fff;
}
.plan-guide-card--featured .plan-guide-card__button:hover {
  background: #006fe0;
  color: #fff;
}
.plan-guide__token {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 22px 28px;
  border: 1px solid #dfe5ef;
  border-radius: 14px;
  background: #fff;
}
.plan-guide__token svg {
  background: #fff;
}
.plan-guide__token strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 800;
  color: #101828;
}
.plan-guide__token p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: #667085;
}
.plan-guide__compare {
  padding: 80px 20px 96px;
  background: #fff;
}
.plan-guide__compare-head {
  margin-bottom: 42px;
  text-align: center;
}
.plan-guide__compare-head h2 {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: #101828;
}
.plan-guide__compare-head p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #667085;
}
.plan-guide-table-wrap {
  overflow-x: auto;
  border: 1px solid #dfe5ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.05);
}
.plan-guide-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}
.plan-guide-table th,
.plan-guide-table td {
  height: 60px;
  padding: 0 24px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  vertical-align: middle;
}
.plan-guide-table thead th {
  height: 56px;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 800;
  color: #475467;
}
.plan-guide-table th:first-child,
.plan-guide-table td:first-child {
  width: 160px;
  text-align: left;
}
.plan-guide-table tbody th {
  background: #f8fafc;
  font-weight: 800;
  color: #101828;
}
.plan-guide-table tbody td {
  font-weight: 500;
  color: #667085;
}
.plan-guide-table th:last-child,
.plan-guide-table td:last-child {
  background: #edf6ff;
  color: #006fe0;
  font-weight: 800;
}
.plan-guide-table tr:last-child th,
.plan-guide-table tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 1024px) {
  .plan-guide__cards {
    grid-template-columns: 1fr;
  }
  .plan-guide-card {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .plan-guide {
    padding-top: 24px;
  }
  .plan-guide__hero {
    padding: 68px 16px 24px;
  }
  .plan-guide__hero h1 {
    font-size: 28px;
  }
  .plan-guide__hero p,
  .plan-guide__compare-head p {
    font-size: 14px;
  }
  .plan-guide__panel,
  .plan-guide__compare {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .plan-guide-card {
    padding: 24px 18px 20px;
  }
  .plan-guide-card__head {
    flex-direction: column;
    gap: 16px;
  }
  .plan-guide-card__price {
    align-items: flex-start;
  }
  .plan-guide-card__price small {
    white-space: normal;
  }
  .plan-guide-card h2 {
    font-size: 22px;
  }
  .plan-guide-card__price strong {
    font-size: 30px;
  }
  .plan-guide-card__stats {
    gap: 8px;
  }
  .plan-guide-card__stats img {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
  .plan-guide__token svg {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .plan-guide__token {
    align-items: flex-start;
    padding: 18px;
  }
  .plan-guide__compare {
    padding-top: 58px;
    padding-bottom: 64px;
  }
  .plan-guide__compare-head h2 {
    font-size: 26px;
  }
  .plan-guide-table th,
  .plan-guide-table td {
    padding: 0 16px;
    font-size: 13px;
  }
}

.pricing-hero {
  margin: 150px auto 56px;
  padding: 0 30px;
  max-width: 1200px;
  text-align: center;
}
.pricing-hero .sub-title {
  display: block;
  color: #0080FF;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.pricing-hero .main-title {
  font-size: 40px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 16px;
}
.pricing-hero .description {
  font-size: 20px;
  color: #111111;
}
@media (max-width: 768px) {
  .pricing-hero {
    margin-bottom: 40px;
  }
  .pricing-hero .main-title {
    font-size: 24px;
  }
  .pricing-hero .description {
    font-size: 14px;
  }
}

.pricing-cards {
  margin: 0 auto;
  max-width: 1200px;
  padding: 40px 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .pricing-cards .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pricing-cards .card .features {
    max-width: 320px;
  }
  .pricing-cards .card .btn-plan {
    max-width: 320px;
  }
}
.pricing-cards .card {
  padding: 48px 32px 32px;
  position: relative;
  border-radius: 16px;
  border: 1px solid #ebecf0;
  background-color: #f9fafb;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.1);
}
.pricing-cards .card .card-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}
.pricing-cards .card .card-icon img {
  width: 100%;
  height: 100%;
}
.pricing-cards .card .plan-name {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #0080FF;
  margin-bottom: 8px;
}
.pricing-cards .card .price {
  font-size: 40px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}
.pricing-cards .card .plan-desc {
  font-size: 18px;
  color: #475467;
  margin-bottom: 32px;
}
.pricing-cards .card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  text-align: left;
}
.pricing-cards .card .features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 16px;
  gap: 12px;
  color: #475467;
  line-height: 1.5;
}
.pricing-cards .card .features li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-cards .card .btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  background: #0080ff;
  border: 1px solid #0080ff;
  color: #fff;
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pricing-cards .card .btn-plan:hover {
  background: #006fe0;
  border-color: #006fe0;
}

.divider {
  height: 1px;
  background: #ebecf0;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .divider {
    margin-bottom: 60px;
  }
}

.faq-section {
  margin: 0;
  padding: 0;
  background: #fff;
}
.faq-section .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.faq-section__head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.faq-section__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #101828;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.faq-section__intro {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 400;
  color: #667085;
  line-height: 1.7;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-card {
  padding: 24px 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.04);
}
.faq-card__q {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #101828;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.faq-card__a {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #667085;
  line-height: 1.7;
}
.faq-grid-wrap {
  margin-top: 0;
  padding: 80px 0;
  background: #fff;
}
.faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.faq-section .faq-grid .faq-item {
  height: 100%;
  padding: 28px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #ebecf0;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.04);
  box-sizing: border-box;
}
.faq-section .faq-grid .faq-item img {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}
.faq-section .faq-grid .faq-item .faq-q {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.faq-section .faq-grid .faq-item .faq-a {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: #667085;
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .faq-section .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .faq-section {
    padding: 0;
  }
  .faq-section .inner {
    padding: 0 16px;
  }
  .faq-section__head {
    margin-bottom: 32px;
  }
  .faq-grid-wrap {
    margin-top: 0;
    padding: 56px 0;
  }
  .faq-section .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .faq-section .faq-grid .faq-item {
    padding: 22px 18px;
  }
  .faq-section .faq-grid .faq-item img {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
  }
  .faq-section .faq-grid .faq-item .faq-q {
    font-size: 17px;
  }
  .faq-section .faq-grid .faq-item .faq-a {
    font-size: 14px;
  }
  .faq-section__title {
    font-size: 28px;
  }
  .faq-section__intro {
    font-size: 15px;
  }
  .faq-card {
    padding: 20px 18px;
  }
  .faq-card__q {
    font-size: 18px;
  }
  .faq-card__a {
    font-size: 15px;
  }
}

.bottom-banner {
  overflow: hidden;
  margin: 0 auto;
  background-color: #F7F7FB;
}
.bottom-banner .banner-content {
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
}
@media (max-width: 900px) {
  .bottom-banner .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    padding-right: 20px;
  }
}
.bottom-banner .banner-content .text-area {
  flex: 1;
  padding-right: 40px;
  min-height: 320px;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 900px) {
  .bottom-banner .banner-content .text-area {
    padding-right: 0;
  }
}
.bottom-banner .banner-content .text-area h2 {
  font-size: 32px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 32px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .bottom-banner .banner-content .text-area h2 {
    font-size: 24px;
  }
}
.bottom-banner .banner-content .text-area .btn-group {
  display: flex;
  gap: 12px;
}
@media (max-width: 900px) {
  .bottom-banner .banner-content .text-area .btn-group {
    justify-content: center;
  }
}
.bottom-banner .banner-content .text-area .btn-group button {
  height: 48px;
  padding: 0 24px;
  font-weight: 600;
  border-radius: 4px;
}
.bottom-banner .banner-content .text-area .btn-group .btn-outline {
  border: 1px solid #dfe1e6;
}
.bottom-banner .banner-content .image-area {
  flex: 1.2;
  display: flex;
}
.bottom-banner .banner-content .image-area .dashboard-img {
  max-width: 100%;
  border-radius: 8px;
}

.footer {
  background: #fff;
  padding: 60px 30px 40px;
  border-top: 1px solid #ebecf0;
}
.footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}
.footer .footer-top .footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.footer .footer-top .footer-left .footer-logo img {
  height: 28px;
  width: auto;
}
.footer .footer-top .footer-left .footer-nav {
  display: flex;
  gap: 24px;
}
.footer .footer-top .footer-left .footer-nav a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.footer .footer-top .footer-left .footer-nav a:hover {
  color: #1f2937;
}
.footer .footer-top .footer-right {
  flex: 1;
  min-width: 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.65;
  color: #475467;
}
.footer .footer-top .footer-right a {
  color: #0080ff;
  text-decoration: none;
}
.footer .footer-top .footer-right a:hover {
  text-decoration: underline;
}
.footer .footer-top .footer-right .footer-block-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #101828;
}
.footer .footer-top .footer-right .footer-phone {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #101828;
  letter-spacing: -0.02em;
}
.footer .footer-top .footer-right .footer-phone a {
  color: inherit;
}
.footer .footer-top .footer-right .footer-phone a:hover {
  color: #0080ff;
}
.footer .footer-top .footer-right .footer-meta {
  margin: 0 0 20px;
  color: #505050;
}
.footer .footer-top .footer-right .footer-legal p {
  margin: 0 0 8px;
}
.footer .footer-top .footer-right .footer-legal p:last-child {
  margin-bottom: 0;
}
.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 24px;
}
.footer .footer-bottom .copyright {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}
.footer .footer-bottom .footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.footer .footer-bottom .footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: #667085;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-bottom .footer-links a:hover {
  color: #0080ff;
}
.footer .footer-bottom .footer-links a:focus-visible {
  outline: 2px solid #0080ff;
  outline-offset: 2px;
  border-radius: 2px;
}
.footer .footer-bottom .footer-links a:first-child::after {
  content: "|";
  margin: 0 14px;
  color: #d1d5db;
  font-weight: 400;
  pointer-events: none;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 16px 32px;
  }
  .footer .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer .footer-top .footer-right {
    max-width: none;
  }
  .footer .footer-top .footer-right .footer-phone {
    font-size: 20px;
  }
  .footer .footer-top .footer-right .footer-meta {
    font-size: 13px;
  }
  .footer .footer-top .footer-right .footer-legal {
    font-size: 13px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer-bottom .copyright {
    font-size: 12px;
  }
  .footer .footer-bottom .footer-links {
    width: 100%;
  }
}
