/* top.css */

/* Hero（Figma node 102:9 — pt:59px pb:80px px:80px + 固定ヘッダー分） */
.hero-section {
  --hero-header-offset: 72px;
  --hero-top-gap: 59px;
  padding: calc(var(--hero-header-offset) + var(--hero-top-gap)) 1rem 5rem;
  background: #f9fafb;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .hero-section {
    --hero-header-offset: 88px;
  }
}

@media (min-width: 1201px) {
  .hero-section {
    --hero-header-offset: 114px;
    padding: calc(var(--hero-header-offset) + var(--hero-top-gap)) 5rem 5rem;
  }
}

.hero-deco-circle--top {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #fe2c55;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 1;
  display: none;
}

@media (min-width: 1024px) {
  .hero-deco-circle--top {
    display: block;
    top: calc(var(--hero-header-offset) + var(--hero-top-gap) + 1rem);
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 659px;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: #fff;
  color: #00a7b5;
  border: 1px solid #00a7b5;
  padding: 0.4375rem 1.0625rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: fit-content;
  opacity: 0;
  transform: scale(0.9);
  animation: heroFadeIn 0.5s ease 0.3s forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  font-weight: 900;
  color: #101828;
  letter-spacing: -0.025em;
}

.hero-title-line {
  display: block;
  font-size: clamp(1.75rem, 5.5vw, 2.96875rem);
  line-height: 1.4;
  font-weight: 900;
}

.hero-title-line--en {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e2939;
  line-height: 1.625;
  margin: 0;
  letter-spacing: -0.015em;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.625;
  }
}

.hero-desc {
  color: #4a5565;
  font-weight: 700;
  line-height: 1.625;
  font-size: 1rem;
  margin: 0;
  padding: 0.5rem 0 0;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.5s ease 0.5s forwards;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    gap: 1rem;
  }
}

.tiktok-lp main .hero-section .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #00a7b5;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 10px 15px -3px rgba(0, 167, 181, 0.3), 0 4px 6px -4px rgba(0, 167, 181, 0.3);
  transition: all 0.3s;
  width: 100%;
}

@media (min-width: 640px) {
  .tiktok-lp main .hero-section .btn-primary {
    width: auto;
  }
}

.tiktok-lp main .hero-section .btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 167, 181, 0.35);
}

.tiktok-lp main .hero-section .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: #00a7b5;
  border: 1px solid #00a7b5;
  padding: 0.9375rem 2.0625rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.2s;
  width: 100%;
}

@media (min-width: 640px) {
  .tiktok-lp main .hero-section .btn-secondary {
    width: auto;
  }
}

.tiktok-lp main .hero-section .btn-secondary:hover {
  background: var(--color-primary-light);
}

.tiktok-lp main .hero-section .btn-secondary-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-icon-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin-top: 2.5rem;
  min-width: 0;
  padding: 0 0.75rem 0.75rem 0;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.95) translateX(20px);
  animation: heroVisualIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@media (min-width: 1024px) {
  .hero-visual {
    margin-top: 0;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: center;
    padding: 0 0 0 0;
    order: 2;
  }

  .hero-text {
    order: 1;
    align-self: center;
    display: flex;
    flex-direction: column;
    min-height: 599px;
  }
}

@keyframes heroVisualIn {
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 485px;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .hero-image-wrap {
    margin-right: 0;
    margin-left: auto;
  }
}

.hero-image-stack {
  position: relative;
  width: 100%;
}

.hero-image-shadow {
  position: absolute;
  inset: 0;
  background: rgba(254, 44, 85, 0.3);
  border-radius: 24px;
  transform: translate(12px, 12px);
  z-index: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero-image-shadow {
    border-radius: 48px;
    transform: translate(20px, 20px);
  }
}

.hero-deco-cyan {
  position: absolute;
  left: -2.375rem;
  top: 50%;
  width: 4rem;
  height: 4rem;
  border: 4px solid #25f4ee;
  border-radius: 12px;
  opacity: 0.2;
  transform: translateY(-50%) rotate(-12deg);
  z-index: 0;
  pointer-events: none;
  display: none;
}

@media (min-width: 640px) {
  .hero-deco-cyan {
    display: block;
  }
}

/* Figma: 枠 485×647px、内側画像 461×619px */
.hero-image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 485px;
  aspect-ratio: 485 / 647;
  box-sizing: border-box;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  border: 8px solid #fff;
}

@media (min-width: 1024px) {
  .hero-image-frame {
    border-radius: 32px;
    border-width: 12px;
  }
}

.tiktok-lp main .hero-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.05);
}

.hero-accent-circle {
  position: absolute;
  bottom: 2.25rem;
  left: -1.75rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #fe2c55;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: 4px solid #fff;
  pointer-events: none;
}

/* Banner — Figma 102:1043 */
.banner-section {
  background: #fe2c55;
  border-top: 2px solid #fe2c55;
  border-bottom: 2px solid #fe2c55;
  padding: 26px 16px;
  position: relative;
  z-index: 20;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .banner-section {
    padding: 26px 80px;
  }
}

.banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .banner-inner {
    flex-direction: row;
    gap: 32px;
    font-size: 1.5rem;
    letter-spacing: 2.4px;
  }
}

.banner-divider {
  display: none;
  color: #fff;
  font-family: Inter, sans-serif;
  font-weight: 700;
}

@media (min-width: 768px) {
  .banner-divider {
    display: block;
  }
}

.banner-badge {
  color: #fb2c36;
  background: #fff;
  border: 2px solid #fb2c36;
  border-radius: 9999px;
  padding: 6px 18px;
  letter-spacing: -0.6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .banner-badge {
    font-size: 1.5rem;
  }
}

/* Troubles */
.troubles-section {
  padding: 6rem 1rem;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.section-center {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-desc {
  color: #4B5563;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

/* Section H2 — React: text-[1.375rem] sm:text-3xl md:text-5xl */
.h2-bracket {
  font-size: 1.375rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.5rem;
  display: inline-block;
  line-height: 1.625;
}

@media(min-width:640px) {
  .h2-bracket {
    font-size: 1.875rem;
    line-height: 1.25;
  }
}

@media(min-width:768px) {
  .h2-bracket {
    font-size: 3rem;
  }
}

.h2-bracket--services {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

@media(min-width:640px) {
  .h2-bracket--services {
    font-size: 1.875rem;
    padding: 0 2rem;
  }
}

@media(min-width:768px) {
  .h2-bracket--services {
    font-size: 3rem;
  }
}

.h2-bracket--pr {
  font-size: 1.3125rem;
  margin-bottom: 2rem;
  padding: 0.25rem 2rem;
}

@media(min-width:640px) {
  .h2-bracket--pr {
    font-size: 1.875rem;
    padding: 0.25rem 2.5rem;
  }
}

@media(min-width:768px) {
  .h2-bracket--pr {
    font-size: 3rem;
  }
}

.h2-bracket--padded {
  padding: 0.25rem 2rem;
  white-space: nowrap;
}

@media(min-width:640px) {
  .h2-bracket--padded {
    padding: 0.25rem 2.5rem;
  }
}

.h2-bracket--features {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

@media(min-width:640px) {
  .h2-bracket--features {
    margin-top: 1.5rem;
  }
}

.troubles-section-title {
  font-size: 1.375rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
  display: inline-block;
  line-height: 1.625;
  padding: 0 1rem;
}

@media(min-width:640px) {
  .troubles-section-title {
    font-size: 1.875rem;
    line-height: 1.25;
    padding: 0 2rem;
  }
}

@media(min-width:768px) {
  .troubles-section-title {
    font-size: 3rem;
  }
}

.trouble-title-underline {
  position: relative;
  display: inline-block;
}

.trouble-title-underline::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: calc(100% - 0.6rem);
  height: 4px;
  background: #00A7B5;
  border-radius: 9999px;
}

@media(min-width:640px) {
  .trouble-title-underline::after {
    height: 6px;
  }
}

.troubles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media(min-width:768px) {
  .troubles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trouble-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.2s;
}

@media(min-width:640px) {
  .trouble-card {
    gap: 1.5rem;
  }
}

.trouble-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trouble-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 167, 181, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

@media(min-width:640px) {
  .trouble-icon {
    width: 48px;
    height: 48px;
  }
}

.trouble-card:hover .trouble-icon {
  background: rgba(0, 167, 181, 0.2);
}

.trouble-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

@media(min-width:640px) {
  .trouble-icon svg {
    width: 24px;
    height: 24px;
  }
}

.trouble-text {
  font-weight: 700;
  color: #111827;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media(min-width:640px) {
  .trouble-text {
    font-size: 1.125rem;
  }
}

.troubles-cta {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid #f3f4f6;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s;
}

.troubles-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
}

.troubles-cta:hover {
  border-color: rgba(0, 167, 181, 0.3);
}

.troubles-cta h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

@media(min-width:768px) {
  .troubles-cta h3 {
    font-size: 1.875rem;
  }
}

.troubles-cta h3 .highlight {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 2px;
}

@media(min-width:640px) {
  .troubles-cta h3 .highlight {
    border-bottom-width: 4px;
  }
}

.troubles-cta p {
  color: #4B5563;
  font-weight: 700;
  margin-bottom: 2rem;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(0, 167, 181, 0.3);
  transition: all 0.3s;
  width: 100%;
}

.btn-cta-white::before {
  content: '';
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent currentColor;
}

@media(min-width:640px) {
  .btn-cta-white {
    width: auto;
  }
}

.btn-cta-white:hover {
  background: var(--color-primary-dark);
  transform: scale(1.05);
}

/* Importance */
.importance-section {
  padding: 6rem 1.5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

@media(min-width:640px) {
  .importance-section {
    padding: 6rem 1rem;
  }
}

.importance-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(0, 167, 181, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.importance-inner {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.importance-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media(min-width:1024px) {
  .importance-content {
    flex-direction: row;
  }
}

.importance-text {
  width: 100%;
}

@media(min-width:1024px) {
  .importance-text {
    width: 50%;
  }
}

.importance-image {
  width: 100%;
}

@media(min-width:1024px) {
  .importance-image {
    width: 50%;
  }
}

.importance-image-wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid #f3f4f6;
}

@media(min-width:1024px) {
  .importance-image-wrap {
    border-radius: 40px;
  }
}

.importance-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.5rem;
  display: inline-block;
  line-height: 1.5;
}

@media(min-width:640px) {
  .importance-title {
    font-size: 1.875rem;
    line-height: 1.25;
    margin-bottom: 2rem;
  }
}

@media(min-width:768px) {
  .importance-title {
    font-size: 3rem;
  }
}

.importance-title .underline-primary::after {
  bottom: 4px;
  height: 4px;
}

@media(min-width:640px) {
  .importance-title .underline-primary::after {
    height: 6px;
  }
}

.underline-primary {
  position: relative;
  display: inline-block;
}

.underline-primary::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  border-radius: 9999px;
}

.importance-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #374151;
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.5rem;
}

@media(min-width:640px) {
  .importance-body {
    font-size: 1.125rem;
  }
}

.importance-body .quote {
  font-weight: 700;
  color: #111827;
  border-left: 4px solid var(--color-primary);
  padding: 0.5rem 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

@media(min-width:640px) {
  .importance-body .quote {
    font-size: 1.25rem;
  }
}

.importance-strengths {
  margin-top: 3rem;
}

.importance-strengths h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #00A7B5;
  margin-bottom: 1.5rem;
}

.strengths-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media(min-width:640px) {
  .strengths-cards {
    flex-direction: row;
  }
}

.strength-card {
  background: var(--color-surface);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  font-weight: 700;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid #f3f4f6;
  transition: border-color 0.2s;
}

.strength-card:hover {
  border-color: rgba(0, 167, 181, 0.3);
}

.strength-card .num {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.3;
}

.strength-card .label {
  color: #111827;
  white-space: nowrap;
}

/* Services */
.services-section {
  padding: 6rem 1rem;
  background: var(--color-surface);
  border-top: 1px solid #f3f4f6;
  position: relative;
}

.services-inner {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.services-main-desc {
  color: #4B5563;
  line-height: 1.8;
  max-width: 48rem;
  margin: 0 auto 4rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0 1.5rem;
}

@media(min-width:640px) {
  .services-main-desc {
    font-size: 1.125rem;
    padding: 0;
  }
}

.services-problems {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media(min-width:768px) {
  .services-problems {
    flex-direction: row;
  }
}

.problem-pill {
  background: #fff;
  color: #111827;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f4f6;
}

.services-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
  padding: 0 1.5rem;
}

.services-arrow .triangle {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #D1D5DB;
  margin-bottom: 1.5rem;
}

.services-arrow p {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 900;
  color: #00A7B5;
  line-height: 1.7;
  text-align: center;
}

.services-arrow-em {
  display: inline-block;
  text-align: center;
}

@media(min-width:640px) {
  .services-arrow-em {
    padding-bottom: 0.5rem;
  }
}

.services-subtitle {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 2.5rem;
  white-space: nowrap;
}

@media(min-width:640px) {
  .services-subtitle {
    font-size: 1.5rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 1rem;
}

@media(min-width:640px) {
  .services-grid {
    gap: 1.5rem;
    padding: 0;
  }
}

@media(min-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.25rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #f3f4f6;
  cursor: default;
  position: relative;
  overflow: hidden;
  height: 100%;
}

@media(min-width:640px) {
  .service-card {
    border-radius: 2rem;
    padding: 2rem;
  }
}

.service-card:hover,
.tiktok-lp main .service-card.stagger-item.tiktok-inview:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: rgba(0, 167, 181, 0.5);
}

.tiktok-lp main .service-card.stagger-item.tiktok-inview:hover {
  animation: none;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #f3f4f6;
  transition: background 0.2s;
}

@media(min-width:640px) {
  .service-card::after {
    height: 8px;
  }
}

.service-card:hover::after {
  background: var(--color-primary);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #fe2c55;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}

@media(min-width:640px) {
  .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }
}

.service-card:hover .service-icon {
  color: #fe2c55;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

@media(min-width:640px) {
  .service-icon svg {
    width: 40px;
    height: 40px;
  }
}

.service-label {
  font-weight: 700;
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media(min-width:640px) {
  .service-label {
    font-size: 1.125rem;
  }
}

/* Features */
.features-section {
  padding: 6rem 1rem;
  background: #fff;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #f3f4f6;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: rgba(224, 246, 247, 0.5);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.features-inner {
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-header {
  margin-bottom: 6rem;
  text-align: center;
}

.features-logo-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

@media(min-width:640px) {
  .features-logo-line {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

.features-logo-line img {
  height: 24px;
}

@media(min-width:640px) {
  .features-logo-line img {
    height: 32px;
  }
}

.features-logo-line span {
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  line-height: 1.7;
  text-align: center;
}

@media(min-width:640px) {
  .features-logo-line span {
    font-size: 1.25rem;
  }
}

.features-lead {
  color: #4B5563;
  margin-top: 2.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 0 1.5rem;
}

@media(min-width:640px) {
  .features-lead {
    font-size: 1.125rem;
    padding: 0;
  }
}

.features-items {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-bottom: 6rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media(min-width:1024px) {
  .feature-item {
    flex-direction: row;
  }

  .feature-item.reverse {
    flex-direction: row-reverse;
  }
}

.feature-image {
  width: 100%;
}

@media(min-width:1024px) {
  .feature-image {
    width: 50%;
  }
}

.feature-image-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid #f3f4f6;
}

@media(min-width:1024px) {
  .feature-image-wrap {
    border-radius: 40px;
  }
}

.feature-text {
  width: 100%;
}

@media(min-width:1024px) {
  .feature-text {
    width: 50%;
  }
}

.feature-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(0, 167, 181, 0.1);
  line-height: 1;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

@media(min-width:640px) {
  .feature-number {
    font-size: 6rem;
    color: var(--color-primary-light);
  }
}

.feature-num-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media(min-width:640px) {
  .feature-num-title {
    gap: 1.5rem;
  }
}

.feature-title {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.4;
}

.feature-desc {
  color: #374151;
  line-height: 1.8;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(248, 249, 250, 0.5);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
}

@media(min-width:640px) {
  .feature-desc {
    font-size: 1.125rem;
    padding: 2rem;
  }
}

.features-note {
  text-align: center;
  padding: 0 1rem;
}

.features-note p {
  display: inline-block;
  padding: 1.25rem 2rem;
  background: var(--color-surface);
  color: #374151;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.7;
  border-radius: 1.5rem;
}

@media(min-width:640px) {
  .features-note p {
    font-size: 1.125rem;
    border-radius: 9999px;
  }
}

/* Targets */
.targets-section {
  padding: 6rem 1rem;
  background: #fff;
  position: relative;
}

.targets-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.targets-section-desc {
  margin-top: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

@media(min-width:640px) {
  .targets-section-desc {
    padding: 0;
  }
}

.targets-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media(min-width:768px) {
  .targets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media(min-width:1024px) {
  .targets-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.target-card {
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 1rem;
  padding: 2rem;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
}

.target-card:hover,
.tiktok-lp main .target-card.stagger-item.tiktok-inview:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tiktok-lp main .target-card.stagger-item.tiktok-inview:hover {
  animation: none;
}

.target-icon {
  width: 56px;
  height: 56px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fe2c55;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
  transition: color 0.2s;
}

.target-card:hover .target-icon {
  color: #fe2c55;
}

.target-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.target-name {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.target-desc {
  font-size: 0.8125rem;
  color: #4B5563;
  line-height: 1.5;
  font-weight: 500;
}

.targets-note {
  text-align: center;
  color: #4B5563;
  font-weight: 500;
  line-height: 1.8;
  font-size: 0.9375rem;
}

/* Flow */
.flow-section {
  padding: 6rem 1rem;
  background: var(--color-surface);
  position: relative;
}

.flow-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.flow-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.flow-bg-text {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(209, 213, 219, 0.5);
  line-height: 1;
  z-index: 0;
  transform: translateY(-2.5rem);
  pointer-events: none;
}

@media(min-width:768px) {
  .flow-bg-text {
    font-size: 7.5rem;
  }
}

.flow-title-wrap {
  position: relative;
  z-index: 1;
}

.flow-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.5rem;
  display: inline-block;
  line-height: 1.625;
  border-left: 4px solid var(--color-primary);
  border-right: 4px solid var(--color-primary);
  padding: 0.25rem 2rem;
  white-space: nowrap;
}

@media(min-width:640px) {
  .flow-title {
    font-size: 1.875rem;
    line-height: 1.25;
  }
}

@media(min-width:768px) {
  .flow-title {
    font-size: 3rem;
  }
}

.flow-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-top: 1.5rem;
}

.flow-subtitle .highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.25rem;
}

.flow-subtitle .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 238, 0, 0.6);
  z-index: -1;
}

.flow-note {
  color: #4B5563;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.flow-steps {
  position: relative;
  margin-top: 3rem;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}

.flow-line {
  display: none;
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(to right, rgba(0, 167, 181, 0.1), rgba(0, 167, 181, 0.2), rgba(0, 167, 181, 0.1));
  transform: translateY(-50%);
  z-index: 0;
}

@media(min-width:768px) {
  .flow-line {
    display: block;
  }
}

.flow-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 1rem;
}

@media(min-width:640px) {
  .flow-items {
    gap: 1.5rem;
    padding: 0;
  }
}

@media(min-width:768px) {
  .flow-items {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.flow-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  max-width: 100%;
  cursor: default;
  gap: 1rem;
  width: 100%;
}

@media(min-width:768px) {
  .flow-item {
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    gap: 0;
  }
}

.flow-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  border: 6px solid var(--color-surface);
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 163, 160, 0.3);
  transition: transform 0.2s;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

@media(min-width:640px) {
  .flow-circle {
    width: 64px;
    height: 64px;
    border-width: 8px;
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
}

.flow-item:hover .flow-circle {
  transform: scale(1.1);
}

.flow-card {
  flex: 1;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
  text-align: left;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  transition: box-shadow 0.2s;
  width: 100%;
}

@media(min-width:768px) {
  .flow-card {
    text-align: center;
    min-height: 110px;
    padding: 1rem;
    gap: 0.75rem;
  }
}

.flow-item:hover .flow-card {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.flow-eng {
  font-size: 0.625rem;
  color: #9CA3AF;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

@media(min-width:640px) {
  .flow-eng {
    font-size: 0.75rem;
  }
}

.flow-label {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: #111827;
}

@media(min-width:640px) {
  .flow-label {
    font-size: 1.0625rem;
  }
}

.flow-label.primary {
  color: var(--color-primary);
}

/* Pricing */
.pricing-section {
  padding: 6rem 1rem;
  background: #fff;
  position: relative;
}

.pricing-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.pricing-init {
  text-align: center;
  margin-bottom: 5rem;
}

.pricing-init-desc {
  color: #4B5563;
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 0 1.5rem;
}

@media(min-width:640px) {
  .pricing-init-desc {
    padding: 0;
  }
}

.pricing-init-card {
  max-width: 672px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.pricing-init-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.pricing-init-head {
  background: #111827;
  color: #fff;
  font-weight: 700;
  padding: 1.25rem 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(min-width:640px) {
  .pricing-init-head {
    padding: 1.25rem;
    font-size: 1.125rem;
  }
}

.pricing-init-body {
  padding: 1.5rem;
}

@media(min-width:640px) {
  .pricing-init-body {
    padding: 2.5rem;
  }
}

.pricing-init-price {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  margin-bottom: 0.5rem;
}

@media(min-width:640px) {
  .pricing-init-price {
    font-size: 3rem;
  }
}

.pricing-init-price .unit {
  font-size: 0.875rem;
  font-weight: 700;
  color: #6B7280;
  margin-left: 0.25rem;
}

@media(min-width:640px) {
  .pricing-init-price .unit {
    font-size: 1.25rem;
  }
}

.pricing-init-includes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
  margin-top: 2rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media(min-width:640px) {
  .pricing-init-includes {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}

.pricing-init-includes span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-init-includes .dot {
  color: var(--color-primary);
  font-size: 1.125rem;
  line-height: 1;
}

.pricing-init-note {
  font-size: 0.6875rem;
  color: #9CA3AF;
  margin-top: 2rem;
  font-weight: 500;
}

@media(min-width:640px) {
  .pricing-init-note {
    font-size: 0.75rem;
    margin-top: 1.5rem;
  }
}

.pricing-plans {
  padding-top: 2.5rem;
}

.pricing-plans-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-plans-desc {
  color: #4B5563;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media(min-width:640px) {
  .pricing-plans-desc {
    font-size: 1rem;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1152px;
  margin: 0 auto 2rem;
  align-items: stretch;
  padding: 0 1rem;
}

@media(min-width:640px) {
  .pricing-grid {
    padding: 0;
  }
}

@media(min-width:1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.plan-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.plan-card:not(.featured):hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
  border: 3px solid var(--color-primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media(min-width:1024px) {
  .plan-card.featured {
    transform: translateY(-1rem);
  }
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fe2c55;
  color: #fff;
  font-weight: 900;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  z-index: 2;
  white-space: nowrap;
}

@media(min-width:640px) {
  .plan-badge {
    font-size: 1rem;
  }
}

.plan-head {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
  background: var(--color-surface);
  border-radius: 2rem 2rem 0 0;
}

.plan-card.featured .plan-head {
  background: rgba(224, 246, 247, 0.3);
  padding-top: 2.5rem;
}

.plan-for {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6B7280;
  margin-bottom: 0.5rem;
}

.plan-card.featured .plan-for {
  color: var(--color-primary-dark);
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
  white-space: nowrap;
}

@media(min-width:640px) {
  .plan-name {
    font-size: 1.5rem;
  }
}

.plan-price {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  line-height: 1;
}

@media(min-width:640px) {
  .plan-price {
    font-size: 2.25rem;
  }
}

.plan-card.featured .plan-price {
  color: var(--color-primary);
}

@media(min-width:1024px) {
  .plan-card.featured .plan-price {
    font-size: 3rem;
  }
}

.plan-price .unit {
  font-size: 1.25rem;
}

@media(min-width:640px) {
  .plan-price .unit {
    font-size: 1.5rem;
  }
}

.plan-period {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #6B7280;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

@media(min-width:640px) {
  .plan-period {
    font-size: 0.875rem;
  }
}

.plan-posts {
  display: inline-block;
  padding: 0.5rem 2rem;
  background: #fff;
  border-radius: 9999px;
  font-weight: 700;
  color: #111827;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
  white-space: nowrap;
}

@media(min-width:640px) {
  .plan-posts {
    font-size: 1rem;
  }
}

.plan-card.featured .plan-posts {
  color: var(--color-primary);
  border-color: rgba(0, 167, 181, 0.3);
}

.plan-min {
  font-size: 0.625rem;
  color: #9CA3AF;
  margin-top: 1rem;
  font-weight: 500;
}

@media(min-width:640px) {
  .plan-min {
    font-size: 0.75rem;
  }
}

.plan-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

@media(min-width:640px) {
  .plan-body {
    padding: 2rem;
  }
}

.plan-includes-label {
  font-size: 0.625rem;
  font-weight: 900;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  display: inline-block;
  margin-bottom: 1rem;
}

@media(min-width:640px) {
  .plan-includes-label {
    font-size: 0.875rem;
  }
}

.plan-card.featured .plan-includes-label {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 167, 181, 0.2);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #374151;
}

@media(min-width:640px) {
  .plan-features {
    font-size: 0.9375rem;
  }
}

.plan-card.featured .plan-features {
  color: #111827;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.plan-feature-item .check-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.plan-feature-item .check-icon.check-icon-accent {
  color: #fe2c55;
  stroke: #fe2c55;
  position: relative;
  z-index: 1;
}

.plan-characteristics-title {
  font-size: 0.75rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
}

@media(min-width:640px) {
  .plan-characteristics-title {
    font-size: 0.875rem;
  }
}

.plan-characteristics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.6875rem;
  color: #4B5563;
}

@media(min-width:640px) {
  .plan-characteristics {
    font-size: 0.75rem;
  }
}

.plan-characteristics li {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}

.plan-card.featured .plan-characteristics {
  font-weight: 700;
  color: #374151;
}

.plan-characteristics .arrow {
  display: inline-block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  margin-top: 0.25em;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--color-primary);
}

.plan-btn {
  margin-top: auto;
  display: block;
  width: 100%;
  padding: 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
}

@media(min-width:640px) {
  .plan-btn {
    font-size: 1rem;
  }
}

.plan-btn.default {
  color: #374151;
  background: var(--color-surface);
  border-color: #e5e7eb;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.plan-btn.default:hover {
  background: #f3f4f6;
}

.plan-card:not(.featured):hover .plan-btn.default {
  color: var(--color-primary);
  border-color: rgba(0, 167, 181, 0.5);
}

.plan-btn.primary {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s, transform 0.2s;
}

.plan-btn.primary:hover {
  background: var(--color-primary-dark);
}

.plan-card.featured:hover .plan-btn.primary {
  transform: scale(1.05);
}

.pricing-notes {
  text-align: center;
  font-size: 0.625rem;
  color: #9CA3AF;
  margin-top: 2rem;
  line-height: 1.8;
  font-weight: 500;
  padding: 0 1.5rem;
}

@media(min-width:640px) {
  .pricing-notes {
    font-size: 0.75rem;
    margin-top: 3rem;
  }
}

/* Ads */
.pr-section {
  padding: 5rem 1rem;
  background: var(--color-surface);
  border-top: 1px solid #f3f4f6;
  overflow-x: clip;
}

.pr-inner {
  max-width: 1024px;
  margin: 0 auto;
  min-width: 0;
}

.pr-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 0.5rem;
}

.pr-desc {
  color: #4B5563;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

@media(min-width:640px) {
  .pr-desc {
    font-size: 1.125rem;
    padding: 0;
  }
}

.pr-subdesc {
  color: #6B7280;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 0 1rem;
}

@media(min-width:640px) {
  .pr-subdesc {
    font-size: 0.875rem;
    padding: 0;
  }
}

.pr-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  padding: 0 0.5rem;
  min-width: 0;
}

@media(min-width:640px) {
  .pr-grid {
    padding: 0;
  }
}

@media(min-width:768px) {
  .pr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.pr-card-light {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  padding: 1.5rem;
  height: 100%;
  font-weight: 700;
  position: relative;
  transition: border-color 0.2s;
  min-width: 0;
  overflow-wrap: break-word;
}

@media(min-width:640px) {
  .pr-card-light {
    padding: 2rem;
  }
}

@media(min-width:768px) {
  .pr-card-light {
    padding: 2.5rem;
  }
}

.pr-card-light:hover {
  border-color: rgba(0, 167, 181, 0.3);
}

.pr-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #374151;
}

@media(min-width:640px) {
  .pr-list {
    gap: 1.5rem;
  }
}

.pr-list-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pr-list-item .label-line {
  display: flex;
  align-items: flex-start;
}

.pr-list-item .dot {
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-right: 0.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pr-list-item .label {
  font-size: 0.875rem;
  line-height: 1.5;
}

@media(min-width:640px) {
  .pr-list-item .label {
    font-size: 1rem;
  }
}

.pr-list-item .value {
  font-size: 1rem;
  display: block;
  margin-top: 0.25rem;
  margin-left: 0;
  line-height: 1.5;
  word-break: break-word;
}

@media(min-width:640px) {
  .pr-list-item .value {
    font-size: 1.125rem;
    margin-left: 1.75rem;
  }
}

.pr-list-item:first-child .value {
  white-space: normal;
}

@media(min-width:640px) {
  .pr-list-item:first-child .value {
    white-space: nowrap;
  }
}

.pr-footnote {
  font-size: 0.75rem;
  color: #6B7280;
  margin-top: 2.5rem;
  line-height: 1.8;
  background: var(--color-surface);
  padding: 1.25rem;
  border-radius: 0.75rem;
  text-align: left;
}

@media(min-width:640px) {
  .pr-footnote {
    font-size: 0.875rem;
    padding: 1rem;
  }
}

.pr-card-dark {
  background: #111827;
  color: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  height: 100%;
  position: relative;
  min-width: 0;
}

.pr-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: rgba(0, 167, 181, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.pr-card-dark-head {
  background: #1F2937;
  text-align: center;
  padding: 1.25rem;
  font-weight: 900;
  color: #fff;
  border-bottom: 1px solid #374151;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}

.pr-card-dark-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  min-width: 0;
}

@media(min-width:640px) {
  .pr-card-dark-body {
    padding: 2rem;
  }
}

@media(min-width:768px) {
  .pr-card-dark-body {
    padding: 2.5rem;
    gap: 2rem;
  }
}

.pr-price-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #374151;
  min-width: 0;
}

@media(min-width:640px) {
  .pr-price-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
}

.pr-price-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pr-price-label {
  color: #9CA3AF;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

@media(min-width:640px) {
  .pr-price-label {
    font-size: 0.875rem;
  }
}

.pr-price-value {
  font-weight: 900;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.4;
  word-break: break-word;
}

@media(min-width:640px) {
  .pr-price-value {
    font-size: 1.5rem;
    white-space: nowrap;
  }
}

.pr-price-value.primary {
  color: var(--color-primary);
}

.pr-price-value--compact {
  font-size: 1rem;
}

@media(min-width:640px) {
  .pr-price-value--compact {
    font-size: 1.125rem;
  }
}

.pr-price-value .yen-sm {
  font-size: 0.75rem;
  font-weight: 700;
}

@media(min-width:640px) {
  .pr-price-value .yen-sm {
    font-size: 0.875rem;
  }
}

.pr-price-value .sub {
  font-size: 0.625rem;
  color: #fff;
  font-weight: 700;
  margin-left: 0.25rem;
}

@media(min-width:640px) {
  .pr-price-value .sub {
    font-size: 0.875rem;
  }
}

/* Differences */
.differences-section {
  padding: 6rem 1rem;
  background: #fff;
  position: relative;
}

.differences-inner {
  max-width: 896px;
  margin: 0 auto;
}

.diff-table {
  display: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media(min-width:640px) {
  .diff-table {
    display: block;
  }
}

.diff-table-head {
  display: flex;
  background: #111827;
  color: #fff;
  font-weight: 900;
  text-align: center;
  font-size: 1.125rem;
}

.diff-table-head .col {
  flex: 1;
  padding: 1.25rem 0.5rem;
  border-right: 1px solid #374151;
}

.diff-table-head .col:last-child {
  border-right: none;
}

.diff-table-head .col.our {
  background: #1F2937;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  font-size: 1.25rem;
}

.diff-table-body .row {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  transition: background 0.2s;
}

.diff-table-body .row:last-child {
  border-bottom: none;
}

.diff-table-body .row:hover {
  background: #f9fafb;
}

.diff-table-body .row .col {
  flex: 1;
  padding: 1.5rem 0.5rem;
  border-right: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-table-body .row .col:last-child {
  border-right: none;
}

.diff-table-body .row .col.item {
  background: var(--color-surface);
  font-weight: 700;
  color: #111827;
}

.diff-table-body .row .col.our {
  font-weight: 900;
  color: var(--color-primary);
  font-size: 1.125rem;
}

.diff-table-body .row .col.gen {
  font-weight: 700;
  color: #9CA3AF;
}

.diff-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0.5rem;
}

@media(min-width:640px) {
  .diff-mobile {
    display: none;
  }
}

.diff-mobile-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.diff-mobile-head {
  background: #111827;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
}

.diff-mobile-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #f3f4f6;
}

.diff-mobile-col {
  padding: 1rem;
}

.diff-mobile-col:first-child {
  background: rgba(0, 167, 181, 0.05);
  border-right: 1px solid #f3f4f6;
}

.diff-mobile-col:last-child {
  background: #f9fafb;
}

.diff-mobile-col-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.diff-mobile-col:first-child .diff-mobile-col-label {
  color: var(--color-primary);
}

.diff-mobile-col:last-child .diff-mobile-col-label {
  color: #9CA3AF;
}

.diff-mobile-value {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  line-height: 1.4;
}

.diff-mobile-col:first-child .diff-mobile-value {
  color: var(--color-primary);
}

.diff-mobile-col:last-child .diff-mobile-value {
  color: #6B7280;
}

.diff-mobile-value .mark {
  font-size: 1.25rem;
  line-height: 1;
}

/* FAQ */
.faq-section {
  padding: 6rem 1rem;
  background: var(--color-surface);
  position: relative;
}

.faq-inner {
  max-width: 768px;
  margin: 0 auto;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0.5rem;
}

@media(min-width:640px) {
  .faq-items {
    padding: 0;
  }
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s;
}

.faq-item.open {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 167, 181, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

@media(min-width:640px) {
  .faq-question {
    padding: 1.5rem;
  }
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-q-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

@media(min-width:640px) {
  .faq-q-inner {
    align-items: center;
  }
}

.faq-q-label {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

@media(min-width:640px) {
  .faq-q-label {
    font-size: 1.5rem;
    margin-top: 0;
  }
}

.faq-q-text {
  font-weight: 700;
  padding-right: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #111827;
}

@media(min-width:640px) {
  .faq-q-text {
    font-size: 1rem;
  }
}

.faq-toggle {
  width: 20px;
  height: 20px;
  color: #9CA3AF;
  flex-shrink: 0;
}

.faq-item .icon-minus {
  display: none;
}

.faq-item.open .icon-plus {
  display: none;
}

.faq-item.open .icon-minus {
  display: block;
}

.faq-items .stagger-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-collapse {
  overflow: hidden;
  min-height: 0;
}

.faq-answer-inner {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid #f9fafb;
  background: rgba(249, 250, 251, 0.5);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

@media(min-width:640px) {
  .faq-answer-inner {
    padding: 1rem 1.5rem 1.5rem;
  }
}

.faq-a-label {
  color: #D1D5DB;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 4px;
}

@media(min-width:640px) {
  .faq-a-label {
    font-size: 1.5rem;
  }
}

.faq-a-text {
  color: #4B5563;
  line-height: 1.8;
  font-size: 0.875rem;
  font-weight: 500;
}

@media(min-width:640px) {
  .faq-a-text {
    font-size: 0.9375rem;
  }
}