@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');

/* EC LP — organic, animated, whitespace-rich design */
/* Scoped via .ec-lp wrapper to avoid leaking into other pages */

.ec-lp { line-height: 1.8; font-size: 14px; overflow-x: hidden; }
.ec-lp img { max-width: 100%; display: block; }

.ec-lp .lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* ========== Scroll Animation ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate="fade-in"] {
  transform: none;
}
[data-animate="scale-up"] {
  transform: scale(0.92);
}
[data-animate="slide-right"] {
  transform: translateX(-48px);
}
[data-animate="slide-left"] {
  transform: translateX(48px);
}
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-stagger] > *.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== Floating Decoratives ========== */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}
@keyframes float-med {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes float-fast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.06); }
}

.ec-lp .deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.ec-lp .deco-float-1 { animation: float-slow 7s ease-in-out infinite; }
.ec-lp .deco-float-2 { animation: float-med 5.5s ease-in-out infinite; }
.ec-lp .deco-float-3 { animation: float-fast 4s ease-in-out infinite; }
.ec-lp .deco-pulse { animation: pulse-soft 6s ease-in-out infinite; }

/* ========== Buttons ========== */
.ec-lp .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.ec-lp .btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(6,199,85,0.25);
}
.ec-lp .btn-line:hover {
  background: #05b34c;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px 0 rgba(6,199,85,0.35);
}
.ec-lp .btn-yellow {
  background: #FDE047;
  color: #003834;
  box-shadow: 0 4px 20px 0 rgba(0,0,0,0.08);
  font-weight: 700;
}
.ec-lp .btn-yellow:hover {
  background: #FACC15;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px 0 rgba(0,0,0,0.12);
}
.ec-lp .btn-ghost {
  background: #fff;
  color: #414349;
  border: 1.5px solid #E2E8F0;
}
.ec-lp .btn-ghost:hover {
  border-color: #0FA49D;
  color: #0FA49D;
  transform: translateY(-3px);
}
.ec-lp .btn .arrow {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  display: grid; place-items: center;
  font-size: 14px;
  transition: transform 0.3s;
}
.ec-lp .btn:hover .arrow { transform: translateX(3px); }
.ec-lp .btn-ghost .arrow { background: #F1F5F9; color: #414349; }

/* ========== Organic Wave Dividers ========== */
.ec-lp .wave-section {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 2;
}
.ec-lp .wave-section svg {
  display: block;
  width: 100%;
  height: auto;
}
.ec-lp .wave-section.flip { transform: scaleY(-1); }

/* ========== Hero ========== */
.ec-lp .hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.ec-lp .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.ec-lp .hero-eyebrow {
  margin-bottom: 20px;
}
.ec-lp .hero-eyebrow img {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.ec-lp .hero-eyebrow img:hover { opacity: 1; }
.ec-lp .hero h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 46px;
  line-height: 1.45;
  color: #003834;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}
.ec-lp .hero h1 .accent-blue {
  color: #0FA49D;
  position: relative;
}
.ec-lp .hero h1 .accent-pink {
  color: #F87171;
  position: relative;
}
.ec-lp .hero h1 .accent-blue::after,
.ec-lp .hero h1 .accent-pink::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 8px;
  background: currentColor;
  opacity: 0.18;
  border-radius: 4px;
  z-index: -1;
}
.ec-lp .hero-sub {
  color: #414349;
  font-size: 14px;
  line-height: 2.1;
  margin-bottom: 40px;
  max-width: 480px;
}
.ec-lp .hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 300px;
}
.ec-lp .hero-cta .btn {
  width: 100%;
}

/* Hero Visual — blob mask */
.ec-lp .hero-visual {
  position: relative;
  min-height: 460px;
}
.ec-lp .hero-photo {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,164,157,0.15);
}
.ec-lp .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ec-lp .hero-badge {
  position: absolute;
  bottom: 50px; left: -24px;
  background: #F87171;
  color: #fff;
  border-radius: 50%;
  width: 120px; height: 120px;
  display: grid; place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 10px 30px rgba(248,113,113,0.35);
  transform: rotate(-8deg);
  z-index: 3;
  animation: float-med 5s ease-in-out infinite;
}

/* ========== Pain ========== */
.ec-lp .pain {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #FDEFEB 0%, #FBE6E1 100%);
  padding: 110px 0 130px;
  overflow: hidden;
  isolation: isolate;
}
.ec-lp .pain-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.ec-lp .pd-splash-tl { top: 30px; left: 20px; width: 140px; opacity: 0.95; }
.ec-lp .pd-arrow-tr { top: 80px; right: 120px; width: 90px; transform: rotate(20deg); }
.ec-lp .pd-dots-l { top: 46%; left: 0; width: 80px; }
.ec-lp .pd-dots-r { top: 50%; right: 10px; width: 80px; }
.ec-lp .pd-arrow-bl { bottom: 200px; left: 80px; width: 80px; }
.ec-lp .pd-sparkle-l { top: 280px; left: 60px; width: 50px; }
.ec-lp .pd-burst-l { top: 230px; left: 240px; width: 70px; }
.ec-lp .pd-burst-r { bottom: 280px; right: 240px; width: 70px; }
.ec-lp .pain-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  z-index: 2;
}
/* Header */
.ec-lp .pain-head {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.ec-lp .pain-eyebrow-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}
.ec-lp .pain-eyebrow {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 30px;
  color: #E85A5C;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
.ec-lp .pain-eyebrow-marks {
  position: absolute;
  inset: -14px -38px;
  pointer-events: none;
}
.ec-lp .pain-title {
  font-size: 40px;
  line-height: 1.45;
  font-weight: 700;
  margin: 6px 0 22px;
  letter-spacing: 0.02em;
  color: #2B2D33;
  text-align: center;
}
.ec-lp .pain-accent-word {
  color: #E85A5C;
  position: relative;
  display: inline-block;
  padding: 0 4px;
}
.ec-lp .pain-ul {
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 14px;
  background: url('/lp/underline-coral.png') center bottom / 100% 14px no-repeat;
  display: block;
}
.ec-lp .pain-lede {
  font-size: 15px;
  line-height: 2;
  color: #5A5D67;
  margin: 0;
  letter-spacing: 0.04em;
  text-align: center;
}
.ec-lp .pain-wavy {
  background: url('/lp/wavy-coral.png') center bottom / 100% 6px no-repeat;
  padding-bottom: 8px;
}
/* Grid 2×2 */
.ec-lp .pain-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 240px;
  row-gap: 70px;
  max-width: 1280px;
  margin: 70px auto 0;
}
/* Item = portrait + bubble */
.ec-lp .pain-item {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  min-width: 0;
}
.ec-lp .pain-item--right {
  flex-direction: row-reverse;
  text-align: left;
}
/* Portrait */
.ec-lp .pain-portrait {
  position: relative;
  width: 200px; height: 200px;
  flex: 0 0 200px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px -8px rgba(232,90,92,0.15);
}
.ec-lp .pain-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
}
/* Speech bubble */
.ec-lp .pain-bubble {
  position: relative;
  background: #fff;
  border: 1.5px solid #FAD9D5;
  border-radius: 28px;
  padding: 22px 22px 22px 54px;
  flex: 1 1 auto;
  min-width: 0;
  box-shadow: 0 14px 30px -18px rgba(207,88,90,0.25);
}
.ec-lp .pain-item--right .pain-bubble {
  padding: 22px 54px 22px 22px;
}
.ec-lp .pain-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px; height: 22px;
  background: #fff;
  border: 1.5px solid #FAD9D5;
  border-top: none; border-right: none;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 0 0 0 6px;
}
.ec-lp .pain-item:not(.pain-item--right) .pain-bubble::before { left: -12px; }
.ec-lp .pain-item--right .pain-bubble::before {
  right: -12px;
  border: 1.5px solid #FAD9D5;
  border-bottom: none; border-left: none;
  border-radius: 0 6px 0 0;
}
/* Icon badge */
.ec-lp .pain-badge {
  position: absolute;
  top: -16px;
  width: 46px; height: 46px;
  border-radius: 999px;
  background: #E85A5C;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px -6px rgba(232,90,92,0.5);
}
.ec-lp .pain-badge svg {
  width: 22px; height: 22px;
}
.ec-lp .pain-item:not(.pain-item--right) .pain-badge { left: 18px; }
.ec-lp .pain-item--right .pain-badge { right: 18px; }
/* Bubble text */
.ec-lp .pain-bubble h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  margin: 6px 0 4px;
  color: #D14547;
  letter-spacing: 0.02em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.ec-lp .pain-bubble p {
  font-size: 13px;
  line-height: 1.85;
  color: #5A5D67;
  margin: 0;
  letter-spacing: 0.03em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
/* Center character */
.ec-lp .pain-center-char {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(calc(-50% + 18px), -50%);
  width: 200px;
  text-align: center;
  z-index: 5;
  pointer-events: none;
}
.ec-lp .pain-center-char img {
  width: 100%;
  height: auto;
}
/* Bottom CTA */
.ec-lp .pain-cta-wrap {
  position: relative;
  margin-top: 110px;
  text-align: center;
}
.ec-lp .pain-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #EE6062 0%, #DC4A4C 100%);
  color: #fff;
  padding: 24px 64px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 28px -10px rgba(207,60,62,0.45), inset 0 -3px 0 rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ec-lp .pain-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -10px rgba(207,60,62,0.55), inset 0 -3px 0 rgba(0,0,0,0.06);
}
.ec-lp .pain-arrow-down {
  position: absolute;
  left: 50%; bottom: -50px;
  transform: translateX(-50%);
  width: 28px; height: 36px;
}
.ec-lp .pain-cta-deco-left,
.ec-lp .pain-cta-deco-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 130px;
}
.ec-lp .pain-cta-deco-left { left: -60px; }
.ec-lp .pain-cta-deco-right { right: -60px; }

/* ========== Section Common ========== */
.ec-lp .section {
  padding: 110px 0;
  position: relative;
}
.ec-lp .section-eyebrow {
  font-family: "Gantari", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #0FA49D;
  text-align: center;
  margin-bottom: 10px;
}
.ec-lp .section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #003834;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.ec-lp .section-underline {
  display: block;
  margin: 16px auto 64px;
  width: 36px; height: 3px;
  background: #0FA49D;
  border-radius: 2px;
}

/* ========== Service (LP Card Stack) ========== */
.ec-lp .service { background: #fff; }

.ec-lp .svc-header {
  position: relative;
  text-align: center;
  padding: 36px 40px 32px;
  overflow: visible;
}
.ec-lp .svc-deco-l,
.ec-lp .svc-deco-r {
  position: absolute;
  top: -20px;
  pointer-events: none;
  user-select: none;
  width: 200px;
  height: auto;
}
.ec-lp .svc-deco-l { left: -30px; }
.ec-lp .svc-deco-r { right: -30px; }

.ec-lp .svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #0FA49D;
  font-family: "Gantari", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.26em;
  margin-bottom: 14px;
}
.ec-lp .svc-eyebrow::before,
.ec-lp .svc-eyebrow::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 6px;
  background-image: radial-gradient(circle, #0FA49D 1.4px, transparent 1.6px);
  background-size: 8px 6px;
  background-repeat: repeat-x;
  opacity: 0.85;
}

.ec-lp .svc-headline {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #1f2933;
  margin: 0 auto 14px;
}
.ec-lp .svc-headline .accent { color: #0FA49D; }

.ec-lp .svc-lede {
  font-size: 13px;
  color: #4b5660;
  letter-spacing: 0.05em;
  margin: 0 auto;
  max-width: 620px;
  line-height: 1.7;
}

.ec-lp .svc-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ec-lp .svc-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(15,56,52,0.06), 0 2px 6px rgba(15,56,52,0.04);
  overflow: hidden;
}

.ec-lp .svc-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 220px;
}

.ec-lp .svc-media {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ec-lp .svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ec-lp .svc-text {
  padding: 30px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ec-lp .svc-num {
  font-family: "Gantari", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: #0FA49D;
  letter-spacing: -0.02em;
}

.ec-lp .svc-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 6px;
}
.ec-lp .svc-head h3 {
  font-weight: 900;
  font-size: 26px;
  line-height: 1.3;
  color: #1f2933;
  letter-spacing: 0.04em;
  margin: 6px 0 0;
  white-space: nowrap;
}

.ec-lp .svc-card p {
  font-size: 13px;
  color: #4b5660;
  line-height: 1.85;
  letter-spacing: 0.04em;
  margin: 0;
}

.ec-lp .svc-body-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.ec-lp .svc-icon-tile {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  background: #DDF1EE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #0FA49D;
  position: relative;
  flex-shrink: 0;
}
.ec-lp .svc-lock {
  position: absolute;
  bottom: 10px;
  right: 8px;
  width: 16px;
  height: 16px;
  background: #F5C842;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ec-lp .svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.ec-lp .svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #DBE3E7;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 11.5px;
  color: #2f3a42;
  letter-spacing: 0.05em;
  font-weight: 500;
  white-space: nowrap;
}
.ec-lp .svc-pill .svc-ico {
  width: 13px;
  height: 13px;
  color: #0FA49D;
  flex: 0 0 auto;
}

.ec-lp .svc-flip .svc-media { order: -1; }

.ec-lp .svc-c1 { min-height: 240px; }
.ec-lp .svc-c2 { min-height: 270px; }
.ec-lp .svc-c3 { min-height: 240px; }
.ec-lp .svc-c4 { min-height: 220px; }
.ec-lp .svc-c5 { min-height: 280px; }

.ec-lp .svc-shop-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.ec-lp .svc-ico-pill {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1.5px solid #2f3a42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f3a42;
  background: #fff;
}
.ec-lp .svc-shop-flow .arr {
  color: #85C5C5;
  font-size: 14px;
  font-weight: 700;
}
.ec-lp .svc-shop-flow .arr-dash {
  color: #0FA49D;
  font-weight: 700;
  letter-spacing: -1px;
  font-size: 16px;
}
.ec-lp .svc-shop-flow img.shopify {
  width: 36px;
  height: 36px;
}

.ec-lp .svc-footnote {
  margin-top: 16px;
  font-size: 11px;
  color: #94A3B8;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 0 4px;
}

/* ========== Strength — Figma sample4 "特徴" faithful reproduction ========== */
.ec-lp .strength {
  background: #F1F5F9;
  padding: 0;
}

/* --- Header + Cards wrapper --- */
.ec-lp .str-header-bg {
  position: relative;
  padding: 110px 0 0;
  overflow: hidden;
}
.ec-lp .str-header {
  margin-bottom: 48px;
}

/* --- Summary Cards (Figma Component 2 — glass 3-col) --- */
.ec-lp .str-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-bottom: 80px;
}
.ec-lp .str-card {
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ec-lp .str-card:hover {
  background: rgba(255,255,255,0.75);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.ec-lp .str-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5px;
  max-width: 384px;
}
.ec-lp .str-card-num {
  font-family: "Montserrat", "Gantari", sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #0FA49D;
  line-height: 1.5;
}
.ec-lp .str-card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #003834;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}
.ec-lp .str-card-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 380 / 214;
  border-radius: 12px;
  overflow: hidden;
}
.ec-lp .str-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Detail Sections (Figma section#no1 / div#no2 / div#no3) --- */
.ec-lp .str-section {
  padding: 62px 0;
  border-bottom: 2px solid #fff;
  background: #F1F5F9;
}
.ec-lp .str-section--last {
  border-bottom: none;
}

.ec-lp .str-section-inner {
  display: grid;
  grid-template-columns: minmax(368px, 460px) 1fr;
  gap: 48px;
  align-items: flex-start;
}

.ec-lp .str-section-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ec-lp .str-section-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.ec-lp .str-section-num {
  font-family: "Montserrat", "Gantari", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #0FA49D;
  line-height: 1;
}
.ec-lp .str-section-num--coral { color: #F87171; }
.ec-lp .str-section-num--blue  { color: #3B82F6; }

.ec-lp .str-section-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #003834;
  line-height: 1.5;
}
.ec-lp .str-section-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #003834;
  line-height: 1.75;
}
.ec-lp .str-section-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  line-height: 1.75;
  margin-top: 8px;
}

/* Detail image */
.ec-lp .str-section-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.ec-lp #str-01 .str-section-img {
  transform: scale(1.1) translateX(72px) translateY(24px);
  transform-origin: top right;
}
.ec-lp .str-section-img--photo {
  aspect-ratio: auto;
  transform: scale(1.1) translateY(36px) translateX(30px);
  transform-origin: center center;
}
.ec-lp .str-section-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* --- Stats grid (Detail #02 right side) --- */
.ec-lp .str-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  transform: translateX(66px) translateY(24px);
}
.ec-lp .str-stat {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  color: #fff;
}
.ec-lp .str-stat--teal { background: #0FA49D; }
.ec-lp .str-stat--dark { background: #0a3d3a; }
.ec-lp .str-stat-icon {
  width: 22px;
  height: 22px;
  opacity: 0.7;
}
.ec-lp .str-stat-value {
  font-family: "Gantari", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}
.ec-lp .str-stat-label {
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.9;
  white-space: pre-line;
}

/* --- Strong text within desc --- */
.ec-lp .str-section-desc strong {
  font-weight: 700;
  color: inherit;
}

/* --- Dark variant (02: soft mint) --- */
.ec-lp .str-section--dark {
  background: #e8f5f3;
}
.ec-lp .str-section--dark .str-section-num {
  color: #0fa49d;
}
.ec-lp .str-section--dark .str-section-heading {
  color: #0e1a36;
}
.ec-lp .str-section--dark .str-section-desc {
  color: #333;
}
.ec-lp .str-section--dark .str-section-note {
  color: #6B7280;
}
.ec-lp .str-section--dark .str-section-img {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* ========== Comparison ========== */
.ec-lp .comparison { background: #f5f0eb; padding-top: 0; padding-bottom: 0; }
.ec-lp .compare-img-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ec-lp .compare-img {
  width: 100%;
  height: auto;
}

/* ========== Pricing (card stack) ========== */
.ec-lp .pricing { background: #F9FAFB; }

/* Hero */
.ec-lp .price-hero {
  position: relative;
  text-align: center;
  padding: 14px 0 24px;
  overflow: visible;
}
.ec-lp .price-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.ec-lp .price-deco-blob-tl { top: -60px; left: -90px; width: 280px; opacity: 0.95; }
.ec-lp .price-deco-dots-tl { top: 8px; left: 70px; width: 90px; opacity: 0.75; }
.ec-lp .price-deco-triangle-l { top: 110px; left: 18px; width: 70px; transform: rotate(-15deg); opacity: 0.95; }
.ec-lp .price-deco-mockup-tr { top: -20px; right: -20px; width: 240px; }

.ec-lp .price-eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.ec-lp .price-arc {
  width: 90px;
  height: 18px;
  border-top: 2px solid #2bbab1;
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
}
.ec-lp .price-label {
  font-family: "Gantari", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.32em;
  color: #2bbab1;
}

.ec-lp .price-headline {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #2b2f36;
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
}
.ec-lp .price-headline .accent {
  color: #2bbab1;
  font-size: 56px;
  display: inline-block;
  line-height: 1;
  vertical-align: -6px;
  margin: 0 2px;
  font-weight: 900;
}
.ec-lp .price-headline .big {
  font-size: 48px;
  font-weight: 900;
}

.ec-lp .price-lead {
  margin: 22px auto 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 2;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

/* Plan Cards */
.ec-lp .price-plans {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}

.ec-lp .price-plan {
  position: relative;
  border-radius: 14px;
  padding: 26px 20px;
  color: #fff;
  display: grid;
  grid-template-columns: 220px 1fr 158px;
  gap: 10px;
  align-items: stretch;
  box-shadow: 0 6px 20px rgba(20,60,70,0.08);
}
.ec-lp .price-plan > * { min-width: 0; }
.ec-lp .price-starter { background: #2bbab1; }
.ec-lp .price-growth { background: #ff6f6f; }
.ec-lp .price-premium { background: #7b7fe4; }

/* Left column */
.ec-lp .price-plan-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 6px;
}
.ec-lp .price-plan-tag {
  align-self: flex-start;
  background: #fff;
  color: #2b2f36;
  font-weight: 700;
  font-size: 10.5px;
  padding: 6px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 0 rgba(0,0,0,0.05);
  white-space: nowrap;
}
.ec-lp .price-starter .price-plan-tag { color: #14706b; }
.ec-lp .price-growth .price-plan-tag { background: #ffd64a; color: #5a4500; }
.ec-lp .price-growth .price-plan-tag::before { content: "♛"; margin-right: 4px; color: #b8860b; }
.ec-lp .price-premium .price-plan-tag { color: #6366d1; }

.ec-lp .price-plan-name {
  font-family: "Gantari", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.005em;
  margin: 4px 0 4px;
  white-space: nowrap;
}
.ec-lp .price-plan-name-jp {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.ec-lp .price-plan-desc {
  font-size: 11.5px;
  line-height: 1.7;
  color: #fff;
  opacity: 0.95;
  font-weight: 500;
  margin-top: auto;
  margin-bottom: 14px;
}

.ec-lp .price-plan-mockup {
  width: 110px;
  align-self: flex-start;
  margin-top: 4px;
  margin-left: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

/* Features column */
.ec-lp .price-plan-features {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  color: #2b2f36;
  min-width: 0;
  overflow: hidden;
}
.ec-lp .price-plan-features h3 {
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #2b2f36;
  letter-spacing: 0.04em;
}
.ec-lp .price-plan-features h3 .note {
  font-weight: 500;
  font-size: 11px;
  color: #6b7280;
  margin-left: 4px;
}
.ec-lp .price-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 4px;
}
.ec-lp .price-feature-list li {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.55;
  padding-left: 13px;
  position: relative;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -0.05em;
  overflow: hidden;
  text-overflow: clip;
}
.ec-lp .price-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 0.95;
}
.ec-lp .price-feature-list li::after {
  content: "";
  position: absolute;
  left: 1.8px;
  top: 6.5px;
  width: 4px;
  height: 1.8px;
  border-left: 1.3px solid #fff;
  border-bottom: 1.3px solid #fff;
  transform: rotate(-45deg);
}
.ec-lp .price-starter .price-feature-list li::before { background: #2bbab1; }
.ec-lp .price-growth .price-feature-list li::before { background: #ff6f6f; }
.ec-lp .price-premium .price-feature-list li::before { background: #7b7fe4; }

/* Price column */
.ec-lp .price-plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
}
.ec-lp .price-price-tag {
  background: #fff;
  color: #2b2f36;
  font-weight: 700;
  font-size: 12.5px;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.ec-lp .price-starter .price-price-tag { color: #1f9a93; }
.ec-lp .price-growth .price-price-tag { color: #f25a5a; }
.ec-lp .price-premium .price-price-tag { color: #6366d1; }

.ec-lp .price-price-main {
  font-family: "Gantari", sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  white-space: nowrap;
}
.ec-lp .price-price-main .yen { font-size: 21px; vertical-align: 2px; margin-right: 1px; }
.ec-lp .price-price-main .per { font-size: 12px; font-weight: 700; letter-spacing: 0; }
.ec-lp .price-price-sub {
  font-size: 11px;
  color: #fff;
  opacity: 0.95;
  font-weight: 500;
  white-space: nowrap;
}
.ec-lp .price-price-foot {
  font-size: 10.5px;
  color: #fff;
  opacity: 0.85;
  margin-top: 6px;
  font-weight: 500;
  white-space: nowrap;
}

/* Footer */
.ec-lp .price-footer {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.ec-lp .price-footer--single {
  grid-template-columns: 1fr;
}
.ec-lp .price-footer-left h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #2b2f36;
  letter-spacing: 0.04em;
}
.ec-lp .price-footer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ec-lp .price-footer-items li {
  font-size: 12px;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.ec-lp .price-footer-items .ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.ec-lp .price-footer-items .ic-pj { background: #5b9b6b; }
.ec-lp .price-footer-items .ic-slack { background: #4a154b; }
.ec-lp .price-footer-items .ic-check { background: #2bbab1; }
.ec-lp .price-footer-items .ic-book { background: #ff6f6f; }

.ec-lp .price-note-box {
  border: 1.5px solid #2bbab1;
  border-radius: 10px;
  padding: 14px 16px 14px 56px;
  font-size: 11.5px;
  color: #4b5563;
  line-height: 1.7;
  position: relative;
  background: #fff;
  font-weight: 500;
}
.ec-lp .price-note-box::before {
  content: "💡";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

/* ========== Flow ========== */
.ec-lp .flow {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
}
.ec-lp .flow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}
.ec-lp .flow-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.ec-lp .flow-d-tri { top: 48px; left: 60px; width: 50px; }
.ec-lp .flow-d-pinkring-tl { top: 100px; left: 24px; width: 32px; }
.ec-lp .flow-d-plus { top: 140px; right: 60px; width: 30px; }
.ec-lp .flow-d-pinkring-tr { top: 60px; right: 28px; width: 36px; }
.ec-lp .flow-d-squiggle { top: 42px; right: 120px; width: 110px; }
.ec-lp .flow-d-pinkring-br { bottom: 180px; right: 60px; width: 30px; }

/* Flow header */
.ec-lp .flow-head { text-align: center; margin-bottom: 16px; }
.ec-lp .flow-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Caveat", "Klee One", cursive;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: .04em;
  color: #0fa49d;
  line-height: 1;
  font-style: italic;
  margin-bottom: 12px;
}
.ec-lp .flow-tick { display: inline-flex; width: 22px; height: 20px; align-items: center; justify-content: center; }
.ec-lp .flow-tick svg { width: 100%; height: 100%; }
.ec-lp .flow-title-wrap { position: relative; display: inline-block; }
.ec-lp .flow-h2 {
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: .06em;
  color: #0e1a36;
  margin: 0;
  line-height: 1.1;
}
.ec-lp .flow-title-squiggle {
  position: absolute;
  left: 24%;
  top: 92%;
  width: 64px;
  height: 16px;
}
.ec-lp .flow-sub {
  font-size: 15px;
  color: #475066;
  font-weight: 500;
  margin: 24px 0 0;
  letter-spacing: .04em;
}

/* Badge */
.ec-lp .flow-badge6 {
  position: absolute;
  left: 24px;
  top: 40px;
  width: 240px;
  height: 100px;
  transform: rotate(-7deg);
  z-index: 4;
}
.ec-lp .flow-badge6 svg { width: 100%; height: 100%; overflow: visible; }

/* Steps grid */
.ec-lp .flow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-bottom: 40px;
}
.ec-lp .flow-step {
  position: relative;
  text-align: center;
  padding: 0 6px;
}
.ec-lp .flow-num-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  margin-bottom: 2px;
}
.ec-lp .flow-num-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0fa49d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Gantari", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .04em;
  z-index: 3;
  position: relative;
  box-shadow: 0 1px 0 rgba(0,40,38,.04);
}
.ec-lp .flow-ysp {
  position: absolute;
  top: -4px;
  left: calc(50% + 18px);
  width: 28px;
  height: 24px;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 28' fill='none' stroke='%23ffd84a' stroke-width='2.6' stroke-linecap='round'><path d='M16 2 L13 14'/><path d='M5 8 L11 14'/><path d='M27 8 L19 14'/></svg>");
}
.ec-lp .flow-step:not(:last-child) .flow-num-row::after {
  content: "";
  position: absolute;
  left: calc(50% + 34px);
  width: calc(100% - 4px);
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  background: no-repeat left center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18' fill='none' stroke='%2314b1aa' stroke-width='2.4' stroke-linecap='round'><line x1='0' y1='9' x2='176' y2='9' stroke-dasharray='5 7'/><polyline points='168,2 184,9 168,16' stroke-linejoin='round' stroke-linecap='round'/></svg>");
  background-size: 100% 100%;
  z-index: 1;
}
.ec-lp .flow-step-tag {
  font-family: "Gantari", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  color: #0fa49d;
  margin-top: 2px;
  margin-bottom: 14px;
}
.ec-lp .flow-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 4px auto 10px;
  background: #dff3f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ec-lp .flow-icon-wrap img { width: 68px; height: 68px; object-fit: contain; }
.ec-lp .flow-step-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0e1a36;
  line-height: 1.4;
  margin: 4px 0 8px;
  letter-spacing: .04em;
  min-height: 48px;
}
.ec-lp .flow-step-body {
  font-size: 11px;
  line-height: 1.85;
  color: #0e1a36;
  max-width: 170px;
  margin: 0 auto 12px;
  text-align: left;
  letter-spacing: .04em;
  min-height: 80px;
}
.ec-lp .flow-pill {
  display: inline-block;
  padding: 9px 16px 10px;
  border-radius: 999px;
  font-family: "Klee One", "Yusei Magic", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  white-space: nowrap;
  border: 1.8px dashed transparent;
  text-align: center;
}
.ec-lp .flow-pill-mint { background: #dff3f1; border-color: #0fa49d; color: #0a3d3a; }
.ec-lp .flow-pill-yellow { background: #fff8c8; border-color: #e6b800; color: #5d4a00; }
.ec-lp .flow-pill-white { background: #ffffff; border-color: #0fa49d; color: #0a3d3a; }

/* CTA Panel */
.ec-lp .flow-cta-panel {
  position: relative;
  background: #ffffff;
  border-radius: 60px;
  padding: 0 24px 0 0;
  display: flex;
  align-items: center;
  box-shadow: 0 14px 30px rgba(8,40,38,.06);
  min-height: 110px;
  margin: 0 auto;
  max-width: 1000px;
}
.ec-lp .flow-confetti {
  position: absolute;
  left: -20px;
  bottom: -10px;
  width: 180px;
  height: 180px;
  z-index: 1;
  pointer-events: none;
}
.ec-lp .flow-cta-bag {
  position: relative;
  z-index: 2;
  flex: none;
  width: 110px;
  margin-left: 20px;
}
.ec-lp .flow-cta-bag img { width: 100%; height: auto; object-fit: contain; }
.ec-lp .flow-cta-mid { flex: 1; margin-left: 20px; }
.ec-lp .flow-cta-text {
  font-family: "Klee One", "Yusei Magic", "Caveat", cursive;
  color: #0fa49d;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: .04em;
  white-space: nowrap;
  position: relative;
  margin-bottom: 10px;
}
.ec-lp .flow-cta-em {
  position: relative;
  display: inline-block;
}
.ec-lp .flow-cta-em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -6px;
  height: 8px;
  background: no-repeat center/100% 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 10' fill='none' stroke='%2314b1aa' stroke-width='2' stroke-linecap='round'><path d='M3 6 C 24 1, 50 9, 75 5 C 100 1, 130 9, 160 5 C 190 1, 215 9, 237 5'/></svg>");
}
.ec-lp .flow-cta-bullets { display: flex; gap: 24px; }
.ec-lp .flow-cta-bullet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #0e1a36;
  font-weight: 500;
  white-space: nowrap;
}
.ec-lp .flow-cta-ic {
  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 50%;
  background: #0fa49d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ec-lp .flow-cta-ic svg { width: 12px; height: 12px; }
.ec-lp .flow-cta-bullet--thumbs .flow-cta-ic {
  background: #ffffff;
  border: 2px solid #0fa49d;
  color: #0fa49d;
}
.ec-lp .flow-cta-bullet--thumbs .flow-cta-ic svg { width: 12px; height: 12px; }
.ec-lp .flow-line-btn {
  display: inline-block;
  flex: none;
  margin-right: 8px;
  text-decoration: none;
  line-height: 0;
  transition: transform .15s ease;
}
.ec-lp .flow-line-btn:hover { transform: translateY(-1px); }
.ec-lp .flow-line-btn img {
  display: block;
  height: 72px;
  width: auto;
  filter: drop-shadow(0 6px 12px rgba(6,199,85,.22));
}

/* ========== FAQ ========== */
.ec-lp .faq-section { background: #F4F7F8; position: relative; overflow: hidden; }
.ec-lp .faq-stage {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 60px;
  display: grid;
  grid-template-columns: 420px 1fr;
  grid-template-rows: auto auto;
  gap: 0 40px;
}
.ec-lp .faq-deco { position: absolute; pointer-events: none; user-select: none; }
.ec-lp .faq-bg-tl { top: -60px; left: -80px; width: 280px; z-index: 1; }
.ec-lp .faq-bg-tr { top: -20px; right: -20px; width: 120px; z-index: 1; }
.ec-lp .faq-bg-dots-l { top: 180px; left: 30px; width: 55px; z-index: 1; opacity: .85; }
.ec-lp .faq-bg-mint-r { top: 340px; right: -40px; width: 150px; z-index: 1; }
.ec-lp .faq-bg-dots-r { bottom: 140px; right: 60px; width: 100px; z-index: 1; opacity: .85; }
.ec-lp .faq-bg-br { bottom: -60px; right: -60px; width: 240px; z-index: 1; }

/* Left column */
.ec-lp .faq-left {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  z-index: 5;
}
.ec-lp .faq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0FA49D;
  color: #0FA49D;
  font-family: "Gantari", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .2em;
  padding: 6px 30px 7px;
  border-radius: 999px;
  background: transparent;
}
.ec-lp .faq-h-yoku {
  margin: 16px 0 0;
  font-weight: 900;
  font-size: 68px;
  line-height: 1;
  color: #003834;
}
.ec-lp .faq-h-go {
  margin: 8px 0 0 36px;
  font-weight: 900;
  font-size: 68px;
  line-height: 1;
  color: #0FA49D;
}
.ec-lp .faq-squiggle-go {
  display: block;
  width: 220px;
  margin: 4px 0 0 36px;
}
.ec-lp .faq-lead {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 2;
  color: #3a4045;
  font-weight: 500;
  max-width: 380px;
}

/* Illustration cluster */
.ec-lp .faq-illust {
  position: relative;
  margin-top: 20px;
  height: 380px;
}
.ec-lp .faq-blob-behind { top: 80px; left: -20px; width: 240px; z-index: 2; }
.ec-lp .faq-speech { position: absolute; top: 58px; left: -20px; width: 130px; z-index: 7; }
.ec-lp .faq-woman {
  position: absolute;
  top: 30px; left: 60px;
  width: 300px;
  z-index: 4;
  filter: drop-shadow(0 0 1px #F4F7F8) drop-shadow(0 0 1px #F4F7F8);
}
.ec-lp .faq-cart { top: 200px; left: -30px; width: 65px; z-index: 5; }
.ec-lp .faq-bag { top: 60px; left: 300px; width: 70px; z-index: 6; }
.ec-lp .faq-star { top: 170px; left: 270px; width: 50px; z-index: 6; }
.ec-lp .faq-sparkle-hair { top: 25px; left: 130px; width: 28px; z-index: 7; }
.ec-lp .faq-sparkle-bag { top: 45px; left: 350px; width: 24px; z-index: 7; transform: rotate(20deg); }
.ec-lp .faq-wave-gray { top: 310px; left: 50px; width: 100px; z-index: 5; opacity: .85; }

/* Right column: Q cards */
.ec-lp .faq-qlist {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 5;
}
.ec-lp .faq-sparkle-tr { top: -30px; right: 120px; width: 36px; z-index: 6; }
.ec-lp .faq-squiggle-card { top: 50px; right: 30px; width: 100px; z-index: 6; }
.ec-lp .faq-qcard {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 20px 28px;
  box-shadow: 0 1px 3px rgba(15,164,157,.05), 0 6px 18px rgba(15,80,80,.06);
  gap: 18px;
  min-height: 72px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ec-lp .faq-qcard:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(15,80,80,.12); }
.ec-lp .faq-qmark {
  flex: 0 0 auto;
  font-family: "Gantari", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #0FA49D;
  width: 30px;
}
.ec-lp .faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #1f2a2a;
  letter-spacing: .02em;
}
.ec-lp .faq-plus {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  position: relative;
  color: #0FA49D;
  transition: transform 0.3s;
}
.ec-lp .faq-plus::before,
.ec-lp .faq-plus::after { content: ""; position: absolute; background: currentColor; }
.ec-lp .faq-plus::before { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.ec-lp .faq-plus::after { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.ec-lp .faq-qcard:hover .faq-plus { transform: rotate(45deg); }

/* FAQ Overlay */
.ec-lp .faq-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 56, 52, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: faq-fade-in 0.25s ease;
}
@keyframes faq-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes faq-card-in { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.ec-lp .faq-overlay-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 44px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 56, 52, 0.25);
  animation: faq-card-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ec-lp .faq-overlay-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: #F4F7F8;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.ec-lp .faq-overlay-close:hover { background: #e0e7ea; }
.ec-lp .faq-overlay-close::before,
.ec-lp .faq-overlay-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #1f2a2a;
  border-radius: 1px;
}
.ec-lp .faq-overlay-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.ec-lp .faq-overlay-close::after { transform: translate(-50%, -50%) rotate(-45deg); }

.ec-lp .faq-overlay-q {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 700;
  color: #1f2a2a;
  line-height: 1.7;
}
.ec-lp .faq-overlay-q .faq-qmark {
  font-size: 22px;
  width: auto;
}
.ec-lp .faq-overlay-a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: #3a4a4a;
  line-height: 1.9;
  padding-top: 24px;
  border-top: 1px solid #e8efef;
}
.ec-lp .faq-amark {
  flex: 0 0 auto;
  font-family: "Gantari", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #E8A631;
}

@media (max-width: 640px) {
  .ec-lp .faq-overlay-card {
    padding: 36px 24px;
  }
  .ec-lp .faq-overlay-q { font-size: 16px; }
  .ec-lp .faq-overlay-a { font-size: 15px; }
}

/* Bottom CTA */
.ec-lp .faq-cta-wrap {
  grid-column: 2;
  grid-row: 2;
  margin-top: 32px;
  z-index: 8;
}
.ec-lp .faq-cta {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(15,80,80,.10), 0 2px 6px rgba(15,80,80,.05);
  padding: 28px 40px 56px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}
.ec-lp .faq-line-badge {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
.ec-lp .faq-line-badge img { width: 100%; height: 100%; display: block; }
.ec-lp .faq-line-sparkles {
  position: absolute;
  top: 12px;
  left: 120px;
  width: 45px;
  z-index: 9;
}
.ec-lp .faq-cta-body { flex: 1; text-align: center; }
.ec-lp .faq-cta-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: #404550;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: .04em;
}
.ec-lp .faq-slash { color: #003834; font-size: 16px; font-weight: 700; }
.ec-lp .faq-cta-title {
  margin-top: 6px;
  font-size: 40px;
  font-weight: 900;
  color: #003834;
  letter-spacing: .04em;
  line-height: 1.1;
}
.ec-lp .faq-arrow-btn {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: block;
}
.ec-lp .faq-arrow-btn img { width: 100%; display: block; }
.ec-lp .faq-cta-labels {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  gap: 28px;
  justify-content: center;
}
.ec-lp .faq-cta-labels img { height: 32px; display: block; }

/* ========== LP Footer ========== */
.ec-lp .lp-footer {
  background: #0FA49D;
  color: #fff;
}
.ec-lp .lp-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.ec-lp .lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ec-lp .lp-footer-mark {
  width: 48px;
  display: block;
}
.ec-lp .lp-footer-name {
  height: 16px;
  display: block;
}
.ec-lp .lp-footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ec-lp .lp-footer-company {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .05em;
  margin: 0;
}
.ec-lp .lp-footer-detail {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  margin: 0;
}
.ec-lp .lp-footer-copy {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding: 20px 32px;
}
.ec-lp .lp-footer-copy p {
  margin: 0;
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: .06em;
  font-family: "Gantari", sans-serif;
}

/* ========== Lightbox ========== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  display: grid;
  place-items: center;
  padding: 40px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.is-open {
  opacity: 1;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ========== Responsive ========== */

/* --- Tablet Landscape (≤980px) --- */
@media (max-width: 980px) {
  .ec-lp .lp-container { padding: 0 24px; }

  /* Hero: stack vertically, keep visual */
  .ec-lp .hero { padding: 60px 0 40px; }
  .ec-lp .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .ec-lp .hero h1 { font-size: 36px; }
  .ec-lp .hero-sub { max-width: 100%; }
  .ec-lp .hero-visual { min-height: 320px; }
  .ec-lp .hero-photo { max-width: 340px; margin: 0 auto; }
  .ec-lp .hero-badge { width: 100px; height: 100px; font-size: 12px; bottom: 30px; left: auto; right: -10px; }
  .ec-lp .hero-cta { flex-direction: row; max-width: 100%; gap: 12px; }
  .ec-lp .hero-cta .btn { width: auto; flex: 1; }

  /* Section common */
  .ec-lp .section { padding: 80px 0; }
  .ec-lp .section-underline { margin-bottom: 48px; }
  .ec-lp .section-title { font-size: 26px; }
  .ec-lp .wave-section svg { height: auto; min-height: 30px; }

  /* Pain */
  .ec-lp .pain { padding: 70px 0 80px; }
  .ec-lp .pd-splash-tl { left: -40px; width: 110px; }
  .ec-lp .pd-arrow-tr { right: 20px; width: 70px; }
  .ec-lp .pd-dots-l { left: -20px; width: 60px; }
  .ec-lp .pd-dots-r { right: -10px; width: 60px; }
  .ec-lp .pd-arrow-bl { left: -10px; width: 60px; }
  .ec-lp .pd-sparkle-l { left: -10px; width: 40px; }
  .ec-lp .pd-burst-l { left: 40px; width: 55px; }
  .ec-lp .pd-burst-r { right: 40px; width: 55px; }
  .ec-lp .pain-eyebrow { font-size: 24px; }
  .ec-lp .pain-title { font-size: 30px; }
  .ec-lp .pain-grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .ec-lp .pain-item, .ec-lp .pain-item--right { flex-direction: row; }
  .ec-lp .pain-portrait { width: 130px; height: 130px; flex: 0 0 130px; }
  .ec-lp .pain-item--right .pain-bubble { padding: 22px 22px 22px 54px; }
  .ec-lp .pain-item--right .pain-badge { left: 18px; right: auto; }
  .ec-lp .pain-item--right .pain-bubble::before { left: -12px; right: auto; border: 1.5px solid #FAD9D5; border-top: none; border-right: none; border-radius: 0 0 0 6px; }
  .ec-lp .pain-center-char { display: none; }
  .ec-lp .pain-cta-deco-left, .ec-lp .pain-cta-deco-right { display: none; }
  .ec-lp .pain-cta-btn { font-size: 16px; padding: 18px 36px; }
  .ec-lp .pain-cta-wrap { margin-top: 64px; }

  /* Service */
  .ec-lp .svc-header { padding: 24px 20px; }
  .ec-lp .svc-deco-l, .ec-lp .svc-deco-r { width: 140px; }
  .ec-lp .svc-headline { font-size: 28px; }
  .ec-lp .svc-card-row { grid-template-columns: 1fr; }
  .ec-lp .svc-media { min-height: 200px; }
  .ec-lp .svc-flip .svc-media { order: -1; }
  .ec-lp .svc-head h3 { white-space: normal; }

  /* Strength */
  .ec-lp .str-header-bg { padding-top: 80px; }
  .ec-lp .str-cards { grid-template-columns: repeat(3, 1fr); gap: 12px; padding-bottom: 48px; }
  .ec-lp .str-card-name { font-size: 16px; }
  .ec-lp .str-card-num { font-size: 36px; }
  .ec-lp .str-section-inner { grid-template-columns: 1fr; gap: 32px; }
  .ec-lp .str-section { padding: 40px 0; }
  .ec-lp .str-section-num { font-size: 56px; }
  .ec-lp .str-section-heading { font-size: 24px; }
  .ec-lp .str-section-text { max-width: 100%; }
  .ec-lp #str-01 .str-section-img { transform: none; }
  .ec-lp .str-section-img { max-width: 100%; }
  .ec-lp .str-stat { aspect-ratio: auto; }

  /* Comparison */
  .ec-lp .compare-img-wrap { padding: 0 16px; }

  /* Pricing */
  .ec-lp .price-plan { grid-template-columns: 180px 1fr 140px; padding: 20px 16px; }
  .ec-lp .price-plan-name { font-size: 32px; }
  .ec-lp .price-plan-mockup { width: 80px; }
  .ec-lp .price-deco-blob-tl { width: 180px; }
  .ec-lp .price-deco-mockup-tr { width: 160px; }
  .ec-lp .price-headline { font-size: 28px; }
  .ec-lp .price-headline .accent { font-size: 42px; }
  .ec-lp .price-headline .big { font-size: 36px; }
  .ec-lp .price-footer { grid-template-columns: 1fr; }

  /* Flow */
  .ec-lp .flow { padding: 48px 0 36px; }
  .ec-lp .flow-h2 { font-size: 38px; }
  .ec-lp .flow-sub { font-size: 14px; }
  .ec-lp .flow-badge6 { width: 180px; height: 76px; left: 16px; top: 32px; }
  .ec-lp .flow-steps { grid-template-columns: repeat(3, 1fr); gap: 28px 12px; }
  .ec-lp .flow-step:not(:last-child) .flow-num-row::after { display: none; }
  .ec-lp .flow-icon-wrap { width: 80px; height: 80px; }
  .ec-lp .flow-icon-wrap img { width: 54px; height: 54px; }
  .ec-lp .flow-step-title { font-size: 15px; min-height: 42px; }
  .ec-lp .flow-step-body { font-size: 10px; min-height: 64px; }
  .ec-lp .flow-pill { font-size: 12px; padding: 8px 14px; }
  .ec-lp .flow-num-circle { width: 44px; height: 44px; font-size: 16px; }
  .ec-lp .flow-cta-panel { border-radius: 32px; flex-wrap: wrap; gap: 16px; padding: 24px; justify-content: center; }
  .ec-lp .flow-cta-bag { width: 80px; margin-left: 0; }
  .ec-lp .flow-cta-text { font-size: 22px; white-space: normal; text-align: center; }
  .ec-lp .flow-cta-mid { margin-left: 0; text-align: center; }
  .ec-lp .flow-cta-bullets { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .ec-lp .flow-line-btn img { height: 56px; }
  .ec-lp .flow-confetti { display: none; }
  .ec-lp .flow-deco { display: none; }

  /* FAQ: single column, keep illustration */
  .ec-lp .faq-stage { grid-template-columns: 1fr; padding: 56px 24px 48px; }
  .ec-lp .faq-left { grid-column: 1; grid-row: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; align-items: start; }
  .ec-lp .faq-pill { grid-column: 1; }
  .ec-lp .faq-h-yoku { grid-column: 1; font-size: 52px; }
  .ec-lp .faq-h-go { grid-column: 1; font-size: 52px; margin-left: 24px; }
  .ec-lp .faq-squiggle-go { grid-column: 1; width: 160px; }
  .ec-lp .faq-lead { grid-column: 1; max-width: 100%; }
  .ec-lp .faq-illust { grid-column: 2; grid-row: 1 / 6; height: 280px; margin-top: 0; }
  .ec-lp .faq-woman { width: 220px; top: 20px; left: 20px; }
  .ec-lp .faq-speech { top: 10px; left: -10px; width: 100px; }
  .ec-lp .faq-blob-behind { top: 60px; left: -10px; width: 180px; }
  .ec-lp .faq-cart { top: 160px; left: -20px; width: 50px; }
  .ec-lp .faq-bag { top: 50px; left: 200px; width: 55px; }
  .ec-lp .faq-star { top: 140px; left: 190px; width: 40px; }
  .ec-lp .faq-sparkle-hair { top: 15px; left: 90px; width: 22px; }
  .ec-lp .faq-sparkle-bag { top: 35px; left: 240px; width: 18px; }
  .ec-lp .faq-wave-gray { top: 230px; left: 30px; width: 80px; }
  .ec-lp .faq-qlist { grid-column: 1; grid-row: 2; margin-top: 24px; }
  .ec-lp .faq-cta-wrap { grid-column: 1; grid-row: 3; margin-top: 28px; }
  .ec-lp .faq-cta { padding: 24px 28px 56px; flex-wrap: wrap; justify-content: center; }
  .ec-lp .faq-cta-title { font-size: 30px; }
  .ec-lp .faq-bg-tl { width: 180px; }
  .ec-lp .faq-bg-br { width: 160px; }
  .ec-lp .faq-bg-mint-r { display: none; }

  /* Footer */
  .ec-lp .lp-footer-inner { flex-direction: column; text-align: center; padding: 36px 24px 24px; }
  .ec-lp .lp-footer-logo { justify-content: center; }
}

/* --- Tablet Portrait (≤768px) --- */
@media (max-width: 768px) {
  .ec-lp .lp-container { padding: 0 20px; }

  /* Hero */
  .ec-lp .hero h1 { font-size: 32px; }
  .ec-lp .hero-visual { min-height: 280px; }
  .ec-lp .hero-photo { max-width: 280px; }
  .ec-lp .hero-badge { width: 90px; height: 90px; font-size: 11px; }
  .ec-lp .hero-cta { flex-direction: column; }
  .ec-lp .hero-cta .btn { width: 100%; }

  /* Pain */
  .ec-lp .pd-splash-tl { left: -60px; width: 90px; }
  .ec-lp .pd-arrow-tr { right: -10px; width: 60px; }
  .ec-lp .pd-dots-l { left: -30px; }
  .ec-lp .pd-dots-r { right: -20px; }
  .ec-lp .pd-arrow-bl { left: -30px; }
  .ec-lp .pd-sparkle-l { left: -30px; }
  .ec-lp .pd-burst-l { left: -10px; width: 50px; }
  .ec-lp .pd-burst-r { right: -10px; width: 50px; }
  .ec-lp .pain-title { font-size: 26px; }
  .ec-lp .pain-portrait { width: 110px; height: 110px; flex: 0 0 110px; }
  .ec-lp .pain-bubble h3 { font-size: 15px; }

  /* Strength cards: stack */
  .ec-lp .str-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; gap: 16px; }

  /* Pricing: stack left + features */
  .ec-lp .price-plan { grid-template-columns: 1fr 1fr; }
  .ec-lp .price-plan-left { grid-column: 1; }
  .ec-lp .price-plan-features { grid-column: 1 / -1; grid-row: 2; }
  .ec-lp .price-plan-price { grid-column: 2; grid-row: 1; }
  .ec-lp .price-plan-mockup { width: 70px; }
  .ec-lp .price-plan-name { font-size: 28px; }
  .ec-lp .price-deco-blob-tl { width: 140px; }
  .ec-lp .price-deco-mockup-tr { display: none; }

  /* FAQ: show illustration centered below text */
  .ec-lp .faq-left { display: block; }
  .ec-lp .faq-illust { height: 240px; margin: 16px auto 0; max-width: 320px; }
  .ec-lp .faq-woman { width: 200px; top: 10px; left: 40px; }
  .ec-lp .faq-speech { top: 0; left: -5px; width: 90px; }
  .ec-lp .faq-blob-behind { top: 50px; left: -5px; width: 160px; }
  .ec-lp .faq-cart { top: 140px; left: -10px; width: 45px; }
  .ec-lp .faq-bag { top: 40px; left: 200px; width: 48px; }
  .ec-lp .faq-star { top: 120px; left: 180px; width: 36px; }
  .ec-lp .faq-sparkle-hair { top: 5px; left: 80px; width: 20px; }
  .ec-lp .faq-sparkle-bag { top: 25px; left: 230px; width: 16px; }
  .ec-lp .faq-wave-gray { top: 200px; left: 30px; width: 70px; }
  .ec-lp .faq-h-yoku, .ec-lp .faq-h-go { font-size: 44px; }
  .ec-lp .faq-cta-title { font-size: 26px; }
  .ec-lp .faq-cta-eyebrow { font-size: 13px; }
  .ec-lp .faq-line-badge { width: 72px; height: 72px; border-radius: 16px; }
  .ec-lp .faq-arrow-btn { width: 52px; height: 52px; }

  /* Flow */
  .ec-lp .flow { padding: 40px 0 32px; }
  .ec-lp .flow-h2 { font-size: 32px; }
  .ec-lp .flow-eyebrow { font-size: 22px; }
  .ec-lp .flow-sub { font-size: 13px; }
  .ec-lp .flow-badge6 { width: 160px; height: 68px; left: 12px; top: 28px; }
  .ec-lp .flow-steps { grid-template-columns: repeat(3, 1fr); gap: 24px 8px; }
  .ec-lp .flow-step:not(:last-child) .flow-num-row::after { display: none; }
  .ec-lp .flow-icon-wrap { width: 72px; height: 72px; }
  .ec-lp .flow-icon-wrap img { width: 48px; height: 48px; }
  .ec-lp .flow-step-title { font-size: 14px; min-height: 40px; }
  .ec-lp .flow-step-body { font-size: 10px; min-height: 56px; }
  .ec-lp .flow-pill { font-size: 11px; padding: 7px 12px; }
  .ec-lp .flow-num-circle { width: 40px; height: 40px; font-size: 14px; }
  .ec-lp .flow-cta-panel { border-radius: 24px; flex-direction: column; padding: 24px; text-align: center; }
  .ec-lp .flow-cta-bag { width: 70px; margin: 0 auto; }
  .ec-lp .flow-cta-mid { margin-left: 0; text-align: center; }
  .ec-lp .flow-cta-text { font-size: 20px; white-space: normal; text-align: center; }
  .ec-lp .flow-cta-bullets { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .ec-lp .flow-cta-bullet { font-size: 11px; }
  .ec-lp .flow-line-btn img { height: 52px; }
  .ec-lp .flow-confetti { display: none; }
  .ec-lp .flow-deco { display: none; }

  /* Service */
  .ec-lp .svc-deco-l, .ec-lp .svc-deco-r { display: none; }
  .ec-lp .svc-headline { font-size: 24px; }
}

/* --- Mobile (≤640px) --- */
@media (max-width: 640px) {
  .ec-lp .lp-container { padding: 0 16px; }

  /* Hero */
  .ec-lp .hero { padding: 40px 0 28px; }
  .ec-lp .hero h1 { font-size: 26px; margin-bottom: 20px; }
  .ec-lp .hero-sub { font-size: 13px; line-height: 2; margin-bottom: 28px; }
  .ec-lp .hero-visual { min-height: auto; }
  .ec-lp .hero-photo { max-width: 240px; }
  .ec-lp .hero-badge { width: 80px; height: 80px; font-size: 10.5px; bottom: 20px; }
  .ec-lp .hero-eyebrow img { height: 22px; }

  /* Section */
  .ec-lp .section { padding: 56px 0; }
  .ec-lp .section-title { font-size: 22px; }
  .ec-lp .section-underline { margin-bottom: 36px; }
  .ec-lp .section-eyebrow { font-size: 11px; }

  /* Pain */
  .ec-lp .pain { padding: 48px 0 56px; }
  .ec-lp .pd-splash-tl { left: -70px; top: 10px; width: 80px; }
  .ec-lp .pd-arrow-tr { right: -20px; top: 40px; width: 50px; }
  .ec-lp .pd-dots-l { left: -40px; width: 50px; }
  .ec-lp .pd-dots-r { right: -30px; width: 50px; }
  .ec-lp .pd-arrow-bl { left: -40px; width: 50px; bottom: 100px; }
  .ec-lp .pd-sparkle-l { left: -40px; width: 30px; }
  .ec-lp .pd-burst-l { left: -30px; width: 40px; }
  .ec-lp .pd-burst-r { right: -30px; width: 40px; bottom: 140px; }
  .ec-lp .pain-inner { padding: 0 16px; }
  .ec-lp .pain-eyebrow { font-size: 20px; }
  .ec-lp .pain-title { font-size: 22px; }
  .ec-lp .pain-lede { font-size: 13px; }
  .ec-lp .pain-grid { row-gap: 28px; margin-top: 40px; }
  .ec-lp .pain-portrait { width: 90px; height: 90px; flex: 0 0 90px; }
  .ec-lp .pain-bubble { padding: 18px 18px 18px 44px; border-radius: 20px; }
  .ec-lp .pain-item--right .pain-bubble { padding: 18px 18px 18px 44px; }
  .ec-lp .pain-bubble h3 { font-size: 14px; margin: 4px 0 6px; }
  .ec-lp .pain-bubble p { font-size: 12px; }
  .ec-lp .pain-badge { width: 38px; height: 38px; top: -12px; }
  .ec-lp .pain-badge svg { width: 18px; height: 18px; }
  .ec-lp .pain-cta-btn { font-size: 14px; padding: 16px 28px; }
  .ec-lp .pain-cta-wrap { margin-top: 48px; }

  /* Service */
  .ec-lp .svc-headline { font-size: 22px; }
  .ec-lp .svc-head { gap: 10px; }
  .ec-lp .svc-num { font-size: 32px; }
  .ec-lp .svc-head h3 { font-size: 18px; }
  .ec-lp .svc-text { padding: 20px 16px; }
  .ec-lp .svc-card p { font-size: 12.5px; }
  .ec-lp .svc-media { min-height: 160px; }
  .ec-lp .svc-shop-flow { flex-wrap: wrap; gap: 6px; }
  .ec-lp .svc-pill { font-size: 10.5px; padding: 5px 10px; }
  .ec-lp .svc-card { border-radius: 16px; }

  /* Strength */
  .ec-lp .str-header-bg { padding-top: 56px; }
  .ec-lp .str-section-num { font-size: 44px; }
  .ec-lp .str-section-heading { font-size: 20px; }
  .ec-lp .str-section-desc { font-size: 14px; }
  .ec-lp .str-section { padding: 32px 0; }
  .ec-lp .str-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .ec-lp .str-stat { padding: 14px; }
  .ec-lp .str-stat-value { font-size: 20px; }
  .ec-lp .str-stat-label { font-size: 11px; }
  .ec-lp .str-card-name { font-size: 15px; }

  /* Comparison */
  .ec-lp .compare-img-wrap { padding: 0 12px; }

  /* Pricing */
  .ec-lp .price-plan { grid-template-columns: 1fr; gap: 16px; }
  .ec-lp .price-plan-left { flex-direction: row; flex-wrap: wrap; gap: 12px; align-items: center; }
  .ec-lp .price-plan-features { grid-column: 1; grid-row: auto; }
  .ec-lp .price-plan-price { grid-column: 1; grid-row: auto; flex-direction: row; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .ec-lp .price-plan-mockup { width: 56px; }
  .ec-lp .price-plan-name { font-size: 26px; }
  .ec-lp .price-deco-blob-tl, .ec-lp .price-deco-mockup-tr { display: none; }
  .ec-lp .price-headline { font-size: 22px; }
  .ec-lp .price-headline .accent { font-size: 34px; }
  .ec-lp .price-headline .big { font-size: 28px; }
  .ec-lp .price-feature-list { grid-template-columns: 1fr; }
  .ec-lp .price-price-main { font-size: 22px; }
  .ec-lp .price-note-box { padding: 14px 16px 14px 48px; font-size: 11px; }
  .ec-lp .price-note-box::before { font-size: 18px; left: 14px; }

  /* Flow */
  .ec-lp .flow { padding: 36px 0 28px; }
  .ec-lp .flow-h2 { font-size: 26px; }
  .ec-lp .flow-eyebrow { font-size: 20px; }
  .ec-lp .flow-sub { font-size: 12px; margin-top: 16px; }
  .ec-lp .flow-badge6 { width: 140px; height: 60px; left: 8px; top: 24px; }
  .ec-lp .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; margin-bottom: 28px; }
  .ec-lp .flow-step:not(:last-child) .flow-num-row::after { display: none; }
  .ec-lp .flow-icon-wrap { width: 64px; height: 64px; }
  .ec-lp .flow-icon-wrap img { width: 42px; height: 42px; }
  .ec-lp .flow-step-title { font-size: 13px; min-height: 36px; }
  .ec-lp .flow-step-body { font-size: 10px; min-height: auto; }
  .ec-lp .flow-pill { font-size: 11px; padding: 6px 10px; }
  .ec-lp .flow-num-circle { width: 36px; height: 36px; font-size: 13px; }
  .ec-lp .flow-step-tag { font-size: 10px; margin-bottom: 10px; }
  .ec-lp .flow-cta-panel { border-radius: 20px; flex-direction: column; padding: 20px 16px; text-align: center; }
  .ec-lp .flow-cta-bag { width: 60px; margin: 0 auto; }
  .ec-lp .flow-cta-mid { margin-left: 0; }
  .ec-lp .flow-cta-text { font-size: 18px; white-space: normal; text-align: center; }
  .ec-lp .flow-cta-bullets { flex-direction: column; align-items: center; gap: 8px; }
  .ec-lp .flow-cta-bullet { font-size: 11px; }
  .ec-lp .flow-line-btn img { height: 48px; }
  .ec-lp .flow-confetti { display: none; }
  .ec-lp .flow-deco { display: none; }

  /* FAQ */
  .ec-lp .faq-stage { padding: 36px 16px 28px; }
  .ec-lp .faq-h-yoku, .ec-lp .faq-h-go { font-size: 34px; }
  .ec-lp .faq-h-go { margin-left: 16px; }
  .ec-lp .faq-squiggle-go { width: 110px; margin-left: 16px; }
  .ec-lp .faq-pill { font-size: 15px; padding: 5px 20px; }
  .ec-lp .faq-lead { font-size: 13px; line-height: 1.8; }
  .ec-lp .faq-illust { height: 200px; margin: 12px auto 0; max-width: 260px; }
  .ec-lp .faq-woman { width: 170px; top: 5px; left: 30px; }
  .ec-lp .faq-speech { top: 0; left: -8px; width: 80px; }
  .ec-lp .faq-blob-behind { top: 40px; left: -5px; width: 140px; }
  .ec-lp .faq-cart { top: 120px; left: -10px; width: 40px; }
  .ec-lp .faq-bag { top: 30px; left: 170px; width: 42px; }
  .ec-lp .faq-star { top: 100px; left: 155px; width: 32px; }
  .ec-lp .faq-sparkle-hair { display: none; }
  .ec-lp .faq-sparkle-bag { display: none; }
  .ec-lp .faq-wave-gray { display: none; }
  .ec-lp .faq-qlist { margin-top: 20px; gap: 12px; }
  .ec-lp .faq-qcard { padding: 16px 18px; gap: 10px; min-height: 56px; border-radius: 12px; }
  .ec-lp .faq-qtext { font-size: 14px; }
  .ec-lp .faq-qmark { font-size: 17px; width: 24px; }
  .ec-lp .faq-plus { width: 16px; height: 16px; }

  /* FAQ CTA: stack vertically */
  .ec-lp .faq-cta-wrap { margin-top: 20px; }
  .ec-lp .faq-cta { flex-direction: column; align-items: center; text-align: center; padding: 24px 16px 48px; gap: 16px; border-radius: 16px; }
  .ec-lp .faq-line-badge { width: 56px; height: 56px; border-radius: 14px; }
  .ec-lp .faq-line-sparkles { display: none; }
  .ec-lp .faq-cta-title { font-size: 22px; }
  .ec-lp .faq-cta-eyebrow { font-size: 12px; gap: 6px; }
  .ec-lp .faq-arrow-btn { width: 48px; height: 48px; }
  .ec-lp .faq-cta-labels { gap: 12px; bottom: 10px; }
  .ec-lp .faq-cta-labels img { height: 22px; }
  .ec-lp .faq-bg-tl { width: 120px; }
  .ec-lp .faq-bg-br { width: 100px; }
  .ec-lp .faq-bg-dots-l, .ec-lp .faq-bg-dots-r { display: none; }
  .ec-lp .faq-bg-tr { display: none; }

  /* Footer */
  .ec-lp .lp-footer-inner { padding: 32px 16px 20px; gap: 20px; }
  .ec-lp .lp-footer-mark { width: 40px; }
  .ec-lp .lp-footer-company { font-size: 14px; }
  .ec-lp .lp-footer-detail { font-size: 11px; }
  .ec-lp .lp-footer-copy { padding: 16px; }

  /* FAQ Overlay */
  .ec-lp .faq-overlay { padding: 16px; }
  .ec-lp .faq-overlay-card { padding: 32px 20px; border-radius: 16px; }
  .ec-lp .faq-overlay-q { font-size: 15px; gap: 10px; margin-bottom: 20px; }
  .ec-lp .faq-overlay-q .faq-qmark { font-size: 18px; }
  .ec-lp .faq-overlay-a { font-size: 14px; gap: 10px; padding-top: 18px; }
  .ec-lp .faq-amark { font-size: 18px; }
}

/* --- Small Mobile (≤420px) --- */
@media (max-width: 420px) {
  .ec-lp .hero h1 { font-size: 23px; }
  .ec-lp .hero-sub { font-size: 12.5px; }
  .ec-lp .hero-photo { max-width: 200px; }
  .ec-lp .hero-badge { width: 72px; height: 72px; font-size: 10px; }
  .ec-lp .pain-title { font-size: 20px; }
  .ec-lp .pain-portrait { width: 76px; height: 76px; flex: 0 0 76px; }
  .ec-lp .pain-bubble { padding: 14px 14px 14px 38px; }
  .ec-lp .pain-item--right .pain-bubble { padding: 14px 14px 14px 38px; }
  .ec-lp .pain-bubble h3 { font-size: 13px; }
  .ec-lp .pain-bubble p { font-size: 11px; }
  .ec-lp .pain-badge { width: 34px; height: 34px; }
  .ec-lp .pain-badge svg { width: 16px; height: 16px; }
  .ec-lp .pain-cta-btn { font-size: 13px; padding: 14px 20px; }
  .ec-lp .svc-headline { font-size: 20px; }
  .ec-lp .svc-num { font-size: 28px; }
  .ec-lp .svc-head h3 { font-size: 16px; }
  .ec-lp .section-title { font-size: 20px; }
  .ec-lp .str-section-num { font-size: 36px; }
  .ec-lp .str-section-heading { font-size: 18px; }
  .ec-lp .str-section-desc { font-size: 13px; }
  .ec-lp .price-headline { font-size: 20px; }
  .ec-lp .price-headline .accent { font-size: 30px; }
  .ec-lp .price-headline .big { font-size: 24px; }
  .ec-lp .price-plan-name { font-size: 24px; }
  .ec-lp .faq-h-yoku, .ec-lp .faq-h-go { font-size: 28px; }
  .ec-lp .faq-illust { height: 170px; max-width: 220px; }
  .ec-lp .faq-woman { width: 140px; top: 5px; left: 25px; }
  .ec-lp .faq-speech { width: 68px; top: 0; left: -5px; }
  .ec-lp .faq-blob-behind { width: 120px; top: 35px; }
  .ec-lp .faq-cart { top: 100px; width: 34px; }
  .ec-lp .faq-bag { top: 25px; left: 140px; width: 36px; }
  .ec-lp .faq-star { top: 85px; left: 130px; width: 28px; }
  .ec-lp .faq-cta-title { font-size: 20px; }
  .ec-lp .faq-cta-labels { gap: 8px; flex-wrap: wrap; }
  .ec-lp .faq-cta-labels img { height: 20px; }
  .ec-lp .flow { padding: 28px 0 20px; }
  .ec-lp .flow-h2 { font-size: 22px; }
  .ec-lp .flow-eyebrow { font-size: 18px; gap: 8px; }
  .ec-lp .flow-sub { font-size: 11px; }
  .ec-lp .flow-badge6 { width: 120px; height: 52px; left: 4px; top: 20px; }
  .ec-lp .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 20px 8px; margin-bottom: 24px; }
  .ec-lp .flow-icon-wrap { width: 56px; height: 56px; }
  .ec-lp .flow-icon-wrap img { width: 36px; height: 36px; }
  .ec-lp .flow-step-title { font-size: 12px; min-height: 34px; }
  .ec-lp .flow-step-body { font-size: 9px; }
  .ec-lp .flow-pill { font-size: 10px; padding: 5px 8px; }
  .ec-lp .flow-num-circle { width: 32px; height: 32px; font-size: 12px; }
  .ec-lp .flow-step-tag { font-size: 9px; }
  .ec-lp .flow-cta-panel { padding: 16px 12px; border-radius: 16px; }
  .ec-lp .flow-cta-text { font-size: 16px; }
  .ec-lp .flow-cta-bullet { font-size: 10px; }
  .ec-lp .flow-line-btn img { height: 44px; }
}
