/* header */

.header-wrap .shadow {
  display: none;
}

.header.section-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(206, 194, 255, 0.55);
  box-shadow: 0 14px 32px rgba(132, 112, 201, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #201942;
  font-weight: 800;
  font-size: 28px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: #5f557d;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.nav a:hover {
  color: #2a214f;
}

.header-cta {
  margin: 0;
}

/* common section */

.features,
.price,
.cta,
.faq,
.contact {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* fv */

.fv-wrap .shadow {
  display: none;
}

.fv.section-in {
  position: relative;
  overflow: hidden;
  padding: 46px 46px 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%, rgba(195, 239, 255, 0.9) 0, rgba(195, 239, 255, 0) 30%),
    linear-gradient(180deg, #fcfbff 0%, #f7f4ff 100%);
  border: 1px solid rgba(213, 204, 255, 0.55);
  box-shadow: 0 24px 54px rgba(141, 123, 214, 0.08);
}

.fv-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 36px;
  align-items: center;
}

.fv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d7caff;
  background: rgba(255, 255, 255, 0.9);
  color: #7b67c9;
  font-size: 13px;
  font-weight: 700;
}

.fv-title {
  margin: 18px 0 0;
  font-size: 55px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #241b49;
  font-weight: 900;
}

.fv-text {
  margin-top: 24px;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.9;
  color: #5f557d;
}

.fv-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.fv-actions form {
  margin: 0;
}

.fv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.fv-btn-primary {
  border: 1px solid #cfc2ff;
  background: linear-gradient(135deg, #dff7ff 0%, #efe6ff 100%);
  color: #1f1840;
  box-shadow: 0 12px 28px rgba(170, 152, 240, 0.22);
  cursor: pointer;
}

.fv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(170, 152, 240, 0.28);
}

.fv-btn-secondary {
  border: 1px solid rgba(207, 194, 255, 0.85);
  background: rgba(255, 255, 255, 0.82);
  color: #6e5ab8;
}

.fv-btn-secondary:hover {
  transform: translateY(-2px);
}

.fv-points {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  flex-wrap: wrap;
}

.fv-points li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(222, 214, 255, 0.9);
  color: #63597f;
  font-size: 14px;
  font-weight: 700;
}

.fv-visual {
  display: flex;
  justify-content: center;
}

.fv-device,
.fv-shot {
  width: 100%;
  max-width: 620px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(216, 207, 255, 0.72);
  box-shadow: 0 24px 50px rgba(140, 121, 214, 0.12);
}

.fv-device img,
.fv-shot img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

/* pain */

.pain,
.flow {
  padding: 30px;
}

.pain-head,
.flow-head {
  text-align: center;
}

.pain-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd2ff;
  color: #7b67c9;
  font-size: 13px;
  font-weight: 800;
}

.pain-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pain-card {
  background: #f8fbff;
  border: 1px solid #e3ebff;
  border-radius: 18px;
  padding: 22px 18px;
  min-height: 150px;
}

.pain-card ul {
  margin: 0;
  padding-left: 1.2em;
}

.pain-card li {
  color: #2a2438;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

/* flow */

.flow-box {
  margin-top: 30px;
  background: #f8f4ff;
  border: 1px solid #ece6ff;
  border-radius: 24px;
  padding: 24px;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  gap: 12px;
  align-items: center;
}

.flow-step {
  background: #fff;
  border: 1px solid #e3ebff;
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  min-height: 270px;
  box-shadow: 0 8px 18px rgba(127, 109, 194, 0.05);
}

.flow-step-image {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.flow-step-image img {
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
  display: block;
}

.flow-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dff7ff 0%, #efe6ff 100%);
  border: 1px solid #cfc2ff;
  color: #5f4aa8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}

.flow-step h4 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.5;
  color: #251d46;
  font-weight: 800;
}

.flow-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #6a5f86;
}

.flow-arrow {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #7a6e95;
}

/* features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  border: 1px solid #d8cfff;
  border-radius: 20px;
  background: #fff;
  padding: 28px 24px 26px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(127, 109, 194, 0.05);
}

.feature-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-image img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  display: block;
}

.feature-title {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.45;
  color: #63558a;
  letter-spacing: 0.02em;
}

.feature-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #333;
  text-align: left;
}

/* price */

.price-box {
  max-width: 760px;
  margin: 0 auto;
}

.buy-card {
  border: 1px solid rgba(214, 204, 255, 0.65);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 244, 255, 0.96) 100%);
  box-shadow: 0 18px 38px rgba(147, 128, 218, 0.08);
  padding: 28px 24px 24px;
  text-align: center;
}

.purchase-box {
  margin-top: 18px;
  padding-top: 8px;
  text-align: center;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dff7ff 0%, #efe6ff 100%);
  border: 1px solid #cfc2ff;
  color: #5e4aa6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.price-label {
  font-size: 15px;
  font-weight: 700;
  color: #8a73d6;
  margin-bottom: 20px;
}

.price {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: #221a45;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.price span {
  font-size: 22px;
  font-weight: 700;
  margin-left: 6px;
}

.price-catch {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  color: #2d2350;
}

.price-lead {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.9;
  color: #5e5378;
}

.buy-meta {
  border-top: 1px solid #eee8ff;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.buy-meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  align-items: start;
}

.buy-meta-key {
  font-size: 14px;
  font-weight: 700;
  color: #8a73d6;
}

.buy-meta-val {
  font-size: 14px;
  line-height: 1.8;
  color: #2f274f;
  font-weight: 600;
}

.purchase-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.5;
  color: #221a45;
}

.purchase-text {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #5e5378;
}

.purchase-form {
  margin-top: 26px;
}

.purchase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 18px 34px;
  border: 1px solid #cfc2ff;
  border-radius: 999px;
  background: linear-gradient(135deg, #dff7ff 0%, #efe6ff 100%);
  color: #221a45;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(180, 159, 255, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.purchase-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(180, 159, 255, 0.28);
}

.purchase-button:active {
  transform: translateY(0);
}

.purchase-note {
  margin-top: 14px;
  font-size: 12px;
  color: #8a80a8;
}

/* faq */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  border: 1px solid #d8cfff;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(146, 126, 214, 0.06);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-q-badge,
.faq-a-badge {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.faq-q-badge {
  color: rgba(201, 181, 244, 1);
  background: #fff;
}

.faq-a-badge {
  color: rgba(201, 181, 244, 1);
  background: #fff;
  margin-top: 2px;
}

.faq-question-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2438;
  font-weight: 700;
}

.faq-icon {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: #555;
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 24px 24px;
}

.faq-answer {
  flex: 1;
  color: #333;
}

.faq-answer p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.9;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item.active .faq-answer-wrap {
  max-height: 400px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* contact */

.contact-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 12px 0 4px;
}

.contact-text {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #5e5378;
}

.contact-note {
  margin-top: 12px;
  font-size: 12px;
  color: #8a80a8;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 32px;
  min-width: 260px;
  border-radius: 999px;
  border: 1px solid #cfc2ff;
  background: linear-gradient(135deg, #ffffff 0%, #f6f1ff 100%);
  color: #2d2350;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(180, 159, 255, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(180, 159, 255, 0.24);
  background: linear-gradient(135deg, #ffffff 0%, #efe7ff 100%);
}

.contact-button:active {
  transform: translateY(0);
}

.contact-button:focus-visible {
  outline: 2px solid #8d72ff;
  outline-offset: 4px;
}

/* responsive */

@media (max-width: 980px) {
  .header.section-in {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .fv.section-in {
    padding: 40px 24px;
  }

  .fv-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fv-title {
    font-size: 42px;
    line-height: 1.15;
  }

  .fv-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .fv-btn {
    width: 200px;
    min-width: auto;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: -4px 0;
  }

  .flow-step {
    min-height: auto;
  }

  .flow-step-image {
    height: 72px;
  }

  .flow-step-image img {
    max-height: 72px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 18px 20px;
  }

  .feature-image {
    height: 100px;
    margin-bottom: 16px;
  }

  .feature-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .feature-text {
    font-size: 14px;
    line-height: 1.9;
  }
}

@media (max-width: 768px) {
  .features,
  .price,
  .cta,
  .contact,
  .pain,
  .flow,
  .faq {
    padding: 20px;
  }

  .faq-list {
    gap: 14px;
    padding: 0 2px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .nav a {
    font-size: 14px;
  }

  .fv.section-in {
    padding: 32px 18px;
    border-radius: 24px;
  }

  .fv-badge {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .fv-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .fv-text {
    margin-top: 18px;
    font-size: 14px;
  }

  .fv-actions {
    margin-top: 22px;
  }

  .fv-points li {
    width: 200px;
    border-radius: 16px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pain-card {
    min-height: auto;
    padding: 18px 16px;
  }

  .pain-card li {
    font-size: 14px;
    line-height: 1.8;
  }

  .flow-box {
    padding: 16px;
    border-radius: 18px;
  }

  .flow-step {
    padding: 18px 14px;
  }

  .flow-step h4 {
    font-size: 16px;
  }

  .flow-step p {
    font-size: 13px;
    line-height: 1.8;
  }

  .buy-card {
    padding: 22px 16px 18px;
    border-radius: 20px;
  }

  .price {
    font-size: 52px;
  }

  .price span {
    font-size: 18px;
  }

  .price-catch {
    font-size: 16px;
    line-height: 1.7;
  }

  .price-lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .buy-meta-row {
    grid-template-columns: 90px 1fr;
  }

  .buy-meta-key,
  .buy-meta-val {
    font-size: 13px;
  }

  .purchase-title {
    font-size: 22px;
  }

  .purchase-text {
    font-size: 14px;
  }

  .purchase-button {
    width: 100%;
    min-width: auto;
    padding: 16px 20px;
    font-size: 16px;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-question {
    padding: 18px 16px;
    gap: 12px;
  }

  .faq-answer-inner {
    padding: 0 16px 18px;
    gap: 12px;
  }

  .faq-q-badge,
  .faq-a-badge {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 14px;
  }

  .faq-question-text {
    font-size: 14px;
    line-height: 1.75;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-button {
    width: 100%;
    max-width: 320px;
    min-width: auto;
    padding: 14px 20px;
    font-size: 15px;
  }
}